summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorAlan Huang <mmpgouride@gmail.com>2025-02-13 02:11:01 +0800
committerKent Overstreet <kent.overstreet@linux.dev>2025-02-12 18:40:19 -0500
commit531323a2efc3fbe20b540e3f41ecc94d68e74b76 (patch)
tree846ef4ca51ececdf272ef7b98ff229f465a0377d /fs
parent9cf6b84b71adb97f3c19476ebb5a42228fad89b5 (diff)
bcachefs: Pass _orig_restart_count to trans_was_restarted
_orig_restart_count is unused now, according to the logic, trans_was_restarted should be using _orig_restart_count. Signed-off-by: Alan Huang <mmpgouride@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs')
-rw-r--r--fs/bcachefs/btree_iter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/btree_iter.h b/fs/bcachefs/btree_iter.h
index 8c16d9a3ec1d..b96157f3dc9c 100644
--- a/fs/bcachefs/btree_iter.h
+++ b/fs/bcachefs/btree_iter.h
@@ -751,7 +751,7 @@ transaction_restart: \
if (!_ret2) \
bch2_trans_verify_not_restarted(_trans, _restart_count);\
\
- _ret2 ?: trans_was_restarted(_trans, _restart_count); \
+ _ret2 ?: trans_was_restarted(_trans, _orig_restart_count); \
})
#define for_each_btree_key_max_continue(_trans, _iter, \