Commit 7d7f71cd authored by Kent Overstreet's avatar Kent Overstreet

bcachefs: Add missing bch2_trans_begin()

this fixes a 'transaction should be locked' error in backpointers fsck
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 0f6f8f76
...@@ -770,6 +770,8 @@ static int bch2_get_btree_in_memory_pos(struct btree_trans *trans, ...@@ -770,6 +770,8 @@ static int bch2_get_btree_in_memory_pos(struct btree_trans *trans,
!((1U << btree) & btree_interior_mask)) !((1U << btree) & btree_interior_mask))
continue; continue;
bch2_trans_begin(trans);
__for_each_btree_node(trans, iter, btree, __for_each_btree_node(trans, iter, btree,
btree == start.btree ? start.pos : POS_MIN, btree == start.btree ? start.pos : POS_MIN,
0, depth, BTREE_ITER_prefetch, b, ret) { 0, depth, BTREE_ITER_prefetch, b, 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