diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-07-02 15:53:20 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-07-04 23:17:11 -0400 |
commit | 15a15ebf993caed75eff516ab7f34e40c5a4930c (patch) | |
tree | 3e1ba424861d4f9db778647538fe2c944f945bcb | |
parent | 8e548dc5728652783ba5f44fc8481ab350b7001b (diff) |
bcachefs: Add missing bch2_log_msg_start()
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | fs/bcachefs/journal_io.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/bcachefs/journal_io.c b/fs/bcachefs/journal_io.c index 3f06c4b29552..2d6ce4348a22 100644 --- a/fs/bcachefs/journal_io.c +++ b/fs/bcachefs/journal_io.c @@ -1245,6 +1245,8 @@ noinline_for_stack static void bch2_journal_print_checksum_error(struct bch_fs *c, struct journal_replay *j) { struct printbuf buf = PRINTBUF; + bch2_log_msg_start(c, &buf); + enum bch_csum_type csum_type = JSET_CSUM_TYPE(&j->j); bool have_good = false; |