orangefs: kill struct pvfs2_mount_sb_info_s
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 9 Oct 2015 00:22:43 +0000 (20:22 -0400)
committerMike Marshall <hubcap@omnibond.com>
Fri, 13 Nov 2015 16:39:31 +0000 (11:39 -0500)
The only reason for that thing used to be the API of mount_nodev()
callback;  since we are calling pvfs2_fill_sb() ourselves now,
we don't have to shove everything into a single structure.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
fs/orangefs/pvfs2-kernel.h
fs/orangefs/super.c

index 16df1d5aa87980653eeb6f6004e8c56e87926276..c36868be03dce04a60697a5cf0c3e968e0d0c065 100644 (file)
@@ -364,18 +364,6 @@ struct pvfs2_sb_info_s {
        struct list_head list;
 };
 
-/*
- * a temporary structure used only for sb mount time that groups the
- * mount time data provided along with a private superblock structure
- * that is allocated before a 'kernel' superblock is allocated.
-*/
-struct pvfs2_mount_sb_info_s {
-       void *data;
-       struct pvfs2_khandle root_khandle;
-       __s32 fs_id;
-       int id;
-};
-
 /*
  * structure that holds the state of any async I/O operation issued
  * through the VFS. Needed especially to handle cancellation requests
index 833af68c2227ae1059ba9fa8c165766d684c7567..f29e7cccdfd1bed06a8dd4d508d20e4bbd8ab2ce 100644 (file)
@@ -347,13 +347,13 @@ static struct export_operations pvfs2_export_ops = {
        .fh_to_dentry = pvfs2_fh_to_dentry,
 };
 
-static int pvfs2_fill_sb(struct super_block *sb, void *data, int silent)
+static int pvfs2_fill_sb(struct super_block *sb,
+               struct pvfs2_fs_mount_response *fs_mount,
+               void *data, int silent)
 {
        int ret = -EINVAL;
        struct inode *root = NULL;
        struct dentry *root_dentry = NULL;
-       struct pvfs2_mount_sb_info_s *mount_sb_info =
-               (struct pvfs2_mount_sb_info_s *) data;
        struct pvfs2_object_kref root_object;
 
        /* alloc and init our private pvfs2 sb info */
@@ -364,13 +364,12 @@ static int pvfs2_fill_sb(struct super_block *sb, void *data, int silent)
        memset(sb->s_fs_info, 0, sizeof(struct pvfs2_sb_info_s));
        PVFS2_SB(sb)->sb = sb;
 
-       PVFS2_SB(sb)->root_khandle = mount_sb_info->root_khandle;
-       PVFS2_SB(sb)->fs_id = mount_sb_info->fs_id;
-       PVFS2_SB(sb)->id = mount_sb_info->id;
+       PVFS2_SB(sb)->root_khandle = fs_mount->root_khandle;
+       PVFS2_SB(sb)->fs_id = fs_mount->fs_id;
+       PVFS2_SB(sb)->id = fs_mount->id;
 
-       if (mount_sb_info->data) {
-               ret = parse_mount_options(sb, mount_sb_info->data,
-                                         silent);
+       if (data) {
+               ret = parse_mount_options(sb, data, silent);
                if (ret)
                        return ret;
        }
@@ -419,7 +418,6 @@ struct dentry *pvfs2_mount(struct file_system_type *fst,
        int ret = -EINVAL;
        struct super_block *sb = ERR_PTR(-EINVAL);
        struct pvfs2_kernel_op_s *new_op;
-       struct pvfs2_mount_sb_info_s mount_sb_info;
        struct dentry *d = ERR_PTR(-EINVAL);
 
        gossip_debug(GOSSIP_SUPER_DEBUG,
@@ -455,13 +453,6 @@ struct dentry *pvfs2_mount(struct file_system_type *fst,
                goto free_op;
        }
 
-       /* fill in temporary structure passed to fill_sb method */
-       mount_sb_info.data = data;
-       mount_sb_info.root_khandle =
-               new_op->downcall.resp.fs_mount.root_khandle;
-       mount_sb_info.fs_id = new_op->downcall.resp.fs_mount.fs_id;
-       mount_sb_info.id = new_op->downcall.resp.fs_mount.id;
-
        sb = sget(fst, NULL, set_anon_super, flags, NULL);
 
        if (IS_ERR(sb)) {
@@ -470,7 +461,7 @@ struct dentry *pvfs2_mount(struct file_system_type *fst,
        }
 
        ret = pvfs2_fill_sb(sb,
-             (void *)&mount_sb_info,
+             &new_op->downcall.resp.fs_mount, data,
              flags & MS_SILENT ? 1 : 0);
 
        if (ret) {
This page took 0.02761 seconds and 5 git commands to generate.