read.c (363e065c02b1273364d5356711a83e7f548fc0c8) read.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b)
1/*
2 * linux/fs/nfs/read.c
3 *
4 * Block I/O for NFS
5 *
6 * Partial copy of Linus' read cache modifications to fs/nfs/file.c
7 * modified for async RPC by okir@monad.swb.de
8 *

--- 723 unchanged lines hidden (view full) ---

732 return -ENOMEM;
733
734 return 0;
735}
736
737void nfs_destroy_readpagecache(void)
738{
739 mempool_destroy(nfs_rdata_mempool);
1/*
2 * linux/fs/nfs/read.c
3 *
4 * Block I/O for NFS
5 *
6 * Partial copy of Linus' read cache modifications to fs/nfs/file.c
7 * modified for async RPC by okir@monad.swb.de
8 *

--- 723 unchanged lines hidden (view full) ---

732 return -ENOMEM;
733
734 return 0;
735}
736
737void nfs_destroy_readpagecache(void)
738{
739 mempool_destroy(nfs_rdata_mempool);
740 if (kmem_cache_destroy(nfs_rdata_cachep))
741 printk(KERN_INFO "nfs_read_data: not all structures were freed\n");
740 kmem_cache_destroy(nfs_rdata_cachep);
742}
741}