summaryrefslogtreecommitdiff
path: root/libbcachefs/debug.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-10-11 22:54:16 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2024-10-12 17:20:56 -0400
commit4e25d26a81f9daf3dd12d9f4096c6dfaf9cb3925 (patch)
treed7be41cd589b029939df9b73258b94d09d6950a2 /libbcachefs/debug.c
parent1dba68252701dbc6960c56c460554f3aed5630e2 (diff)
Update bcachefs sources to 9ab6c94002b9 bcachefs: bch2_journal_meta() takes ref on c->writes
Diffstat (limited to 'libbcachefs/debug.c')
-rw-r--r--libbcachefs/debug.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libbcachefs/debug.c b/libbcachefs/debug.c
index 45aec1af..b5de52a5 100644
--- a/libbcachefs/debug.c
+++ b/libbcachefs/debug.c
@@ -472,7 +472,9 @@ static void bch2_cached_btree_node_to_text(struct printbuf *out, struct bch_fs *
if (!out->nr_tabstops)
printbuf_tabstop_push(out, 32);
- prt_printf(out, "%px btree=%s l=%u\n", b, bch2_btree_id_str(b->c.btree_id), b->c.level);
+ prt_printf(out, "%px ", b);
+ bch2_btree_id_level_to_text(out, b->c.btree_id, b->c.level);
+ prt_printf(out, "\n");
printbuf_indent_add(out, 2);