super.c (f8314dc60ccba7e41f425048c4160dc7f63377d5) super.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b)
1/*
2 * linux/fs/hfs/super.c
3 *
4 * Copyright (C) 1995-1997 Paul H. Hargrove
5 * (C) 2003 Ardis Technologies <roman@ardistech.com>
6 * This file may be distributed under the terms of the GNU General Public License.
7 *
8 * This file contains hfs_read_super(), some of the super_ops and

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

449 if (err)
450 kmem_cache_destroy(hfs_inode_cachep);
451 return err;
452}
453
454static void __exit exit_hfs_fs(void)
455{
456 unregister_filesystem(&hfs_fs_type);
1/*
2 * linux/fs/hfs/super.c
3 *
4 * Copyright (C) 1995-1997 Paul H. Hargrove
5 * (C) 2003 Ardis Technologies <roman@ardistech.com>
6 * This file may be distributed under the terms of the GNU General Public License.
7 *
8 * This file contains hfs_read_super(), some of the super_ops and

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

449 if (err)
450 kmem_cache_destroy(hfs_inode_cachep);
451 return err;
452}
453
454static void __exit exit_hfs_fs(void)
455{
456 unregister_filesystem(&hfs_fs_type);
457 if (kmem_cache_destroy(hfs_inode_cachep))
458 printk(KERN_ERR "hfs_inode_cache: not all structures were freed\n");
457 kmem_cache_destroy(hfs_inode_cachep);
459}
460
461module_init(init_hfs_fs)
462module_exit(exit_hfs_fs)
458}
459
460module_init(init_hfs_fs)
461module_exit(exit_hfs_fs)