blob: 9ce56b5c78039a2b510f29d8f5566caf7b36d385 [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
26/**
27 * init_gfs2_fs - Register GFS2 as a filesystem
28 *
29 * Returns: 0 on success, error code on failure
30 */
31
32static int __init init_gfs2_fs(void)
33{
34 int error;
35
36 gfs2_init_lmh();
37
38 error = gfs2_sys_init();
39 if (error)
40 return error;
41
42 error = -ENOMEM;
43
44 gfs2_glock_cachep = kmem_cache_create("gfs2_glock",
45 sizeof(struct gfs2_glock),
46 0, 0, NULL, NULL);
47 if (!gfs2_glock_cachep)
48 goto fail;
49
50 gfs2_inode_cachep = kmem_cache_create("gfs2_inode",
51 sizeof(struct gfs2_inode),
52 0, 0, NULL, NULL);
53 if (!gfs2_inode_cachep)
54 goto fail;
55
56 gfs2_bufdata_cachep = kmem_cache_create("gfs2_bufdata",
57 sizeof(struct gfs2_bufdata),
58 0, 0, NULL, NULL);
59 if (!gfs2_bufdata_cachep)
60 goto fail;
61
62 error = register_filesystem(&gfs2_fs_type);
63 if (error)
64 goto fail;
65
Steven Whitehouse419c93e2006-03-02 16:33:41 -050066 error = register_filesystem(&gfs2meta_fs_type);
67 if (error)
68 goto fail_unregister;
69
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 printk("GFS2 (built %s %s) installed\n", __DATE__, __TIME__);
71
72 return 0;
73
Steven Whitehouse419c93e2006-03-02 16:33:41 -050074fail_unregister:
75 unregister_filesystem(&gfs2_fs_type);
76fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +000077 if (gfs2_bufdata_cachep)
78 kmem_cache_destroy(gfs2_bufdata_cachep);
79
80 if (gfs2_inode_cachep)
81 kmem_cache_destroy(gfs2_inode_cachep);
82
83 if (gfs2_glock_cachep)
84 kmem_cache_destroy(gfs2_glock_cachep);
85
86 gfs2_sys_uninit();
87 return error;
88}
89
90/**
91 * exit_gfs2_fs - Unregister the file system
92 *
93 */
94
95static void __exit exit_gfs2_fs(void)
96{
97 unregister_filesystem(&gfs2_fs_type);
Steven Whitehouse419c93e2006-03-02 16:33:41 -050098 unregister_filesystem(&gfs2meta_fs_type);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099
100 kmem_cache_destroy(gfs2_bufdata_cachep);
101 kmem_cache_destroy(gfs2_inode_cachep);
102 kmem_cache_destroy(gfs2_glock_cachep);
103
104 gfs2_sys_uninit();
105}
106
107MODULE_DESCRIPTION("Global File System");
108MODULE_AUTHOR("Red Hat, Inc.");
109MODULE_LICENSE("GPL");
110
111module_init(init_gfs2_fs);
112module_exit(exit_gfs2_fs);
113