super.c (f8314dc60ccba7e41f425048c4160dc7f63377d5) | super.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b) |
---|---|
1/* 2 * linux/fs/hpfs/super.c 3 * 4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999 5 * 6 * mounting, unmounting, error handling 7 */ 8 --- 189 unchanged lines hidden (view full) --- 198 init_once, NULL); 199 if (hpfs_inode_cachep == NULL) 200 return -ENOMEM; 201 return 0; 202} 203 204static void destroy_inodecache(void) 205{ | 1/* 2 * linux/fs/hpfs/super.c 3 * 4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999 5 * 6 * mounting, unmounting, error handling 7 */ 8 --- 189 unchanged lines hidden (view full) --- 198 init_once, NULL); 199 if (hpfs_inode_cachep == NULL) 200 return -ENOMEM; 201 return 0; 202} 203 204static void destroy_inodecache(void) 205{ |
206 if (kmem_cache_destroy(hpfs_inode_cachep)) 207 printk(KERN_INFO "hpfs_inode_cache: not all structures were freed\n"); | 206 kmem_cache_destroy(hpfs_inode_cachep); |
208} 209 210/* 211 * A tiny parser for option strings, stolen from dosfs. 212 * Stolen again from read-only hpfs. 213 * And updated for table-driven option parsing. 214 */ 215 --- 489 unchanged lines hidden --- | 207} 208 209/* 210 * A tiny parser for option strings, stolen from dosfs. 211 * Stolen again from read-only hpfs. 212 * And updated for table-driven option parsing. 213 */ 214 --- 489 unchanged lines hidden --- |