diff options
Diffstat (limited to 'fs/bcachefs/journal_reclaim.c')
-rw-r--r-- | fs/bcachefs/journal_reclaim.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/bcachefs/journal_reclaim.c b/fs/bcachefs/journal_reclaim.c index bd1885607d3e..ae747c87fcf9 100644 --- a/fs/bcachefs/journal_reclaim.c +++ b/fs/bcachefs/journal_reclaim.c @@ -1019,7 +1019,7 @@ bool bch2_journal_seq_pins_to_text(struct printbuf *out, struct journal *j, u64 pin_list = journal_seq_pin(j, *seq); prt_printf(out, "%llu: count %u\n", *seq, atomic_read(&pin_list->count)); - printbuf_indent_add(out, 2); + guard(printbuf_indent)(out); prt_printf(out, "unflushed:\n"); for (unsigned i = 0; i < ARRAY_SIZE(pin_list->unflushed); i++) @@ -1031,8 +1031,6 @@ bool bch2_journal_seq_pins_to_text(struct printbuf *out, struct journal *j, u64 list_for_each_entry(pin, &pin_list->flushed[i], list) prt_printf(out, "\t%px %ps\n", pin, pin->flush); - printbuf_indent_sub(out, 2); - return false; } |