static int __init init_unionfs_fs(void) { int err; printk("Registering unionfs " UNIONFS_VERSION "\n"); fist_set_debug_value(init_debug); #ifdef FIST_MALLOC_DEBUG atomic_set(&unionfs_malloc_counter, 0); atomic_set(&unionfs_mallocs_outstanding, 0); #endif /* FIST_MALLOC_DEBUG */ if ((err = init_filldir_cache())) goto out; if ((err = init_inode_cache())) goto out; if ((err = init_dentry_cache())) goto out; err = register_filesystem(&unionfs_fs_type); out: if (err) { destroy_filldir_cache(); destroy_inode_cache(); destroy_dentry_cache(); } return err; }
static void __exit exit_unionfs_fs(void) { destroy_filldir_cache(); destroy_inode_cache(); destroy_dentry_cache(); unregister_filesystem(&unionfs_fs_type); printk("Completed unionfs module unload.\n"); }
static void __exit exit_dumpfs(void) { destroy_inode_cache(); unregister_filesystem(&dumpfs_type); }