Whamcloud - gitweb
LU-4429 llite: fix open lock matching in ll_md_blocking_ast()
[fs/lustre-release.git] / lustre / llite / super25.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
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 struct kmem_cache *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, __GFP_IO);
57         if (lli == NULL)
58                 return NULL;
59
60         inode_init_once(&lli->lli_vfs_inode);
61         return &lli->lli_vfs_inode;
62 }
63
64 #ifdef HAVE_INODE_I_RCU
65 static void ll_inode_destroy_callback(struct rcu_head *head)
66 {
67         struct inode *inode = container_of(head, struct inode, i_rcu);
68         struct ll_inode_info *ptr = ll_i2info(inode);
69         OBD_SLAB_FREE_PTR(ptr, ll_inode_cachep);
70 }
71
72 static void ll_destroy_inode(struct inode *inode)
73 {
74         call_rcu(&inode->i_rcu, ll_inode_destroy_callback);
75 }
76 #else
77 static void ll_destroy_inode(struct inode *inode)
78 {
79         struct ll_inode_info *ptr = ll_i2info(inode);
80         OBD_SLAB_FREE_PTR(ptr, ll_inode_cachep);
81 }
82 #endif
83
84 int ll_init_inodecache(void)
85 {
86         ll_inode_cachep = kmem_cache_create("lustre_inode_cache",
87                                             sizeof(struct ll_inode_info),
88                                             0, SLAB_HWCACHE_ALIGN, NULL);
89         if (ll_inode_cachep == NULL)
90                 return -ENOMEM;
91         return 0;
92 }
93
94 void ll_destroy_inodecache(void)
95 {
96         kmem_cache_destroy(ll_inode_cachep);
97 }
98
99 /* exported operations */
100 struct super_operations lustre_super_operations =
101 {
102         .alloc_inode   = ll_alloc_inode,
103         .destroy_inode = ll_destroy_inode,
104 #ifdef HAVE_SBOPS_EVICT_INODE
105         .evict_inode   = ll_delete_inode,
106 #else
107         .clear_inode   = ll_clear_inode,
108         .delete_inode  = ll_delete_inode,
109 #endif
110         .put_super     = ll_put_super,
111         .statfs        = ll_statfs,
112         .umount_begin  = ll_umount_begin,
113         .remount_fs    = ll_remount_fs,
114         .show_options  = ll_show_options,
115 };
116
117
118 void lustre_register_client_process_config(int (*cpc)(struct lustre_cfg *lcfg));
119
120 int vvp_global_init(void);
121 void vvp_global_fini(void);
122
123 static int __init init_lustre_lite(void)
124 {
125         int i, rc, seed[2];
126         struct timeval tv;
127         lnet_process_id_t lnet_id;
128
129         CLASSERT(sizeof(LUSTRE_VOLATILE_HDR) == LUSTRE_VOLATILE_HDR_LEN + 1);
130
131         /* print an address of _any_ initialized kernel symbol from this
132          * module, to allow debugging with gdb that doesn't support data
133          * symbols from modules.*/
134         CDEBUG(D_INFO, "Lustre client module (%p).\n",
135                &lustre_super_operations);
136
137         rc = ll_init_inodecache();
138         if (rc)
139                 return -ENOMEM;
140         ll_file_data_slab = kmem_cache_create("ll_file_data",
141                                                  sizeof(struct ll_file_data), 0,
142                                                  SLAB_HWCACHE_ALIGN, NULL);
143         if (ll_file_data_slab == NULL) {
144                 ll_destroy_inodecache();
145                 return -ENOMEM;
146         }
147
148         ll_remote_perm_cachep = kmem_cache_create("ll_remote_perm_cache",
149                                                   sizeof(struct ll_remote_perm),
150                                                   0, 0, NULL);
151         if (ll_remote_perm_cachep == NULL) {
152                 kmem_cache_destroy(ll_file_data_slab);
153                 ll_file_data_slab = NULL;
154                 ll_destroy_inodecache();
155                 return -ENOMEM;
156         }
157
158         ll_rmtperm_hash_cachep = kmem_cache_create("ll_rmtperm_hash_cache",
159                                                    REMOTE_PERM_HASHSIZE *
160                                                    sizeof(cfs_list_t),
161                                                    0, 0, NULL);
162         if (ll_rmtperm_hash_cachep == NULL) {
163                 kmem_cache_destroy(ll_remote_perm_cachep);
164                 ll_remote_perm_cachep = NULL;
165                 kmem_cache_destroy(ll_file_data_slab);
166                 ll_file_data_slab = NULL;
167                 ll_destroy_inodecache();
168                 return -ENOMEM;
169         }
170
171         proc_lustre_fs_root = proc_lustre_root ?
172                               lprocfs_register("llite", proc_lustre_root, NULL, NULL) : NULL;
173
174         lustre_register_client_fill_super(ll_fill_super);
175         lustre_register_kill_super_cb(ll_kill_super);
176
177         lustre_register_client_process_config(ll_process_config);
178
179         cfs_get_random_bytes(seed, sizeof(seed));
180
181         /* Nodes with small feet have little entropy
182          * the NID for this node gives the most entropy in the low bits */
183         for (i=0; ; i++) {
184                 if (LNetGetId(i, &lnet_id) == -ENOENT) {
185                         break;
186                 }
187                 if (LNET_NETTYP(LNET_NIDNET(lnet_id.nid)) != LOLND) {
188                         seed[0] ^= LNET_NIDADDR(lnet_id.nid);
189                 }
190         }
191
192         do_gettimeofday(&tv);
193         cfs_srand(tv.tv_sec ^ seed[0], tv.tv_usec ^ seed[1]);
194
195         init_timer(&ll_capa_timer);
196         ll_capa_timer.function = ll_capa_timer_callback;
197         rc = ll_capa_thread_start();
198         /*
199          * XXX normal cleanup is needed here.
200          */
201         if (rc == 0)
202                 rc = vvp_global_init();
203
204         if (rc == 0)
205                 rc = ll_xattr_init();
206
207         return rc;
208 }
209
210 static void __exit exit_lustre_lite(void)
211 {
212         ll_xattr_fini();
213         vvp_global_fini();
214         del_timer(&ll_capa_timer);
215         ll_capa_thread_stop();
216         LASSERTF(capa_count[CAPA_SITE_CLIENT] == 0,
217                  "client remaining capa count %d\n",
218                  capa_count[CAPA_SITE_CLIENT]);
219
220         lustre_register_client_fill_super(NULL);
221         lustre_register_kill_super_cb(NULL);
222
223         lustre_register_client_process_config(NULL);
224
225         ll_destroy_inodecache();
226
227         kmem_cache_destroy(ll_rmtperm_hash_cachep);
228         ll_rmtperm_hash_cachep = NULL;
229
230         kmem_cache_destroy(ll_remote_perm_cachep);
231         ll_remote_perm_cachep = NULL;
232
233         kmem_cache_destroy(ll_file_data_slab);
234         if (proc_lustre_fs_root)
235                 lprocfs_remove(&proc_lustre_fs_root);
236 }
237
238 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
239 MODULE_DESCRIPTION("Lustre Lite Client File System");
240 MODULE_LICENSE("GPL");
241
242 module_init(init_lustre_lite);
243 module_exit(exit_lustre_lite);