blob: b24d0b40d965c6ddcaba851d108f12bb2e88ff84 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
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.
8 */
9
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>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "lm_interface.h"
21#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "ops_fstype.h"
23#include "sys.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050024#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025
Steven Whitehouse320dd102006-05-18 16:25:27 -040026static void gfs2_init_inode_once(void *foo, kmem_cache_t *cachep, unsigned long flags)
27{
28 struct gfs2_inode *ip = foo;
29 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
30 SLAB_CTOR_CONSTRUCTOR) {
31 inode_init_once(&ip->i_inode);
32 atomic_set(&ip->i_count, 0);
33 ip->i_vnode = &ip->i_inode;
34 spin_lock_init(&ip->i_spin);
35 init_rwsem(&ip->i_rw_mutex);
36 memset(ip->i_cache, 0, sizeof(ip->i_cache));
37 }
38}
39
David Teiglandb3b94fa2006-01-16 16:50:04 +000040/**
41 * init_gfs2_fs - Register GFS2 as a filesystem
42 *
43 * Returns: 0 on success, error code on failure
44 */
45
46static int __init init_gfs2_fs(void)
47{
48 int error;
49
50 gfs2_init_lmh();
51
52 error = gfs2_sys_init();
53 if (error)
54 return error;
55
56 error = -ENOMEM;
57
58 gfs2_glock_cachep = kmem_cache_create("gfs2_glock",
59 sizeof(struct gfs2_glock),
60 0, 0, NULL, NULL);
61 if (!gfs2_glock_cachep)
62 goto fail;
63
64 gfs2_inode_cachep = kmem_cache_create("gfs2_inode",
65 sizeof(struct gfs2_inode),
Steven Whitehouse320dd102006-05-18 16:25:27 -040066 0, (SLAB_RECLAIM_ACCOUNT|
67 SLAB_PANIC|SLAB_MEM_SPREAD),
68 gfs2_init_inode_once, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000069 if (!gfs2_inode_cachep)
70 goto fail;
71
72 gfs2_bufdata_cachep = kmem_cache_create("gfs2_bufdata",
73 sizeof(struct gfs2_bufdata),
74 0, 0, NULL, NULL);
75 if (!gfs2_bufdata_cachep)
76 goto fail;
77
78 error = register_filesystem(&gfs2_fs_type);
79 if (error)
80 goto fail;
81
Steven Whitehouse419c93e2006-03-02 16:33:41 -050082 error = register_filesystem(&gfs2meta_fs_type);
83 if (error)
84 goto fail_unregister;
85
David Teiglandb3b94fa2006-01-16 16:50:04 +000086 printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__);
87
88 return 0;
89
Steven Whitehouse419c93e2006-03-02 16:33:41 -050090fail_unregister:
91 unregister_filesystem(&gfs2_fs_type);
92fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +000093 if (gfs2_bufdata_cachep)
94 kmem_cache_destroy(gfs2_bufdata_cachep);
95
96 if (gfs2_inode_cachep)
97 kmem_cache_destroy(gfs2_inode_cachep);
98
99 if (gfs2_glock_cachep)
100 kmem_cache_destroy(gfs2_glock_cachep);
101
102 gfs2_sys_uninit();
103 return error;
104}
105
106/**
107 * exit_gfs2_fs - Unregister the file system
108 *
109 */
110
111static void __exit exit_gfs2_fs(void)
112{
113 unregister_filesystem(&gfs2_fs_type);
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500114 unregister_filesystem(&gfs2meta_fs_type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000115
116 kmem_cache_destroy(gfs2_bufdata_cachep);
117 kmem_cache_destroy(gfs2_inode_cachep);
118 kmem_cache_destroy(gfs2_glock_cachep);
119
120 gfs2_sys_uninit();
121}
122
123MODULE_DESCRIPTION("Global File System");
124MODULE_AUTHOR("Red Hat, Inc.");
125MODULE_LICENSE("GPL");
126
127module_init(init_gfs2_fs);
128module_exit(exit_gfs2_fs);
129