inode.c (62ed948cb1405fe95d61d8c6445c102e0c9da0a6) | inode.c (266bee88699ddbde42ab303bbc426a105cc49809) |
---|---|
1/* 2 * linux/fs/nfs/inode.c 3 * 4 * Copyright (C) 1992 Rick Sladkey 5 * 6 * nfs inode and superblock handling functions 7 * 8 * Modularised by Alan Cox <Alan.Cox@linux.org>, while hacking some --- 1118 unchanged lines hidden (view full) --- 1127 SLAB_MEM_SPREAD), 1128 init_once, NULL); 1129 if (nfs_inode_cachep == NULL) 1130 return -ENOMEM; 1131 1132 return 0; 1133} 1134 | 1/* 2 * linux/fs/nfs/inode.c 3 * 4 * Copyright (C) 1992 Rick Sladkey 5 * 6 * nfs inode and superblock handling functions 7 * 8 * Modularised by Alan Cox <Alan.Cox@linux.org>, while hacking some --- 1118 unchanged lines hidden (view full) --- 1127 SLAB_MEM_SPREAD), 1128 init_once, NULL); 1129 if (nfs_inode_cachep == NULL) 1130 return -ENOMEM; 1131 1132 return 0; 1133} 1134 |
1135static void __exit nfs_destroy_inodecache(void) | 1135static void nfs_destroy_inodecache(void) |
1136{ 1137 if (kmem_cache_destroy(nfs_inode_cachep)) 1138 printk(KERN_INFO "nfs_inode_cache: not all structures were freed\n"); 1139} 1140 1141/* 1142 * Initialize NFS 1143 */ --- 66 unchanged lines hidden --- | 1136{ 1137 if (kmem_cache_destroy(nfs_inode_cachep)) 1138 printk(KERN_INFO "nfs_inode_cache: not all structures were freed\n"); 1139} 1140 1141/* 1142 * Initialize NFS 1143 */ --- 66 unchanged lines hidden --- |