mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-22 00:00:03 +03:00
Update bcachefs sources to c801fa69f0 bcachefs: Fix bch_alloc_to_text()
This commit is contained in:
parent
1eae1d718c
commit
b6fca67693
@ -1 +1 @@
|
||||
7958ebe32438f58a0e59f240aa288b14efcc0964
|
||||
c801fa69f0e35d0e203af95fc59240f96a04d107
|
||||
|
@ -392,7 +392,10 @@ void bch2_alloc_to_text(struct printbuf *out, struct bch_fs *c, struct bkey_s_c
|
||||
printbuf_indent_add(out, 2);
|
||||
|
||||
prt_printf(out, "gen %u oldest_gen %u data_type %s",
|
||||
a->gen, a->oldest_gen, bch2_data_types[a->data_type]);
|
||||
a->gen, a->oldest_gen,
|
||||
a->data_type < BCH_DATA_NR
|
||||
? bch2_data_types[a->data_type]
|
||||
: "(invalid data type)");
|
||||
prt_newline(out);
|
||||
prt_printf(out, "journal_seq %llu", a->journal_seq);
|
||||
prt_newline(out);
|
||||
|
Loading…
Reference in New Issue
Block a user