super.c (05668381140309088443bf5dc53add4104610fbb) | super.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b) |
---|---|
1/* 2 * linux/fs/hfsplus/super.c 3 * 4 * Copyright (C) 2001 5 * Brad Boyer (flar@allandria.com) 6 * (C) 2003 Ardis Technologies <roman@ardistech.com> 7 * 8 */ --- 479 unchanged lines hidden (view full) --- 488 if (err) 489 kmem_cache_destroy(hfsplus_inode_cachep); 490 return err; 491} 492 493static void __exit exit_hfsplus_fs(void) 494{ 495 unregister_filesystem(&hfsplus_fs_type); | 1/* 2 * linux/fs/hfsplus/super.c 3 * 4 * Copyright (C) 2001 5 * Brad Boyer (flar@allandria.com) 6 * (C) 2003 Ardis Technologies <roman@ardistech.com> 7 * 8 */ --- 479 unchanged lines hidden (view full) --- 488 if (err) 489 kmem_cache_destroy(hfsplus_inode_cachep); 490 return err; 491} 492 493static void __exit exit_hfsplus_fs(void) 494{ 495 unregister_filesystem(&hfsplus_fs_type); |
496 if (kmem_cache_destroy(hfsplus_inode_cachep)) 497 printk(KERN_ERR "hfsplus_inode_cache: not all structures were freed\n"); | 496 kmem_cache_destroy(hfsplus_inode_cachep); |
498} 499 500module_init(init_hfsplus_fs) 501module_exit(exit_hfsplus_fs) | 497} 498 499module_init(init_hfsplus_fs) 500module_exit(exit_hfsplus_fs) |