Whamcloud - gitweb
landing b_cmobd_merge on HEAD
[fs/lustre-release.git] / lustre / llite / super.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Lustre Light Super operations
5  *
6  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #define DEBUG_SUBSYSTEM S_LLITE
25
26 #include <linux/module.h>
27 #include <linux/types.h>
28 #include <linux/random.h>
29 #include <linux/version.h>
30 #include <linux/lustre_lite.h>
31 #include <linux/lustre_ha.h>
32 #include <linux/lustre_dlm.h>
33 #include <linux/init.h>
34 #include <linux/fs.h>
35 #include <linux/lprocfs_status.h>
36 #include "llite_internal.h"
37
38 extern struct address_space_operations ll_aops;
39 extern struct address_space_operations ll_dir_aops;
40
41 static struct super_block *ll_read_super(struct super_block *sb,
42                                          void *data, int silent)
43 {
44         int err;
45         ENTRY;
46         err = ll_fill_super(sb, data, silent);
47         if (err)
48                 RETURN(NULL);
49         RETURN(sb);
50 }
51
52 static struct super_block *lustre_read_super(struct super_block *sb,
53                                          void *data, int silent)
54 {
55         int err;
56         ENTRY;
57         err = lustre_fill_super(sb, data, silent);
58         if (err)
59                 RETURN(NULL);
60         RETURN(sb);
61 }
62
63 static struct file_system_type lustre_lite_fs_type = {
64         .owner          = THIS_MODULE,
65         .name           = "lustre_lite",
66         .fs_flags       = FS_NFSEXP_FSID,
67         .read_super     = ll_read_super,
68 };
69
70 /* exported operations */
71 struct super_operations lustre_super_operations =
72 {
73         .read_inode2    = ll_read_inode2,
74         .clear_inode    = ll_clear_inode,
75 //        .delete_inode   = ll_delete_inode,
76         .put_super      = lustre_put_super,
77         .statfs         = ll_statfs,
78         .umount_begin   = ll_umount_begin,
79         .fh_to_dentry   = ll_fh_to_dentry,
80         .dentry_to_fh   = ll_dentry_to_fh
81 };
82
83 static struct file_system_type lustre_fs_type = {
84         .owner          = THIS_MODULE,
85         .name           = "lustre",
86         .fs_flags       = FS_NFSEXP_FSID,
87         .read_super     = lustre_read_super,
88 };
89
90 static int __init init_lustre_lite(void)
91 {
92         int rc;
93
94         printk(KERN_INFO "Lustre: Lustre Lite Client File System; "
95                "info@clusterfs.com\n");
96         ll_file_data_slab = kmem_cache_create("ll_file_data",
97                                               sizeof(struct ll_file_data), 0,
98                                               SLAB_HWCACHE_ALIGN, NULL, NULL);
99         if (ll_file_data_slab == NULL)
100                 return -ENOMEM;
101
102         proc_lustre_fs_root = proc_lustre_root ? proc_mkdir("llite", proc_lustre_root) : NULL;
103
104         rc = register_filesystem(&lustre_lite_fs_type);
105         if (rc == 0)
106                 rc = register_filesystem(&lustre_fs_type);
107         if (rc)
108                 unregister_filesystem(&lustre_lite_fs_type);
109         return rc;
110 }
111
112 static void __exit exit_lustre_lite(void)
113 {
114         unregister_filesystem(&lustre_lite_fs_type);
115         unregister_filesystem(&lustre_fs_type);
116
117         kmem_cache_destroy(ll_file_data_slab);
118
119         if (proc_lustre_fs_root) {
120                 lprocfs_remove(proc_lustre_fs_root);
121                 proc_lustre_fs_root = NULL;
122         }
123 }
124
125 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
126 MODULE_DESCRIPTION("Lustre Lite Client File System");
127 MODULE_LICENSE("GPL");
128
129 module_init(init_lustre_lite);
130 module_exit(exit_lustre_lite);