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-02 15:53:20 -0400 |
commit | 14a12362bb22b3735c51ecdb712570a12992a695 (patch) | |
tree | d20d8d3ba2a9931ddf211cd444886d7ea841c736 | |
parent | e02a6a521ba07a404c589f2873fcd9cb8189c76e (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; |