2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License v.2.
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <asm/semaphore.h>
20 #include "ops_fstype.h"
24 * init_gfs2_fs - Register GFS2 as a filesystem
26 * Returns: 0 on success, error code on failure
29 static int __init init_gfs2_fs(void)
35 error = gfs2_sys_init();
41 gfs2_glock_cachep = kmem_cache_create("gfs2_glock",
42 sizeof(struct gfs2_glock),
44 if (!gfs2_glock_cachep)
47 gfs2_inode_cachep = kmem_cache_create("gfs2_inode",
48 sizeof(struct gfs2_inode),
50 if (!gfs2_inode_cachep)
53 gfs2_bufdata_cachep = kmem_cache_create("gfs2_bufdata",
54 sizeof(struct gfs2_bufdata),
56 if (!gfs2_bufdata_cachep)
59 error = register_filesystem(&gfs2_fs_type);
63 printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__);
68 if (gfs2_bufdata_cachep)
69 kmem_cache_destroy(gfs2_bufdata_cachep);
71 if (gfs2_inode_cachep)
72 kmem_cache_destroy(gfs2_inode_cachep);
74 if (gfs2_glock_cachep)
75 kmem_cache_destroy(gfs2_glock_cachep);
82 * exit_gfs2_fs - Unregister the file system
86 static void __exit exit_gfs2_fs(void)
88 unregister_filesystem(&gfs2_fs_type);
90 kmem_cache_destroy(gfs2_bufdata_cachep);
91 kmem_cache_destroy(gfs2_inode_cachep);
92 kmem_cache_destroy(gfs2_glock_cachep);
97 MODULE_DESCRIPTION("Global File System");
98 MODULE_AUTHOR("Red Hat, Inc.");
99 MODULE_LICENSE("GPL");
101 module_init(init_gfs2_fs);
102 module_exit(exit_gfs2_fs);