Whamcloud - gitweb
- allocation of new fids before sending open or create RPC, using allocated fid in...
[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/random.h>
36 #include <linux/cache_def.h>
37 #include <linux/lprocfs_status.h>
38 #include "llite_internal.h"
39 #include <lustre/lustre_user.h>
40
41 extern struct address_space_operations ll_aops;
42 extern struct address_space_operations ll_dir_aops;
43
44
45 /* exported operations */
46 struct super_operations lustre_super_operations =
47 {
48         .read_inode2    = ll_read_inode2,
49         .clear_inode    = ll_clear_inode,
50         .put_super      = ll_put_super,
51         .statfs         = ll_statfs,
52         .umount_begin   = ll_umount_begin,
53         .fh_to_dentry   = ll_fh_to_dentry,
54         .dentry_to_fh   = ll_dentry_to_fh,
55         .remount_fs     = ll_remount_fs,
56 };
57
58 static int __init init_lustre_lite(void)
59 {
60         int rc, seed[2];
61
62         printk(KERN_INFO "Lustre: Lustre Lite Client File System; "
63                "info@clusterfs.com\n");
64         ll_file_data_slab = kmem_cache_create("ll_file_data",
65                                               sizeof(struct ll_file_data), 0,
66                                               SLAB_HWCACHE_ALIGN, NULL, NULL);
67         if (ll_file_data_slab == NULL)
68                 return -ENOMEM;
69
70         if (proc_lustre_root)
71                 proc_lustre_fs_root = proc_mkdir("llite", proc_lustre_root);
72
73         ll_register_cache(&ll_cache_definition);
74
75         lustre_register_client_fill_super(ll_fill_super);
76
77         get_random_bytes(seed, sizeof(seed));
78         ll_srand(seed[0], seed[1]);
79
80         return rc;
81 }
82
83 static void __exit exit_lustre_lite(void)
84 {
85         lustre_register_client_fill_super(NULL);
86         
87         ll_unregister_cache(&ll_cache_definition);
88
89         LASSERTF(kmem_cache_destroy(ll_file_data_slab) == 0,
90                  "couldn't destroy ll_file_data slab\n");
91         if (ll_async_page_slab)
92                 LASSERTF(kmem_cache_destroy(ll_async_page_slab) == 0,
93                          "couldn't destroy ll_async_page slab\n");
94
95         if (proc_lustre_fs_root) {
96                 lprocfs_remove(proc_lustre_fs_root);
97                 proc_lustre_fs_root = NULL;
98         }
99 }
100
101 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
102 MODULE_DESCRIPTION("Lustre Lite Client File System");
103 MODULE_LICENSE("GPL");
104
105 module_init(init_lustre_lite);
106 module_exit(exit_lustre_lite);