summaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
authorSu Yue <suy.fnst@cn.fujitsu.com>2018-05-08 16:30:07 +0800
committerDavid Sterba <dsterba@suse.com>2018-06-07 16:37:31 +0200
commit4c2b21acaa028a0452d36df01740588d08708753 (patch)
treefd8890d6bae077ae7a457633d21808356cda2b63 /check
parentadb198aa6d02d852cf070a507659bfe6c1ef33fc (diff)
btrfs-progs: check: lowmem: remove parameter @trans of check_leaf_items
This patch removes parameter @trans of check_leaf_items(). Note: This patch and next patches cause error in lowmem repair like: "Error: Commit_root already set when starting transaction". Such error will disappear after removing @trans finished. Signed-off-by: Su Yue <suy.fnst@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'check')
-rw-r--r--check/mode-lowmem.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/check/mode-lowmem.c b/check/mode-lowmem.c
index 9f245d0d..b3a5bed2 100644
--- a/check/mode-lowmem.c
+++ b/check/mode-lowmem.c
@@ -4200,8 +4200,7 @@ out:
/*
* Main entry function to check known items and update related accounting info
*/
-static int check_leaf_items(struct btrfs_trans_handle *trans,
- struct btrfs_root *root, struct btrfs_path *path,
+static int check_leaf_items(struct btrfs_root *root, struct btrfs_path *path,
struct node_refs *nrefs, int account_bytes)
{
struct btrfs_fs_info *fs_info = root->fs_info;
@@ -4397,7 +4396,7 @@ static int walk_down_tree(struct btrfs_trans_handle *trans,
ret = process_one_leaf(root, path, nrefs,
level, ext_ref);
else
- ret = check_leaf_items(trans, root, path,
+ ret = check_leaf_items(root, path,
nrefs, account_file_data);
err |= ret;
break;