Commit 9113493e authored by Gu Jinxiang's avatar Gu Jinxiang Committed by David Sterba

btrfs: remove unused fs_info parameter

Since the commit c6100a4b ("Btrfs: replace tree->mapping with
tree->private_data"), parameter fs_info in alloc_reloc_control is
not used. So remove it.
Signed-off-by: default avatarGu Jinxiang <gujx@cn.fujitsu.com>
Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarAnand Jain <anand.jain@oracle.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent f9fbcaa2
...@@ -4299,7 +4299,7 @@ struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info, ...@@ -4299,7 +4299,7 @@ struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
return inode; return inode;
} }
static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info) static struct reloc_control *alloc_reloc_control(void)
{ {
struct reloc_control *rc; struct reloc_control *rc;
...@@ -4366,7 +4366,7 @@ int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start) ...@@ -4366,7 +4366,7 @@ int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start)
int rw = 0; int rw = 0;
int err = 0; int err = 0;
rc = alloc_reloc_control(fs_info); rc = alloc_reloc_control();
if (!rc) if (!rc)
return -ENOMEM; return -ENOMEM;
...@@ -4562,7 +4562,7 @@ int btrfs_recover_relocation(struct btrfs_root *root) ...@@ -4562,7 +4562,7 @@ int btrfs_recover_relocation(struct btrfs_root *root)
if (list_empty(&reloc_roots)) if (list_empty(&reloc_roots))
goto out; goto out;
rc = alloc_reloc_control(fs_info); rc = alloc_reloc_control();
if (!rc) { if (!rc) {
err = -ENOMEM; err = -ENOMEM;
goto out; goto out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment