diff options
author | 2025-03-26 10:41:33 -0400 | |
---|---|---|
committer | 2025-03-29 13:26:13 -0400 | |
commit | 6d77ce4a273b319f6e9e8d2b6b2415a13bdea66d (patch) | |
tree | 2483d9406f7e4a8a9cb49ed02a749f145d37274f /fs/bcachefs/sb-errors_format.h | |
parent | bcachefs: bch2_count_fsck_err() (diff) | |
download | wireguard-linux-6d77ce4a273b319f6e9e8d2b6b2415a13bdea66d.tar.xz wireguard-linux-6d77ce4a273b319f6e9e8d2b6b2415a13bdea66d.zip |
bcachefs: Better printing of inconsistency errors
Build up and emit the error message for an inconsistency error all at
once, instead of spread over multiple printk calls, so they're not
jumbled in the dmesg log.
Also, add better indenting.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to '')
-rw-r--r-- | fs/bcachefs/sb-errors_format.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/bcachefs/sb-errors_format.h b/fs/bcachefs/sb-errors_format.h index 1736abea9ed1..5d43e3504386 100644 --- a/fs/bcachefs/sb-errors_format.h +++ b/fs/bcachefs/sb-errors_format.h @@ -5,8 +5,7 @@ enum bch_fsck_flags { FSCK_CAN_FIX = 1 << 0, FSCK_CAN_IGNORE = 1 << 1, - FSCK_NO_RATELIMIT = 1 << 2, - FSCK_AUTOFIX = 1 << 3, + FSCK_AUTOFIX = 1 << 2, }; #define BCH_SB_ERRS() \ |