From 04855a16d2cd6dbf01bab5a14efe085827478f13 Mon Sep 17 00:00:00 2001 From: Su Yue Date: Tue, 8 May 2018 16:30:11 +0800 Subject: btrfs-progs: check: lowmem: end of removing parameters @trans in lowmem Remove @trans in check_chunks_and_extents_lowmem(). After this patch, lowmem repair works again. Signed-off-by: Su Yue Signed-off-by: David Sterba --- check/mode-lowmem.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'check/mode-lowmem.c') diff --git a/check/mode-lowmem.c b/check/mode-lowmem.c index ea6163a6..56eb9545 100644 --- a/check/mode-lowmem.c +++ b/check/mode-lowmem.c @@ -4933,7 +4933,6 @@ out: */ int check_chunks_and_extents_lowmem(struct btrfs_fs_info *fs_info) { - struct btrfs_trans_handle *trans = NULL; struct btrfs_path path; struct btrfs_key old_key; struct btrfs_key key; @@ -4945,14 +4944,6 @@ int check_chunks_and_extents_lowmem(struct btrfs_fs_info *fs_info) root = fs_info->fs_root; - if (repair) { - trans = btrfs_start_transaction(fs_info->extent_root, 1); - if (IS_ERR(trans)) { - error("failed to start transaction before check"); - return PTR_ERR(trans); - } - } - root1 = root->fs_info->chunk_root; ret = check_btrfs_root(root1, 0, 1); err |= ret; @@ -5022,10 +5013,6 @@ out: err &= ~BG_ACCOUNTING_ERROR; } - if (trans) - btrfs_commit_transaction(trans, root->fs_info->extent_root); - btrfs_release_path(&path); - return err; } -- cgit v1.2.3