blob: bb2cc303ac2921f2fc16675dbdb50e8abadc3f65 [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
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
14#include <linux/module.h>
15#include <linux/init.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050016#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020017#include <linux/lm_interface.h>
Steven Whitehouseec45d9f2006-08-30 10:36:52 -040018#include <asm/atomic.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#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"
Steven Whitehouse85d1da62006-09-07 14:40:21 -040025#include "glock.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070027static void gfs2_init_inode_once(void *foo)
Steven Whitehouse320dd102006-05-18 16:25:27 -040028{
29 struct gfs2_inode *ip = foo;
Christoph Lametera35afb82007-05-16 22:10:57 -070030
31 inode_init_once(&ip->i_inode);
Christoph Lametera35afb82007-05-16 22:10:57 -070032 init_rwsem(&ip->i_rw_mutex);
Steven Whitehouse6dbd8222008-01-10 15:18:55 +000033 ip->i_alloc = NULL;
Steven Whitehouse320dd102006-05-18 16:25:27 -040034}
35
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070036static void gfs2_init_glock_once(void *foo)
Steven Whitehouseec45d9f2006-08-30 10:36:52 -040037{
38 struct gfs2_glock *gl = foo;
Christoph Lametera35afb82007-05-16 22:10:57 -070039
40 INIT_HLIST_NODE(&gl->gl_list);
41 spin_lock_init(&gl->gl_spin);
42 INIT_LIST_HEAD(&gl->gl_holders);
Christoph Lametera35afb82007-05-16 22:10:57 -070043 gl->gl_lvb = NULL;
44 atomic_set(&gl->gl_lvb_count, 0);
45 INIT_LIST_HEAD(&gl->gl_reclaim);
46 INIT_LIST_HEAD(&gl->gl_ail_list);
47 atomic_set(&gl->gl_ail_count, 0);
Steven Whitehouseec45d9f2006-08-30 10:36:52 -040048}
49
David Teiglandb3b94fa2006-01-16 16:50:04 +000050/**
51 * init_gfs2_fs - Register GFS2 as a filesystem
52 *
53 * Returns: 0 on success, error code on failure
54 */
55
56static int __init init_gfs2_fs(void)
57{
58 int error;
59
David Teiglandb3b94fa2006-01-16 16:50:04 +000060 error = gfs2_sys_init();
61 if (error)
62 return error;
63
Steven Whitehouse85d1da62006-09-07 14:40:21 -040064 error = gfs2_glock_init();
65 if (error)
66 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +000067
Steven Whitehouse85d1da62006-09-07 14:40:21 -040068 error = -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +000069 gfs2_glock_cachep = kmem_cache_create("gfs2_glock",
70 sizeof(struct gfs2_glock),
Steven Whitehouse907b9bc2006-09-25 09:26:04 -040071 0, 0,
Paul Mundt20c2df82007-07-20 10:11:58 +090072 gfs2_init_glock_once);
David Teiglandb3b94fa2006-01-16 16:50:04 +000073 if (!gfs2_glock_cachep)
74 goto fail;
75
76 gfs2_inode_cachep = kmem_cache_create("gfs2_inode",
77 sizeof(struct gfs2_inode),
Alexey Dobriyaneb1dc332006-10-28 03:03:48 +040078 0, SLAB_RECLAIM_ACCOUNT|
79 SLAB_MEM_SPREAD,
Paul Mundt20c2df82007-07-20 10:11:58 +090080 gfs2_init_inode_once);
David Teiglandb3b94fa2006-01-16 16:50:04 +000081 if (!gfs2_inode_cachep)
82 goto fail;
83
84 gfs2_bufdata_cachep = kmem_cache_create("gfs2_bufdata",
85 sizeof(struct gfs2_bufdata),
Paul Mundt20c2df82007-07-20 10:11:58 +090086 0, 0, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087 if (!gfs2_bufdata_cachep)
88 goto fail;
89
Bob Peterson6bdd9be2008-01-28 17:20:26 -060090 gfs2_rgrpd_cachep = kmem_cache_create("gfs2_rgrpd",
91 sizeof(struct gfs2_rgrpd),
92 0, 0, NULL);
93 if (!gfs2_rgrpd_cachep)
94 goto fail;
95
David Teiglandb3b94fa2006-01-16 16:50:04 +000096 error = register_filesystem(&gfs2_fs_type);
97 if (error)
98 goto fail;
99
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500100 error = register_filesystem(&gfs2meta_fs_type);
101 if (error)
102 goto fail_unregister;
103
Robert Peterson7c52b162007-03-16 10:26:37 +0000104 gfs2_register_debugfs();
105
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106 printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__);
107
108 return 0;
109
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500110fail_unregister:
111 unregister_filesystem(&gfs2_fs_type);
112fail:
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +0100113 gfs2_glock_exit();
114
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600115 if (gfs2_rgrpd_cachep)
116 kmem_cache_destroy(gfs2_rgrpd_cachep);
117
David Teiglandb3b94fa2006-01-16 16:50:04 +0000118 if (gfs2_bufdata_cachep)
119 kmem_cache_destroy(gfs2_bufdata_cachep);
120
121 if (gfs2_inode_cachep)
122 kmem_cache_destroy(gfs2_inode_cachep);
123
124 if (gfs2_glock_cachep)
125 kmem_cache_destroy(gfs2_glock_cachep);
126
127 gfs2_sys_uninit();
128 return error;
129}
130
131/**
132 * exit_gfs2_fs - Unregister the file system
133 *
134 */
135
136static void __exit exit_gfs2_fs(void)
137{
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +0100138 gfs2_glock_exit();
Robert Peterson7c52b162007-03-16 10:26:37 +0000139 gfs2_unregister_debugfs();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 unregister_filesystem(&gfs2_fs_type);
Steven Whitehouse419c93e2006-03-02 16:33:41 -0500141 unregister_filesystem(&gfs2meta_fs_type);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000142
Bob Peterson6bdd9be2008-01-28 17:20:26 -0600143 kmem_cache_destroy(gfs2_rgrpd_cachep);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000144 kmem_cache_destroy(gfs2_bufdata_cachep);
145 kmem_cache_destroy(gfs2_inode_cachep);
146 kmem_cache_destroy(gfs2_glock_cachep);
147
148 gfs2_sys_uninit();
149}
150
151MODULE_DESCRIPTION("Global File System");
152MODULE_AUTHOR("Red Hat, Inc.");
153MODULE_LICENSE("GPL");
154
155module_init(init_gfs2_fs);
156module_exit(exit_gfs2_fs);
157