Whamcloud - gitweb
LU-6971 cleanup: not support remote client anymore
[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, 2014, 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_ha.h>
43 #include <lustre_dlm.h>
44 #include <linux/init.h>
45 #include <linux/fs.h>
46 #include <lprocfs_status.h>
47 #include "llite_internal.h"
48 #include "vvp_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_NOFS);
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 /* exported operations */
85 struct super_operations lustre_super_operations =
86 {
87         .alloc_inode   = ll_alloc_inode,
88         .destroy_inode = ll_destroy_inode,
89 #ifdef HAVE_SBOPS_EVICT_INODE
90         .evict_inode   = ll_delete_inode,
91 #else
92         .clear_inode   = ll_clear_inode,
93         .delete_inode  = ll_delete_inode,
94 #endif
95         .put_super     = ll_put_super,
96         .statfs        = ll_statfs,
97         .umount_begin  = ll_umount_begin,
98         .remount_fs    = ll_remount_fs,
99         .show_options  = ll_show_options,
100 };
101
102
103 void lustre_register_client_process_config(int (*cpc)(struct lustre_cfg *lcfg));
104
105 static int __init lustre_init(void)
106 {
107         struct proc_dir_entry *entry;
108         lnet_process_id_t lnet_id;
109         struct timeval tv;
110         int i, rc, seed[2];
111
112         CLASSERT(sizeof(LUSTRE_VOLATILE_HDR) == LUSTRE_VOLATILE_HDR_LEN + 1);
113
114         /* print an address of _any_ initialized kernel symbol from this
115          * module, to allow debugging with gdb that doesn't support data
116          * symbols from modules.*/
117         CDEBUG(D_INFO, "Lustre client module (%p).\n",
118                &lustre_super_operations);
119
120         ll_inode_cachep = kmem_cache_create("lustre_inode_cache",
121                                             sizeof(struct ll_inode_info),
122                                             0, SLAB_HWCACHE_ALIGN, NULL);
123         if (ll_inode_cachep == NULL)
124                 GOTO(out_cache, rc = -ENOMEM);
125
126         ll_file_data_slab = kmem_cache_create("ll_file_data",
127                                                  sizeof(struct ll_file_data), 0,
128                                                  SLAB_HWCACHE_ALIGN, NULL);
129         if (ll_file_data_slab == NULL)
130                 GOTO(out_cache, rc = -ENOMEM);
131
132         entry = lprocfs_register("llite", proc_lustre_root, NULL, NULL);
133         if (IS_ERR(entry)) {
134                 rc = PTR_ERR(entry);
135                 CERROR("cannot register '/proc/fs/lustre/llite': rc = %d\n",
136                        rc);
137                 GOTO(out_cache, rc);
138         }
139
140         proc_lustre_fs_root = entry;
141
142         cfs_get_random_bytes(seed, sizeof(seed));
143
144         /* Nodes with small feet have little entropy. The NID for this
145          * node gives the most entropy in the low bits. */
146         for (i = 0;; i++) {
147                 if (LNetGetId(i, &lnet_id) == -ENOENT)
148                         break;
149
150                 if (LNET_NETTYP(LNET_NIDNET(lnet_id.nid)) != LOLND)
151                         seed[0] ^= LNET_NIDADDR(lnet_id.nid);
152         }
153
154         do_gettimeofday(&tv);
155         cfs_srand(tv.tv_sec ^ seed[0], tv.tv_usec ^ seed[1]);
156
157         rc = vvp_global_init();
158         if (rc != 0)
159                 GOTO(out_proc, rc);
160
161         cl_inode_fini_env = cl_env_alloc(&cl_inode_fini_refcheck,
162                                          LCT_REMEMBER | LCT_NOREF);
163         if (IS_ERR(cl_inode_fini_env))
164                 GOTO(out_vvp, rc = PTR_ERR(cl_inode_fini_env));
165
166         cl_inode_fini_env->le_ctx.lc_cookie = 0x4;
167
168         rc = ll_xattr_init();
169         if (rc != 0)
170                 GOTO(out_inode_fini_env, rc);
171
172         lustre_register_client_fill_super(ll_fill_super);
173         lustre_register_kill_super_cb(ll_kill_super);
174         lustre_register_client_process_config(ll_process_config);
175
176         RETURN(0);
177
178 out_inode_fini_env:
179         cl_env_put(cl_inode_fini_env, &cl_inode_fini_refcheck);
180 out_vvp:
181         vvp_global_fini();
182 out_proc:
183         lprocfs_remove(&proc_lustre_fs_root);
184 out_cache:
185         if (ll_inode_cachep != NULL)
186                 kmem_cache_destroy(ll_inode_cachep);
187
188         if (ll_file_data_slab != NULL)
189                 kmem_cache_destroy(ll_file_data_slab);
190
191         return rc;
192 }
193
194 static void __exit lustre_exit(void)
195 {
196         lustre_register_client_fill_super(NULL);
197         lustre_register_kill_super_cb(NULL);
198         lustre_register_client_process_config(NULL);
199
200         lprocfs_remove(&proc_lustre_fs_root);
201
202         ll_xattr_fini();
203         cl_env_put(cl_inode_fini_env, &cl_inode_fini_refcheck);
204         vvp_global_fini();
205
206         kmem_cache_destroy(ll_inode_cachep);
207         kmem_cache_destroy(ll_file_data_slab);
208 }
209
210 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
211 MODULE_DESCRIPTION("Lustre Client File System");
212 MODULE_VERSION(LUSTRE_VERSION_STRING);
213 MODULE_LICENSE("GPL");
214
215 module_init(lustre_init);
216 module_exit(lustre_exit);