Whamcloud - gitweb
merge b_devel into HEAD, which will become 0.7.3
[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/random.h>
28 #include <linux/version.h>
29 #include <linux/lustre_lite.h>
30 #include <linux/lustre_ha.h>
31 #include <linux/lustre_dlm.h>
32 #include <linux/init.h>
33 #include <linux/fs.h>
34 #include <linux/lprocfs_status.h>
35 #include "llite_internal.h"
36
37 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
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 /* exported operations */
53 struct super_operations ll_super_operations =
54 {
55         read_inode2: ll_read_inode2,
56         clear_inode: ll_clear_inode,
57         //        delete_inode: ll_delete_inode,
58         put_super: ll_put_super,
59         statfs: ll_statfs,
60         umount_begin: ll_umount_begin
61 };
62
63 static struct file_system_type lustre_lite_fs_type = {
64         name:           "lustre_lite",
65         fs_flags:       0,
66         read_super:     ll_read_super,
67         owner:          THIS_MODULE,
68 };
69
70 static int __init init_lustre_lite(void)
71 {
72         printk(KERN_INFO "Lustre Lite Client File System; "
73                "info@clusterfs.com\n");
74         ll_file_data_slab = kmem_cache_create("ll_file_data",
75                                               sizeof(struct ll_file_data), 0,
76                                               SLAB_HWCACHE_ALIGN, NULL, NULL);
77         if (ll_file_data_slab == NULL)
78                 return -ENOMEM;
79
80         proc_lustre_fs_root = proc_lustre_root ? proc_mkdir("llite", proc_lustre_root) : NULL;
81
82         return register_filesystem(&lustre_lite_fs_type);
83 }
84
85 static void __exit exit_lustre_lite(void)
86 {
87         unregister_filesystem(&lustre_lite_fs_type);
88         kmem_cache_destroy(ll_file_data_slab);
89
90         if (proc_lustre_fs_root) {
91                 lprocfs_remove(proc_lustre_fs_root);
92                 proc_lustre_fs_root = NULL;
93         }
94 }
95
96 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
97 MODULE_DESCRIPTION("Lustre Lite Client File System");
98 MODULE_LICENSE("GPL");
99
100 module_init(init_lustre_lite);
101 module_exit(exit_lustre_lite);
102 #endif