diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2023-06-18 19:25:09 +0200 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2023-10-22 23:10:04 +0200 |
commit | 25aa8c2167306a3919fb6503494cd6078e33a71e (patch) | |
tree | d53f42f9a05600688a64c75374c50c9610c469ba /fs/bcachefs/btree_locking.h | |
parent | bcachefs: Fix bch2_btree_update_start() (diff) | |
download | linux-25aa8c2167306a3919fb6503494cd6078e33a71e.tar.xz linux-25aa8c2167306a3919fb6503494cd6078e33a71e.zip |
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.h')
-rw-r--r-- | fs/bcachefs/btree_locking.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/bcachefs/btree_locking.h b/fs/bcachefs/btree_locking.h index d3837c25f110..3b537e451d2c 100644 --- a/fs/bcachefs/btree_locking.h +++ b/fs/bcachefs/btree_locking.h @@ -21,6 +21,8 @@ void bch2_assert_btree_nodes_not_locked(void); static inline void bch2_assert_btree_nodes_not_locked(void) {} #endif +void bch2_trans_unlock_noassert(struct btree_trans *); + static inline bool is_btree_node(struct btree_path *path, unsigned l) { return l < BTREE_MAX_DEPTH && !IS_ERR_OR_NULL(path->l[l].b); |