32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From 46522a75a47ed8db6da54f37c4dcf934e12fe540 Mon Sep 17 00:00:00 2001
|
|
From: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Date: Mon, 25 Nov 2024 00:21:27 -0500
|
|
Subject: [PATCH 123/233] bcachefs: Bad btree roots are now autofix
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Signed-off-by: Alexander Miroshnichenko <alex@millerson.name>
|
|
---
|
|
fs/bcachefs/sb-errors_format.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/fs/bcachefs/sb-errors_format.h b/fs/bcachefs/sb-errors_format.h
|
|
index d45d0789f1b1..89d9dc2c859b 100644
|
|
--- a/fs/bcachefs/sb-errors_format.h
|
|
+++ b/fs/bcachefs/sb-errors_format.h
|
|
@@ -68,8 +68,8 @@ enum bch_fsck_flags {
|
|
x(btree_node_bkey_bad_format, 55, 0) \
|
|
x(btree_node_bad_bkey, 56, 0) \
|
|
x(btree_node_bkey_out_of_order, 57, 0) \
|
|
- x(btree_root_bkey_invalid, 58, 0) \
|
|
- x(btree_root_read_error, 59, 0) \
|
|
+ x(btree_root_bkey_invalid, 58, FSCK_AUTOFIX) \
|
|
+ x(btree_root_read_error, 59, FSCK_AUTOFIX) \
|
|
x(btree_root_bad_min_key, 60, 0) \
|
|
x(btree_root_bad_max_key, 61, 0) \
|
|
x(btree_node_read_error, 62, 0) \
|
|
--
|
|
2.45.2
|
|
|