Whamcloud - gitweb
b=18016 fix index type in ll_read_ahead_page
[fs/lustre-release.git] / lustre / llite / super25.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_LLITE
38
39 #include <linux/module.h>
40 #include <linux/types.h>
41 #include <linux/version.h>
42 #include <lustre_lite.h>
43 #include <lustre_ha.h>
44 #include <lustre_dlm.h>
45 #include <linux/init.h>
46 #include <linux/fs.h>
47 #include <lprocfs_status.h>
48 #include "llite_internal.h"
49
50 static cfs_mem_cache_t *ll_inode_cachep;
51
52 static struct inode *ll_alloc_inode(struct super_block *sb)
53 {
54         struct ll_inode_info *lli;
55         ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_ALLOC_INODE, 1);
56         OBD_SLAB_ALLOC_PTR_GFP(lli, ll_inode_cachep, CFS_ALLOC_IO);
57         if (lli == NULL)
58                 return NULL;
59
60         inode_init_once(&lli->lli_vfs_inode);
61         ll_lli_init(lli);
62
63         return &lli->lli_vfs_inode;
64 }
65
66 static void ll_destroy_inode(struct inode *inode)
67 {
68         struct ll_inode_info *ptr = ll_i2info(inode);
69         OBD_SLAB_FREE_PTR(ptr, ll_inode_cachep);
70 }
71
72 int ll_init_inodecache(void)
73 {
74         ll_inode_cachep = cfs_mem_cache_create("lustre_inode_cache",
75                                                sizeof(struct ll_inode_info),
76                                                0, CFS_SLAB_HWCACHE_ALIGN);
77         if (ll_inode_cachep == NULL)
78                 return -ENOMEM;
79         return 0;
80 }
81
82 void ll_destroy_inodecache(void)
83 {
84         int rc;
85
86         rc = cfs_mem_cache_destroy(ll_inode_cachep);
87         LASSERTF(rc == 0, "ll_inode_cache: not all structures were freed\n");
88 }
89
90 /* exported operations */
91 struct super_operations lustre_super_operations =
92 {
93         .alloc_inode   = ll_alloc_inode,
94         .destroy_inode = ll_destroy_inode,
95         .clear_inode   = ll_clear_inode,
96         .delete_inode  = ll_delete_inode,
97         .put_super     = ll_put_super,
98         .statfs        = ll_statfs,
99         .umount_begin  = ll_umount_begin,
100         .remount_fs    = ll_remount_fs,
101         .show_options  = ll_show_options,
102 };
103
104
105 void lustre_register_client_process_config(int (*cpc)(struct lustre_cfg *lcfg));
106
107 int vvp_global_init(void);
108 void vvp_global_fini(void);
109
110 static int __init init_lustre_lite(void)
111 {
112         int i, rc, seed[2];
113         struct timeval tv;
114         lnet_process_id_t lnet_id;
115
116         /* print an address of _any_ initialized kernel symbol from this
117          * module, to allow debugging with gdb that doesn't support data
118          * symbols from modules.*/
119         CDEBUG(D_CONSOLE, "Lustre client module (%p).\n",
120                &lustre_super_operations);
121
122         rc = ll_init_inodecache();
123         if (rc)
124                 return -ENOMEM;
125         ll_file_data_slab = cfs_mem_cache_create("ll_file_data",
126                                                  sizeof(struct ll_file_data), 0,
127                                                  CFS_SLAB_HWCACHE_ALIGN);
128         if (ll_file_data_slab == NULL) {
129                 ll_destroy_inodecache();
130                 return -ENOMEM;
131         }
132
133         ll_remote_perm_cachep = cfs_mem_cache_create("ll_remote_perm_cache",
134                                                   sizeof(struct ll_remote_perm),
135                                                       0, 0);
136         if (ll_remote_perm_cachep == NULL) {
137                 cfs_mem_cache_destroy(ll_file_data_slab);
138                 ll_file_data_slab = NULL;
139                 ll_destroy_inodecache();
140                 return -ENOMEM;
141         }
142
143         ll_rmtperm_hash_cachep = cfs_mem_cache_create("ll_rmtperm_hash_cache",
144                                                    REMOTE_PERM_HASHSIZE *
145                                                    sizeof(cfs_list_t),
146                                                    0, 0);
147         if (ll_rmtperm_hash_cachep == NULL) {
148                 cfs_mem_cache_destroy(ll_remote_perm_cachep);
149                 ll_remote_perm_cachep = NULL;
150                 cfs_mem_cache_destroy(ll_file_data_slab);
151                 ll_file_data_slab = NULL;
152                 ll_destroy_inodecache();
153                 return -ENOMEM;
154         }
155
156         proc_lustre_fs_root = proc_lustre_root ?
157                               lprocfs_register("llite", proc_lustre_root, NULL, NULL) : NULL;
158
159         lustre_register_client_fill_super(ll_fill_super);
160         lustre_register_kill_super_cb(ll_kill_super);
161
162         lustre_register_client_process_config(ll_process_config);
163
164         cfs_get_random_bytes(seed, sizeof(seed));
165
166         /* Nodes with small feet have little entropy
167          * the NID for this node gives the most entropy in the low bits */
168         for (i=0; ; i++) {
169                 if (LNetGetId(i, &lnet_id) == -ENOENT) {
170                         break;
171                 }
172                 if (LNET_NETTYP(LNET_NIDNET(lnet_id.nid)) != LOLND) {
173                         seed[0] ^= LNET_NIDADDR(lnet_id.nid);
174                 }
175         }
176
177         cfs_gettimeofday(&tv);
178         cfs_srand(tv.tv_sec ^ seed[0], tv.tv_usec ^ seed[1]);
179
180         init_timer(&ll_capa_timer);
181         ll_capa_timer.function = ll_capa_timer_callback;
182         rc = ll_capa_thread_start();
183         /*
184          * XXX normal cleanup is needed here.
185          */
186         if (rc == 0)
187                 rc = vvp_global_init();
188
189         return rc;
190 }
191
192 static void __exit exit_lustre_lite(void)
193 {
194         int rc;
195
196         vvp_global_fini();
197         del_timer(&ll_capa_timer);
198         ll_capa_thread_stop();
199         LASSERTF(capa_count[CAPA_SITE_CLIENT] == 0,
200                  "client remaining capa count %d\n",
201                  capa_count[CAPA_SITE_CLIENT]);
202
203         lustre_register_client_fill_super(NULL);
204         lustre_register_kill_super_cb(NULL);
205
206         lustre_register_client_process_config(NULL);
207
208         ll_destroy_inodecache();
209
210         rc = cfs_mem_cache_destroy(ll_rmtperm_hash_cachep);
211         LASSERTF(rc == 0, "couldn't destroy ll_rmtperm_hash_cachep\n");
212         ll_rmtperm_hash_cachep = NULL;
213
214         rc = cfs_mem_cache_destroy(ll_remote_perm_cachep);
215         LASSERTF(rc == 0, "couldn't destroy ll_remote_perm_cachep\n");
216         ll_remote_perm_cachep = NULL;
217
218         rc = cfs_mem_cache_destroy(ll_file_data_slab);
219         LASSERTF(rc == 0, "couldn't destroy ll_file_data slab\n");
220         if (proc_lustre_fs_root)
221                 lprocfs_remove(&proc_lustre_fs_root);
222 }
223
224 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
225 MODULE_DESCRIPTION("Lustre Lite Client File System");
226 MODULE_LICENSE("GPL");
227
228 module_init(init_lustre_lite);
229 module_exit(exit_lustre_lite);