Commit 7e4443d9 authored by Nikolay Borisov's avatar Nikolay Borisov Committed by David Sterba

btrfs: Don't pass fs_info to commit_fs_roots

We already pass the transaction handle which has a reference to the
fs_info. No functional changes.
Signed-off-by: default avatarNikolay Borisov <nborisov@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent e5c304e6
...@@ -1257,9 +1257,9 @@ void btrfs_add_dead_root(struct btrfs_root *root) ...@@ -1257,9 +1257,9 @@ void btrfs_add_dead_root(struct btrfs_root *root)
/* /*
* update all the cowonly tree roots on disk * update all the cowonly tree roots on disk
*/ */
static noinline int commit_fs_roots(struct btrfs_trans_handle *trans, static noinline int commit_fs_roots(struct btrfs_trans_handle *trans)
struct btrfs_fs_info *fs_info)
{ {
struct btrfs_fs_info *fs_info = trans->fs_info;
struct btrfs_root *gang[8]; struct btrfs_root *gang[8];
int i; int i;
int ret; int ret;
...@@ -1377,7 +1377,7 @@ static int qgroup_account_snapshot(struct btrfs_trans_handle *trans, ...@@ -1377,7 +1377,7 @@ static int qgroup_account_snapshot(struct btrfs_trans_handle *trans,
*/ */
mutex_lock(&fs_info->tree_log_mutex); mutex_lock(&fs_info->tree_log_mutex);
ret = commit_fs_roots(trans, fs_info); ret = commit_fs_roots(trans);
if (ret) if (ret)
goto out; goto out;
ret = btrfs_qgroup_account_extents(trans, fs_info); ret = btrfs_qgroup_account_extents(trans, fs_info);
...@@ -2163,7 +2163,7 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans) ...@@ -2163,7 +2163,7 @@ int btrfs_commit_transaction(struct btrfs_trans_handle *trans)
*/ */
mutex_lock(&fs_info->tree_log_mutex); mutex_lock(&fs_info->tree_log_mutex);
ret = commit_fs_roots(trans, fs_info); ret = commit_fs_roots(trans);
if (ret) { if (ret) {
mutex_unlock(&fs_info->tree_log_mutex); mutex_unlock(&fs_info->tree_log_mutex);
mutex_unlock(&fs_info->reloc_mutex); mutex_unlock(&fs_info->reloc_mutex);
......
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