Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66afee18 authored by Nikolay Borisov's avatar Nikolay Borisov Committed by David Sterba
Browse files

btrfs: Remove fs_info parameter from add_new_free_space_info



This function already takes trans handle from where fs_info can be
referenced. Remove the redundant parameter.

Signed-off-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 2d5cffa1
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -44,11 +44,10 @@ void set_free_space_tree_thresholds(struct btrfs_block_group_cache *cache)
}

static int add_new_free_space_info(struct btrfs_trans_handle *trans,
				   struct btrfs_fs_info *fs_info,
				   struct btrfs_block_group_cache *block_group,
				   struct btrfs_path *path)
{
	struct btrfs_root *root = fs_info->free_space_root;
	struct btrfs_root *root = trans->fs_info->free_space_root;
	struct btrfs_free_space_info *info;
	struct btrfs_key key;
	struct extent_buffer *leaf;
@@ -1067,7 +1066,7 @@ static int populate_free_space_tree(struct btrfs_trans_handle *trans,
		return -ENOMEM;
	}

	ret = add_new_free_space_info(trans, fs_info, block_group, path2);
	ret = add_new_free_space_info(trans, block_group, path2);
	if (ret)
		goto out;

@@ -1277,7 +1276,7 @@ static int __add_block_group_free_space(struct btrfs_trans_handle *trans,

	block_group->needs_free_space = 0;

	ret = add_new_free_space_info(trans, trans->fs_info, block_group, path);
	ret = add_new_free_space_info(trans, block_group, path);
	if (ret)
		return ret;