Commit 39db232d authored by David Sterba's avatar David Sterba

btrfs: get fs_info from trans in write_one_cache_group

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 f9756261
...@@ -3315,10 +3315,10 @@ int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root, ...@@ -3315,10 +3315,10 @@ int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
} }
static int write_one_cache_group(struct btrfs_trans_handle *trans, static int write_one_cache_group(struct btrfs_trans_handle *trans,
struct btrfs_fs_info *fs_info,
struct btrfs_path *path, struct btrfs_path *path,
struct btrfs_block_group_cache *cache) struct btrfs_block_group_cache *cache)
{ {
struct btrfs_fs_info *fs_info = trans->fs_info;
int ret; int ret;
struct btrfs_root *extent_root = fs_info->extent_root; struct btrfs_root *extent_root = fs_info->extent_root;
unsigned long bi; unsigned long bi;
...@@ -3666,8 +3666,7 @@ int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans) ...@@ -3666,8 +3666,7 @@ int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
} }
} }
if (!ret) { if (!ret) {
ret = write_one_cache_group(trans, fs_info, ret = write_one_cache_group(trans, path, cache);
path, cache);
/* /*
* Our block group might still be attached to the list * Our block group might still be attached to the list
* of new block groups in the transaction handle of some * of new block groups in the transaction handle of some
...@@ -3817,8 +3816,7 @@ int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, ...@@ -3817,8 +3816,7 @@ int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
} }
} }
if (!ret) { if (!ret) {
ret = write_one_cache_group(trans, fs_info, ret = write_one_cache_group(trans, path, cache);
path, cache);
/* /*
* One of the free space endio workers might have * One of the free space endio workers might have
* created a new block group while updating a free space * created a new block group while updating a free space
...@@ -3835,8 +3833,7 @@ int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans, ...@@ -3835,8 +3833,7 @@ int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
if (ret == -ENOENT) { if (ret == -ENOENT) {
wait_event(cur_trans->writer_wait, wait_event(cur_trans->writer_wait,
atomic_read(&cur_trans->num_writers) == 1); atomic_read(&cur_trans->num_writers) == 1);
ret = write_one_cache_group(trans, fs_info, ret = write_one_cache_group(trans, path, cache);
path, cache);
} }
if (ret) if (ret)
btrfs_abort_transaction(trans, ret); btrfs_abort_transaction(trans, ret);
......
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