Commit 4ca75f1b authored by David Sterba's avatar David Sterba
Browse files

btrfs: get fs_info from trans in create_free_space_inode



We can read fs_info from the transaction and can drop it from the
parameters.

Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 90787766
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3411,8 +3411,7 @@ again:
		if (block_group->ro)
			goto out_free;

		ret = create_free_space_inode(fs_info, trans, block_group,
					      path);
		ret = create_free_space_inode(trans, block_group, path);
		if (ret)
			goto out_free;
		goto again;
+4 −5
Original line number Diff line number Diff line
@@ -185,20 +185,19 @@ static int __create_free_space_inode(struct btrfs_root *root,
	return 0;
}

int create_free_space_inode(struct btrfs_fs_info *fs_info,
			    struct btrfs_trans_handle *trans,
int create_free_space_inode(struct btrfs_trans_handle *trans,
			    struct btrfs_block_group_cache *block_group,
			    struct btrfs_path *path)
{
	int ret;
	u64 ino;

	ret = btrfs_find_free_objectid(fs_info->tree_root, &ino);
	ret = btrfs_find_free_objectid(trans->fs_info->tree_root, &ino);
	if (ret < 0)
		return ret;

	return __create_free_space_inode(fs_info->tree_root, trans, path, ino,
					 block_group->key.objectid);
	return __create_free_space_inode(trans->fs_info->tree_root, trans, path,
					 ino, block_group->key.objectid);
}

int btrfs_check_trunc_cache_free_space(struct btrfs_fs_info *fs_info,
+1 −2
Original line number Diff line number Diff line
@@ -41,8 +41,7 @@ struct btrfs_io_ctl;
struct inode *lookup_free_space_inode(struct btrfs_fs_info *fs_info,
				      struct btrfs_block_group_cache
				      *block_group, struct btrfs_path *path);
int create_free_space_inode(struct btrfs_fs_info *fs_info,
			    struct btrfs_trans_handle *trans,
int create_free_space_inode(struct btrfs_trans_handle *trans,
			    struct btrfs_block_group_cache *block_group,
			    struct btrfs_path *path);