45 lines
1.8 KiB
Diff
45 lines
1.8 KiB
Diff
From b7b7f5ab552920578736a6a25cb370df0096d1df Mon Sep 17 00:00:00 2001
|
|
From: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Date: Thu, 28 Nov 2024 16:09:15 -0500
|
|
Subject: [PATCH 139/233] bcachefs: mark more errors AUTOFIX
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
mark errors as autofix where syzbot has hit the repair paths
|
|
|
|
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Signed-off-by: Alexander Miroshnichenko <alex@millerson.name>
|
|
---
|
|
fs/bcachefs/sb-errors_format.h | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/fs/bcachefs/sb-errors_format.h b/fs/bcachefs/sb-errors_format.h
|
|
index e73d1c60198e..382fcafa815a 100644
|
|
--- a/fs/bcachefs/sb-errors_format.h
|
|
+++ b/fs/bcachefs/sb-errors_format.h
|
|
@@ -124,9 +124,9 @@ enum bch_fsck_flags {
|
|
x(alloc_key_stripe_redundancy_wrong, 111, FSCK_AUTOFIX) \
|
|
x(bucket_sector_count_overflow, 112, 0) \
|
|
x(bucket_metadata_type_mismatch, 113, 0) \
|
|
- x(need_discard_key_wrong, 114, 0) \
|
|
- x(freespace_key_wrong, 115, 0) \
|
|
- x(freespace_hole_missing, 116, 0) \
|
|
+ x(need_discard_key_wrong, 114, FSCK_AUTOFIX) \
|
|
+ x(freespace_key_wrong, 115, FSCK_AUTOFIX) \
|
|
+ x(freespace_hole_missing, 116, FSCK_AUTOFIX) \
|
|
x(bucket_gens_val_size_bad, 117, 0) \
|
|
x(bucket_gens_key_wrong, 118, FSCK_AUTOFIX) \
|
|
x(bucket_gens_hole_wrong, 119, FSCK_AUTOFIX) \
|
|
@@ -288,7 +288,7 @@ enum bch_fsck_flags {
|
|
x(btree_root_unreadable_and_scan_found_nothing, 263, 0) \
|
|
x(snapshot_node_missing, 264, 0) \
|
|
x(dup_backpointer_to_bad_csum_extent, 265, 0) \
|
|
- x(btree_bitmap_not_marked, 266, 0) \
|
|
+ x(btree_bitmap_not_marked, 266, FSCK_AUTOFIX) \
|
|
x(sb_clean_entry_overrun, 267, 0) \
|
|
x(btree_ptr_v2_written_0, 268, 0) \
|
|
x(subvol_snapshot_bad, 269, 0) \
|
|
--
|
|
2.45.2
|
|
|