]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/orangefs/super.c
Merge tag 'mmc-v4.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
[mirror_ubuntu-bionic-kernel.git] / fs / orangefs / super.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1182fca3
MM
2/*
3 * (C) 2001 Clemson University and The University of Chicago
4 *
5 * See COPYING in top-level directory.
6 */
7
8#include "protocol.h"
575e9461
MM
9#include "orangefs-kernel.h"
10#include "orangefs-bufmap.h"
1182fca3
MM
11
12#include <linux/parser.h>
13
8bb8aefd
YL
14/* a cache for orangefs-inode objects (i.e. orangefs inode private data) */
15static struct kmem_cache *orangefs_inode_cache;
1182fca3 16
8bb8aefd
YL
17/* list for storing orangefs specific superblocks in use */
18LIST_HEAD(orangefs_superblocks);
1182fca3 19
8bb8aefd 20DEFINE_SPINLOCK(orangefs_superblocks_lock);
1182fca3
MM
21
22enum {
23 Opt_intr,
24 Opt_acl,
25 Opt_local_lock,
26
27 Opt_err
28};
29
30static const match_table_t tokens = {
31 { Opt_acl, "acl" },
32 { Opt_intr, "intr" },
33 { Opt_local_lock, "local_lock" },
34 { Opt_err, NULL }
35};
36
482664dd 37uint64_t orangefs_features;
1182fca3 38
4dfdb713
DH
39static int orangefs_show_options(struct seq_file *m, struct dentry *root)
40{
41 struct orangefs_sb_info_s *orangefs_sb = ORANGEFS_SB(root->d_sb);
42
1751e8a6 43 if (root->d_sb->s_flags & SB_POSIXACL)
4dfdb713
DH
44 seq_puts(m, ",acl");
45 if (orangefs_sb->flags & ORANGEFS_OPT_INTR)
46 seq_puts(m, ",intr");
47 if (orangefs_sb->flags & ORANGEFS_OPT_LOCAL_LOCK)
48 seq_puts(m, ",local_lock");
49 return 0;
50}
51
1182fca3
MM
52static int parse_mount_options(struct super_block *sb, char *options,
53 int silent)
54{
8bb8aefd 55 struct orangefs_sb_info_s *orangefs_sb = ORANGEFS_SB(sb);
1182fca3
MM
56 substring_t args[MAX_OPT_ARGS];
57 char *p;
58
59 /*
60 * Force any potential flags that might be set from the mount
61 * to zero, ie, initialize to unset.
62 */
1751e8a6 63 sb->s_flags &= ~SB_POSIXACL;
8bb8aefd
YL
64 orangefs_sb->flags &= ~ORANGEFS_OPT_INTR;
65 orangefs_sb->flags &= ~ORANGEFS_OPT_LOCAL_LOCK;
1182fca3
MM
66
67 while ((p = strsep(&options, ",")) != NULL) {
68 int token;
69
70 if (!*p)
71 continue;
72
73 token = match_token(p, tokens, args);
74 switch (token) {
75 case Opt_acl:
1751e8a6 76 sb->s_flags |= SB_POSIXACL;
1182fca3
MM
77 break;
78 case Opt_intr:
8bb8aefd 79 orangefs_sb->flags |= ORANGEFS_OPT_INTR;
1182fca3
MM
80 break;
81 case Opt_local_lock:
8bb8aefd 82 orangefs_sb->flags |= ORANGEFS_OPT_LOCAL_LOCK;
1182fca3
MM
83 break;
84 default:
85 goto fail;
86 }
87 }
88
89 return 0;
90fail:
91 if (!silent)
92 gossip_err("Error: mount option [%s] is not supported.\n", p);
93 return -EINVAL;
94}
95
8bb8aefd 96static void orangefs_inode_cache_ctor(void *req)
1182fca3 97{
8bb8aefd 98 struct orangefs_inode_s *orangefs_inode = req;
1182fca3 99
8bb8aefd
YL
100 inode_init_once(&orangefs_inode->vfs_inode);
101 init_rwsem(&orangefs_inode->xattr_sem);
1182fca3
MM
102}
103
8bb8aefd 104static struct inode *orangefs_alloc_inode(struct super_block *sb)
1182fca3 105{
8bb8aefd 106 struct orangefs_inode_s *orangefs_inode;
1182fca3 107
2d4cae0d 108 orangefs_inode = kmem_cache_alloc(orangefs_inode_cache, GFP_KERNEL);
07a25853 109 if (!orangefs_inode)
1182fca3 110 return NULL;
1182fca3
MM
111
112 /*
113 * We want to clear everything except for rw_semaphore and the
114 * vfs_inode.
115 */
8bb8aefd
YL
116 memset(&orangefs_inode->refn.khandle, 0, 16);
117 orangefs_inode->refn.fs_id = ORANGEFS_FS_ID_NULL;
118 orangefs_inode->last_failed_block_index_read = 0;
119 memset(orangefs_inode->link_target, 0, sizeof(orangefs_inode->link_target));
1182fca3
MM
120
121 gossip_debug(GOSSIP_SUPER_DEBUG,
8bb8aefd
YL
122 "orangefs_alloc_inode: allocated %p\n",
123 &orangefs_inode->vfs_inode);
124 return &orangefs_inode->vfs_inode;
1182fca3
MM
125}
126
0695d7dc
PZ
127static void orangefs_i_callback(struct rcu_head *head)
128{
129 struct inode *inode = container_of(head, struct inode, i_rcu);
130 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
131 kmem_cache_free(orangefs_inode_cache, orangefs_inode);
132}
133
8bb8aefd 134static void orangefs_destroy_inode(struct inode *inode)
1182fca3 135{
8bb8aefd 136 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
1182fca3
MM
137
138 gossip_debug(GOSSIP_SUPER_DEBUG,
139 "%s: deallocated %p destroying inode %pU\n",
8bb8aefd 140 __func__, orangefs_inode, get_khandle_from_ino(inode));
1182fca3 141
0695d7dc 142 call_rcu(&inode->i_rcu, orangefs_i_callback);
1182fca3
MM
143}
144
145/*
146 * NOTE: information filled in here is typically reflected in the
147 * output of the system command 'df'
148*/
8bb8aefd 149static int orangefs_statfs(struct dentry *dentry, struct kstatfs *buf)
1182fca3
MM
150{
151 int ret = -ENOMEM;
8bb8aefd 152 struct orangefs_kernel_op_s *new_op = NULL;
1182fca3
MM
153 int flags = 0;
154 struct super_block *sb = NULL;
155
156 sb = dentry->d_sb;
157
158 gossip_debug(GOSSIP_SUPER_DEBUG,
8bb8aefd 159 "orangefs_statfs: called on sb %p (fs_id is %d)\n",
1182fca3 160 sb,
8bb8aefd 161 (int)(ORANGEFS_SB(sb)->fs_id));
1182fca3 162
8bb8aefd 163 new_op = op_alloc(ORANGEFS_VFS_OP_STATFS);
1182fca3
MM
164 if (!new_op)
165 return ret;
8bb8aefd 166 new_op->upcall.req.statfs.fs_id = ORANGEFS_SB(sb)->fs_id;
1182fca3 167
8bb8aefd
YL
168 if (ORANGEFS_SB(sb)->flags & ORANGEFS_OPT_INTR)
169 flags = ORANGEFS_OP_INTERRUPTIBLE;
1182fca3 170
8bb8aefd 171 ret = service_operation(new_op, "orangefs_statfs", flags);
1182fca3
MM
172
173 if (new_op->downcall.status < 0)
174 goto out_op_release;
175
176 gossip_debug(GOSSIP_SUPER_DEBUG,
be57366e
MM
177 "%s: got %ld blocks available | "
178 "%ld blocks total | %ld block size | "
179 "%ld files total | %ld files avail\n",
180 __func__,
1182fca3
MM
181 (long)new_op->downcall.resp.statfs.blocks_avail,
182 (long)new_op->downcall.resp.statfs.blocks_total,
be57366e
MM
183 (long)new_op->downcall.resp.statfs.block_size,
184 (long)new_op->downcall.resp.statfs.files_total,
185 (long)new_op->downcall.resp.statfs.files_avail);
1182fca3
MM
186
187 buf->f_type = sb->s_magic;
8bb8aefd 188 memcpy(&buf->f_fsid, &ORANGEFS_SB(sb)->fs_id, sizeof(buf->f_fsid));
1182fca3 189 buf->f_bsize = new_op->downcall.resp.statfs.block_size;
47b4948f 190 buf->f_namelen = ORANGEFS_NAME_MAX;
1182fca3
MM
191
192 buf->f_blocks = (sector_t) new_op->downcall.resp.statfs.blocks_total;
193 buf->f_bfree = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
194 buf->f_bavail = (sector_t) new_op->downcall.resp.statfs.blocks_avail;
195 buf->f_files = (sector_t) new_op->downcall.resp.statfs.files_total;
196 buf->f_ffree = (sector_t) new_op->downcall.resp.statfs.files_avail;
197 buf->f_frsize = sb->s_blocksize;
198
199out_op_release:
200 op_release(new_op);
8bb8aefd 201 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_statfs: returning %d\n", ret);
1182fca3
MM
202 return ret;
203}
204
205/*
206 * Remount as initiated by VFS layer. We just need to reparse the mount
207 * options, no need to signal pvfs2-client-core about it.
208 */
8bb8aefd 209static int orangefs_remount_fs(struct super_block *sb, int *flags, char *data)
1182fca3 210{
8bb8aefd 211 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_remount_fs: called\n");
1182fca3
MM
212 return parse_mount_options(sb, data, 1);
213}
214
215/*
216 * Remount as initiated by pvfs2-client-core on restart. This is used to
217 * repopulate mount information left from previous pvfs2-client-core.
218 *
219 * the idea here is that given a valid superblock, we're
220 * re-initializing the user space client with the initial mount
221 * information specified when the super block was first initialized.
222 * this is very different than the first initialization/creation of a
223 * superblock. we use the special service_priority_operation to make
224 * sure that the mount gets ahead of any other pending operation that
225 * is waiting for servicing. this means that the pvfs2-client won't
226 * fail to start several times for all other pending operations before
227 * the client regains all of the mount information from us.
228 * NOTE: this function assumes that the request_mutex is already acquired!
229 */
45996492 230int orangefs_remount(struct orangefs_sb_info_s *orangefs_sb)
1182fca3 231{
8bb8aefd 232 struct orangefs_kernel_op_s *new_op;
1182fca3
MM
233 int ret = -EINVAL;
234
8bb8aefd 235 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_remount: called\n");
1182fca3 236
8bb8aefd 237 new_op = op_alloc(ORANGEFS_VFS_OP_FS_MOUNT);
1182fca3
MM
238 if (!new_op)
239 return -ENOMEM;
8bb8aefd 240 strncpy(new_op->upcall.req.fs_mount.orangefs_config_server,
45996492 241 orangefs_sb->devname,
8bb8aefd 242 ORANGEFS_MAX_SERVER_ADDR_LEN);
1182fca3
MM
243
244 gossip_debug(GOSSIP_SUPER_DEBUG,
8bb8aefd
YL
245 "Attempting ORANGEFS Remount via host %s\n",
246 new_op->upcall.req.fs_mount.orangefs_config_server);
1182fca3
MM
247
248 /*
adcf34a2 249 * we assume that the calling function has already acquired the
1182fca3
MM
250 * request_mutex to prevent other operations from bypassing
251 * this one
252 */
8bb8aefd 253 ret = service_operation(new_op, "orangefs_remount",
adcf34a2 254 ORANGEFS_OP_PRIORITY | ORANGEFS_OP_NO_MUTEX);
1182fca3 255 gossip_debug(GOSSIP_SUPER_DEBUG,
8bb8aefd 256 "orangefs_remount: mount got return value of %d\n",
1182fca3
MM
257 ret);
258 if (ret == 0) {
259 /*
260 * store the id assigned to this sb -- it's just a
261 * short-lived mapping that the system interface uses
262 * to map this superblock to a particular mount entry
263 */
45996492
AV
264 orangefs_sb->id = new_op->downcall.resp.fs_mount.id;
265 orangefs_sb->mount_pending = 0;
1182fca3
MM
266 }
267
268 op_release(new_op);
482664dd 269
f60fbdbf 270 if (orangefs_userspace_version >= 20906) {
482664dd
MB
271 new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
272 if (!new_op)
273 return -ENOMEM;
274 new_op->upcall.req.features.features = 0;
cefdc26e
MB
275 ret = service_operation(new_op, "orangefs_features",
276 ORANGEFS_OP_PRIORITY | ORANGEFS_OP_NO_MUTEX);
277 if (!ret)
278 orangefs_features =
279 new_op->downcall.resp.features.features;
280 else
281 orangefs_features = 0;
482664dd
MB
282 op_release(new_op);
283 } else {
284 orangefs_features = 0;
285 }
286
1182fca3
MM
287 return ret;
288}
289
290int fsid_key_table_initialize(void)
291{
292 return 0;
293}
294
295void fsid_key_table_finalize(void)
296{
297}
298
8bb8aefd
YL
299static const struct super_operations orangefs_s_ops = {
300 .alloc_inode = orangefs_alloc_inode,
301 .destroy_inode = orangefs_destroy_inode,
1182fca3 302 .drop_inode = generic_delete_inode,
8bb8aefd
YL
303 .statfs = orangefs_statfs,
304 .remount_fs = orangefs_remount_fs,
4dfdb713 305 .show_options = orangefs_show_options,
1182fca3
MM
306};
307
8bb8aefd 308static struct dentry *orangefs_fh_to_dentry(struct super_block *sb,
1182fca3
MM
309 struct fid *fid,
310 int fh_len,
311 int fh_type)
312{
8bb8aefd 313 struct orangefs_object_kref refn;
1182fca3
MM
314
315 if (fh_len < 5 || fh_type > 2)
316 return NULL;
317
8bb8aefd 318 ORANGEFS_khandle_from(&(refn.khandle), fid->raw, 16);
1182fca3
MM
319 refn.fs_id = (u32) fid->raw[4];
320 gossip_debug(GOSSIP_SUPER_DEBUG,
321 "fh_to_dentry: handle %pU, fs_id %d\n",
322 &refn.khandle,
323 refn.fs_id);
324
8bb8aefd 325 return d_obtain_alias(orangefs_iget(sb, &refn));
1182fca3
MM
326}
327
8bb8aefd 328static int orangefs_encode_fh(struct inode *inode,
1182fca3
MM
329 __u32 *fh,
330 int *max_len,
331 struct inode *parent)
332{
333 int len = parent ? 10 : 5;
334 int type = 1;
8bb8aefd 335 struct orangefs_object_kref refn;
1182fca3
MM
336
337 if (*max_len < len) {
338 gossip_lerr("fh buffer is too small for encoding\n");
339 *max_len = len;
340 type = 255;
341 goto out;
342 }
343
8bb8aefd
YL
344 refn = ORANGEFS_I(inode)->refn;
345 ORANGEFS_khandle_to(&refn.khandle, fh, 16);
1182fca3
MM
346 fh[4] = refn.fs_id;
347
348 gossip_debug(GOSSIP_SUPER_DEBUG,
349 "Encoding fh: handle %pU, fsid %u\n",
350 &refn.khandle,
351 refn.fs_id);
352
353
354 if (parent) {
8bb8aefd
YL
355 refn = ORANGEFS_I(parent)->refn;
356 ORANGEFS_khandle_to(&refn.khandle, (char *) fh + 20, 16);
1182fca3
MM
357 fh[9] = refn.fs_id;
358
359 type = 2;
360 gossip_debug(GOSSIP_SUPER_DEBUG,
361 "Encoding parent: handle %pU, fsid %u\n",
362 &refn.khandle,
363 refn.fs_id);
364 }
365 *max_len = len;
366
367out:
368 return type;
369}
370
acaca36d 371static const struct export_operations orangefs_export_ops = {
8bb8aefd
YL
372 .encode_fh = orangefs_encode_fh,
373 .fh_to_dentry = orangefs_fh_to_dentry,
1182fca3
MM
374};
375
9d286b0d
MB
376static int orangefs_unmount(int id, __s32 fs_id, const char *devname)
377{
378 struct orangefs_kernel_op_s *op;
379 int r;
380 op = op_alloc(ORANGEFS_VFS_OP_FS_UMOUNT);
381 if (!op)
382 return -ENOMEM;
383 op->upcall.req.fs_umount.id = id;
384 op->upcall.req.fs_umount.fs_id = fs_id;
385 strncpy(op->upcall.req.fs_umount.orangefs_config_server,
386 devname, ORANGEFS_MAX_SERVER_ADDR_LEN);
387 r = service_operation(op, "orangefs_fs_umount", 0);
388 /* Not much to do about an error here. */
389 if (r)
390 gossip_err("orangefs_unmount: service_operation %d\n", r);
391 op_release(op);
392 return r;
393}
394
8bb8aefd
YL
395static int orangefs_fill_sb(struct super_block *sb,
396 struct orangefs_fs_mount_response *fs_mount,
5c0dbbc6 397 void *data, int silent)
1182fca3
MM
398{
399 int ret = -EINVAL;
400 struct inode *root = NULL;
401 struct dentry *root_dentry = NULL;
8bb8aefd 402 struct orangefs_object_kref root_object;
1182fca3 403
8bb8aefd 404 /* alloc and init our private orangefs sb info */
05d31c5c 405 sb->s_fs_info = kzalloc(sizeof(struct orangefs_sb_info_s), GFP_KERNEL);
8bb8aefd 406 if (!ORANGEFS_SB(sb))
1182fca3 407 return -ENOMEM;
8bb8aefd 408 ORANGEFS_SB(sb)->sb = sb;
1182fca3 409
8bb8aefd
YL
410 ORANGEFS_SB(sb)->root_khandle = fs_mount->root_khandle;
411 ORANGEFS_SB(sb)->fs_id = fs_mount->fs_id;
412 ORANGEFS_SB(sb)->id = fs_mount->id;
1182fca3 413
5c0dbbc6
AV
414 if (data) {
415 ret = parse_mount_options(sb, data, silent);
1182fca3
MM
416 if (ret)
417 return ret;
418 }
419
420 /* Hang the xattr handlers off the superblock */
8bb8aefd
YL
421 sb->s_xattr = orangefs_xattr_handlers;
422 sb->s_magic = ORANGEFS_SUPER_MAGIC;
423 sb->s_op = &orangefs_s_ops;
424 sb->s_d_op = &orangefs_dentry_operations;
1182fca3 425
8bb8aefd
YL
426 sb->s_blocksize = orangefs_bufmap_size_query();
427 sb->s_blocksize_bits = orangefs_bufmap_shift_query();
1182fca3
MM
428 sb->s_maxbytes = MAX_LFS_FILESIZE;
429
8bb8aefd
YL
430 root_object.khandle = ORANGEFS_SB(sb)->root_khandle;
431 root_object.fs_id = ORANGEFS_SB(sb)->fs_id;
1182fca3
MM
432 gossip_debug(GOSSIP_SUPER_DEBUG,
433 "get inode %pU, fsid %d\n",
434 &root_object.khandle,
435 root_object.fs_id);
436
8bb8aefd 437 root = orangefs_iget(sb, &root_object);
1182fca3
MM
438 if (IS_ERR(root))
439 return PTR_ERR(root);
440
441 gossip_debug(GOSSIP_SUPER_DEBUG,
442 "Allocated root inode [%p] with mode %x\n",
443 root,
444 root->i_mode);
445
446 /* allocates and places root dentry in dcache */
447 root_dentry = d_make_root(root);
b05a7851 448 if (!root_dentry)
1182fca3 449 return -ENOMEM;
1182fca3 450
8bb8aefd 451 sb->s_export_op = &orangefs_export_ops;
1182fca3
MM
452 sb->s_root = root_dentry;
453 return 0;
454}
455
8bb8aefd 456struct dentry *orangefs_mount(struct file_system_type *fst,
1182fca3
MM
457 int flags,
458 const char *devname,
459 void *data)
460{
461 int ret = -EINVAL;
462 struct super_block *sb = ERR_PTR(-EINVAL);
8bb8aefd 463 struct orangefs_kernel_op_s *new_op;
1be21f86 464 struct dentry *d = ERR_PTR(-EINVAL);
1182fca3
MM
465
466 gossip_debug(GOSSIP_SUPER_DEBUG,
8bb8aefd 467 "orangefs_mount: called with devname %s\n",
1182fca3
MM
468 devname);
469
470 if (!devname) {
471 gossip_err("ERROR: device name not specified.\n");
472 return ERR_PTR(-EINVAL);
473 }
474
8bb8aefd 475 new_op = op_alloc(ORANGEFS_VFS_OP_FS_MOUNT);
1182fca3
MM
476 if (!new_op)
477 return ERR_PTR(-ENOMEM);
478
8bb8aefd 479 strncpy(new_op->upcall.req.fs_mount.orangefs_config_server,
1182fca3 480 devname,
8bb8aefd 481 ORANGEFS_MAX_SERVER_ADDR_LEN);
1182fca3
MM
482
483 gossip_debug(GOSSIP_SUPER_DEBUG,
8bb8aefd
YL
484 "Attempting ORANGEFS Mount via host %s\n",
485 new_op->upcall.req.fs_mount.orangefs_config_server);
1182fca3 486
8bb8aefd 487 ret = service_operation(new_op, "orangefs_mount", 0);
1182fca3 488 gossip_debug(GOSSIP_SUPER_DEBUG,
8bb8aefd 489 "orangefs_mount: mount got return value of %d\n", ret);
1182fca3
MM
490 if (ret)
491 goto free_op;
492
8bb8aefd 493 if (new_op->downcall.resp.fs_mount.fs_id == ORANGEFS_FS_ID_NULL) {
1182fca3
MM
494 gossip_err("ERROR: Retrieved null fs_id\n");
495 ret = -EINVAL;
496 goto free_op;
497 }
498
1be21f86
MM
499 sb = sget(fst, NULL, set_anon_super, flags, NULL);
500
501 if (IS_ERR(sb)) {
502 d = ERR_CAST(sb);
9d286b0d
MB
503 orangefs_unmount(new_op->downcall.resp.fs_mount.id,
504 new_op->downcall.resp.fs_mount.fs_id, devname);
1182fca3
MM
505 goto free_op;
506 }
507
8bb8aefd 508 ret = orangefs_fill_sb(sb,
5c0dbbc6 509 &new_op->downcall.resp.fs_mount, data,
1751e8a6 510 flags & SB_SILENT ? 1 : 0);
1be21f86
MM
511
512 if (ret) {
513 d = ERR_PTR(ret);
1ec1688c 514 goto free_sb_and_op;
1be21f86 515 }
1182fca3
MM
516
517 /*
518 * on successful mount, store the devname and data
519 * used
520 */
8bb8aefd 521 strncpy(ORANGEFS_SB(sb)->devname,
1182fca3 522 devname,
8bb8aefd 523 ORANGEFS_MAX_SERVER_ADDR_LEN);
1182fca3
MM
524
525 /* mount_pending must be cleared */
8bb8aefd 526 ORANGEFS_SB(sb)->mount_pending = 0;
1182fca3
MM
527
528 /*
8bb8aefd 529 * finally, add this sb to our list of known orangefs
1182fca3
MM
530 * sb's
531 */
45996492
AV
532 gossip_debug(GOSSIP_SUPER_DEBUG,
533 "Adding SB %p to orangefs superblocks\n",
534 ORANGEFS_SB(sb));
535 spin_lock(&orangefs_superblocks_lock);
536 list_add_tail(&ORANGEFS_SB(sb)->list, &orangefs_superblocks);
537 spin_unlock(&orangefs_superblocks_lock);
1182fca3 538 op_release(new_op);
482664dd 539
1ec1688c
MB
540 /* Must be removed from the list now. */
541 ORANGEFS_SB(sb)->no_list = 0;
542
f60fbdbf 543 if (orangefs_userspace_version >= 20906) {
482664dd
MB
544 new_op = op_alloc(ORANGEFS_VFS_OP_FEATURES);
545 if (!new_op)
546 return ERR_PTR(-ENOMEM);
547 new_op->upcall.req.features.features = 0;
548 ret = service_operation(new_op, "orangefs_features", 0);
549 orangefs_features = new_op->downcall.resp.features.features;
550 op_release(new_op);
551 } else {
552 orangefs_features = 0;
553 }
554
1be21f86 555 return dget(sb->s_root);
1182fca3 556
1ec1688c
MB
557free_sb_and_op:
558 /* Will call orangefs_kill_sb with sb not in list. */
559 ORANGEFS_SB(sb)->no_list = 1;
9d286b0d 560 /* ORANGEFS_VFS_OP_FS_UMOUNT is done by orangefs_kill_sb. */
1ec1688c 561 deactivate_locked_super(sb);
1182fca3 562free_op:
8bb8aefd 563 gossip_err("orangefs_mount: mount request failed with %d\n", ret);
1182fca3 564 if (ret == -EINVAL) {
8bb8aefd 565 gossip_err("Ensure that all orangefs-servers have the same FS configuration files\n");
1182fca3
MM
566 gossip_err("Look at pvfs2-client-core log file (typically /tmp/pvfs2-client.log) for more details\n");
567 }
568
569 op_release(new_op);
570
1be21f86 571 return d;
1182fca3
MM
572}
573
8bb8aefd 574void orangefs_kill_sb(struct super_block *sb)
1182fca3 575{
9d286b0d 576 int r;
8bb8aefd 577 gossip_debug(GOSSIP_SUPER_DEBUG, "orangefs_kill_sb: called\n");
1182fca3 578
524b1d30
AV
579 /* provided sb cleanup */
580 kill_anon_super(sb);
581
1182fca3
MM
582 /*
583 * issue the unmount to userspace to tell it to remove the
584 * dynamic mount info it has for this superblock
585 */
9d286b0d
MB
586 r = orangefs_unmount(ORANGEFS_SB(sb)->id, ORANGEFS_SB(sb)->fs_id,
587 ORANGEFS_SB(sb)->devname);
588 if (!r)
589 ORANGEFS_SB(sb)->mount_pending = 1;
1182fca3 590
1ec1688c
MB
591 if (!ORANGEFS_SB(sb)->no_list) {
592 /* remove the sb from our list of orangefs specific sb's */
593 spin_lock(&orangefs_superblocks_lock);
594 /* not list_del_init */
595 __list_del_entry(&ORANGEFS_SB(sb)->list);
596 ORANGEFS_SB(sb)->list.prev = NULL;
597 spin_unlock(&orangefs_superblocks_lock);
598 }
45996492
AV
599
600 /*
601 * make sure that ORANGEFS_DEV_REMOUNT_ALL loop that might've seen us
602 * gets completed before we free the dang thing.
603 */
1d503617
MB
604 mutex_lock(&orangefs_request_mutex);
605 mutex_unlock(&orangefs_request_mutex);
1182fca3 606
8bb8aefd
YL
607 /* free the orangefs superblock private data */
608 kfree(ORANGEFS_SB(sb));
1182fca3
MM
609}
610
8bb8aefd 611int orangefs_inode_cache_initialize(void)
1182fca3 612{
8bb8aefd
YL
613 orangefs_inode_cache = kmem_cache_create("orangefs_inode_cache",
614 sizeof(struct orangefs_inode_s),
1182fca3 615 0,
8bb8aefd
YL
616 ORANGEFS_CACHE_CREATE_FLAGS,
617 orangefs_inode_cache_ctor);
1182fca3 618
8bb8aefd
YL
619 if (!orangefs_inode_cache) {
620 gossip_err("Cannot create orangefs_inode_cache\n");
1182fca3
MM
621 return -ENOMEM;
622 }
623 return 0;
624}
625
8bb8aefd 626int orangefs_inode_cache_finalize(void)
1182fca3 627{
8bb8aefd 628 kmem_cache_destroy(orangefs_inode_cache);
1182fca3
MM
629 return 0;
630}