Commit 845cffed authored by Kent Overstreet's avatar Kent Overstreet

bcachefs: Add a debug assert

Chasing down a strange locking bug.
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 84a37cbf
......@@ -1110,6 +1110,9 @@ static int btree_path_traverse_one(struct btree_trans *trans,
path->level = btree_path_up_until_good_node(trans, path, 0);
EBUG_ON(btree_path_node(path, path->level) &&
!btree_node_locked(path, path->level));
/*
* Note: path->nodes[path->level] may be temporarily NULL here - that
* would indicate to other code that we got to the end of the btree,
......
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