summaryrefslogtreecommitdiff
path: root/fs/btrfs/super.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2018-01-02 18:19:50 +0100
committerDavid Sterba <dsterba@suse.com>2018-01-22 16:08:19 +0100
commit5bedc48a8f9e1d62fb693c4171ffddb990d034f6 (patch)
tree591ad23ed5b65081a69eeabf5fd1b924ea166ca7 /fs/btrfs/super.c
parente215772cd2abcf33adad8857c0f5a8214a6e7d22 (diff)
btrfs: drop unused parameters from mount_subvol
Recent patches reworking the mount path left some unused parameters. We pass a vfsmount to mount_subvol, the flags and data (ie. mount options) have been already applied and we will not need them. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r--fs/btrfs/super.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 1d33744a9326..f40352843c0b 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -1397,8 +1397,7 @@ static inline int is_subvolume_inode(struct inode *inode)
}
static struct dentry *mount_subvol(const char *subvol_name, u64 subvol_objectid,
- int flags, const char *device_name,
- char *data, struct vfsmount *mnt)
+ const char *device_name, struct vfsmount *mnt)
{
struct dentry *root;
int ret;
@@ -1693,8 +1692,7 @@ static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags,
}
/* mount_subvol() will free subvol_name and mnt_root */
- root = mount_subvol(subvol_name, subvol_objectid, flags, device_name,
- data, mnt_root);
+ root = mount_subvol(subvol_name, subvol_objectid, device_name, mnt_root);
out:
return root;