Since the commit 
c6100a4b4e3d ("Btrfs: replace tree->mapping with
tree->private_data"), parameter fs_info in alloc_reloc_control is
not used. So remove it.
Signed-off-by: Gu Jinxiang <gujx@cn.fujitsu.com>
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
        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;
 
        int rw = 0;
        int err = 0;
 
-       rc = alloc_reloc_control(fs_info);
+       rc = alloc_reloc_control();
        if (!rc)
                return -ENOMEM;
 
        if (list_empty(&reloc_roots))
                goto out;
 
-       rc = alloc_reloc_control(fs_info);
+       rc = alloc_reloc_control();
        if (!rc) {
                err = -ENOMEM;
                goto out;