summaryrefslogtreecommitdiff
path: root/fs/bcachefs/btree_locking.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-06-18 20:25:09 +0300
committerKent Overstreet <kent.overstreet@linux.dev>2023-10-23 00:10:04 +0300
commit25aa8c2167306a3919fb6503494cd6078e33a71e (patch)
treed53f42f9a05600688a64c75374c50c9610c469ba /fs/bcachefs/btree_locking.c
parent45a1ab57ddb53a8b392baab2142c909154a8d37c (diff)
downloadlinux-25aa8c2167306a3919fb6503494cd6078e33a71e.tar.xz
bcachefs: bch2_trans_unlock_noassert()
This fixes a spurious assert in the btree node read path. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/btree_locking.c')
-rw-r--r--fs/bcachefs/btree_locking.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/bcachefs/btree_locking.c b/fs/bcachefs/btree_locking.c
index 23a6d63223af..dc3aa70a0380 100644
--- a/fs/bcachefs/btree_locking.c
+++ b/fs/bcachefs/btree_locking.c
@@ -715,6 +715,14 @@ int bch2_trans_relock_notrace(struct btree_trans *trans)
return 0;
}
+void bch2_trans_unlock_noassert(struct btree_trans *trans)
+{
+ struct btree_path *path;
+
+ trans_for_each_path(trans, path)
+ __bch2_btree_path_unlock(trans, path);
+}
+
void bch2_trans_unlock(struct btree_trans *trans)
{
struct btree_path *path;