Whamcloud - gitweb
LU-9859 libcfs: replace cfs_srand() calls with add_device_randomness().
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_LLITE
34
35 #include <linux/module.h>
36 #include <linux/types.h>
37 #include <linux/version.h>
38 #include <lustre_ha.h>
39 #include <lustre_dlm.h>
40 #include <linux/init.h>
41 #include <linux/fs.h>
42 #include <linux/random.h>
43 #include <lprocfs_status.h>
44 #include "llite_internal.h"
45 #include "vvp_internal.h"
46
47 static struct kmem_cache *ll_inode_cachep;
48
49 static struct inode *ll_alloc_inode(struct super_block *sb)
50 {
51         struct ll_inode_info *lli;
52         ll_stats_ops_tally(ll_s2sbi(sb), LPROC_LL_ALLOC_INODE, 1);
53         OBD_SLAB_ALLOC_PTR_GFP(lli, ll_inode_cachep, GFP_NOFS);
54         if (lli == NULL)
55                 return NULL;
56
57         inode_init_once(&lli->lli_vfs_inode);
58         return &lli->lli_vfs_inode;
59 }
60
61 #ifdef HAVE_INODE_I_RCU
62 static void ll_inode_destroy_callback(struct rcu_head *head)
63 {
64         struct inode *inode = container_of(head, struct inode, i_rcu);
65         struct ll_inode_info *ptr = ll_i2info(inode);
66         OBD_SLAB_FREE_PTR(ptr, ll_inode_cachep);
67 }
68
69 static void ll_destroy_inode(struct inode *inode)
70 {
71         call_rcu(&inode->i_rcu, ll_inode_destroy_callback);
72 }
73 #else
74 static void ll_destroy_inode(struct inode *inode)
75 {
76         struct ll_inode_info *ptr = ll_i2info(inode);
77         OBD_SLAB_FREE_PTR(ptr, ll_inode_cachep);
78 }
79 #endif
80
81 /* exported operations */
82 struct super_operations lustre_super_operations =
83 {
84         .alloc_inode   = ll_alloc_inode,
85         .destroy_inode = ll_destroy_inode,
86 #ifdef HAVE_SBOPS_EVICT_INODE
87         .evict_inode   = ll_delete_inode,
88 #else
89         .clear_inode   = ll_clear_inode,
90         .delete_inode  = ll_delete_inode,
91 #endif
92         .put_super     = ll_put_super,
93         .statfs        = ll_statfs,
94         .umount_begin  = ll_umount_begin,
95         .remount_fs    = ll_remount_fs,
96         .show_options  = ll_show_options,
97 };
98
99 static int __init lustre_init(void)
100 {
101         struct lnet_process_id lnet_id;
102         int i, rc;
103
104         CLASSERT(sizeof(LUSTRE_VOLATILE_HDR) == LUSTRE_VOLATILE_HDR_LEN + 1);
105
106         /* print an address of _any_ initialized kernel symbol from this
107          * module, to allow debugging with gdb that doesn't support data
108          * symbols from modules.*/
109         CDEBUG(D_INFO, "Lustre client module (%p).\n",
110                &lustre_super_operations);
111
112         ll_inode_cachep = kmem_cache_create("lustre_inode_cache",
113                                             sizeof(struct ll_inode_info),
114                                             0, SLAB_HWCACHE_ALIGN, NULL);
115         if (ll_inode_cachep == NULL)
116                 GOTO(out_cache, rc = -ENOMEM);
117
118         ll_file_data_slab = kmem_cache_create("ll_file_data",
119                                                  sizeof(struct ll_file_data), 0,
120                                                  SLAB_HWCACHE_ALIGN, NULL);
121         if (ll_file_data_slab == NULL)
122                 GOTO(out_cache, rc = -ENOMEM);
123
124         rc = llite_tunables_register();
125         if (rc)
126                 GOTO(out_cache, rc);
127
128         /* Nodes with small feet have little entropy. The NID for this
129          * node gives the most entropy in the low bits. */
130         for (i = 0;; i++) {
131                 if (LNetGetId(i, &lnet_id) == -ENOENT)
132                         break;
133
134                 add_device_randomness(&lnet_id.nid, sizeof(lnet_id.nid));
135         }
136
137         rc = vvp_global_init();
138         if (rc != 0)
139                 GOTO(out_tunables, rc);
140
141         cl_inode_fini_env = cl_env_alloc(&cl_inode_fini_refcheck,
142                                          LCT_REMEMBER | LCT_NOREF);
143         if (IS_ERR(cl_inode_fini_env))
144                 GOTO(out_vvp, rc = PTR_ERR(cl_inode_fini_env));
145
146         cl_inode_fini_env->le_ctx.lc_cookie = 0x4;
147
148         rc = ll_xattr_init();
149         if (rc != 0)
150                 GOTO(out_inode_fini_env, rc);
151
152         lustre_register_client_fill_super(ll_fill_super);
153         lustre_register_kill_super_cb(ll_kill_super);
154
155         RETURN(0);
156
157 out_inode_fini_env:
158         cl_env_put(cl_inode_fini_env, &cl_inode_fini_refcheck);
159 out_vvp:
160         vvp_global_fini();
161 out_tunables:
162         llite_tunables_unregister();
163 out_cache:
164         kmem_cache_destroy(ll_inode_cachep);
165         kmem_cache_destroy(ll_file_data_slab);
166         return rc;
167 }
168
169 static void __exit lustre_exit(void)
170 {
171         lustre_register_client_fill_super(NULL);
172         lustre_register_kill_super_cb(NULL);
173
174         llite_tunables_unregister();
175
176         ll_xattr_fini();
177         cl_env_put(cl_inode_fini_env, &cl_inode_fini_refcheck);
178         vvp_global_fini();
179
180         kmem_cache_destroy(ll_inode_cachep);
181         kmem_cache_destroy(ll_file_data_slab);
182 }
183
184 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
185 MODULE_DESCRIPTION("Lustre Client File System");
186 MODULE_VERSION(LUSTRE_VERSION_STRING);
187 MODULE_LICENSE("GPL");
188
189 module_init(lustre_init);
190 module_exit(lustre_exit);