From: David Sterba Date: Fri, 10 Feb 2017 18:44:31 +0000 (+0100) Subject: btrfs: remove unused parameter from btrfs_fill_super X-Git-Tag: v5.15~11466^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=56e033a7874ae4bb5204a38fd5d5cf99c1311321;p=platform%2Fkernel%2Flinux-starfive.git btrfs: remove unused parameter from btrfs_fill_super Never used for anything meaningful since we have our own superblock filler. Reviewed-by: Liu Bo Signed-off-by: David Sterba --- diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 93ed29c..da687dc 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -1114,7 +1114,7 @@ static int get_default_subvol_objectid(struct btrfs_fs_info *fs_info, u64 *objec static int btrfs_fill_super(struct super_block *sb, struct btrfs_fs_devices *fs_devices, - void *data, int silent) + void *data) { struct inode *inode; struct btrfs_fs_info *fs_info = btrfs_sb(sb); @@ -1611,8 +1611,7 @@ static struct dentry *btrfs_mount(struct file_system_type *fs_type, int flags, } else { snprintf(s->s_id, sizeof(s->s_id), "%pg", bdev); btrfs_sb(s)->bdev_holder = fs_type; - error = btrfs_fill_super(s, fs_devices, data, - flags & MS_SILENT ? 1 : 0); + error = btrfs_fill_super(s, fs_devices, data); } if (error) { deactivate_locked_super(s);