diff mbox series

[5/6] xfs_scrub: any inconsistency in metadata should trigger difficulty warnings

Message ID 167243869434.715119.17953400209830846198.stgit@magnolia (mailing list archive)
State Superseded
Headers show
Series xfs_scrub: improve warnings about difficult repairs | expand

Commit Message

Darrick J. Wong Dec. 30, 2022, 10:18 p.m. UTC
From: Darrick J. Wong <djwong@kernel.org>

Any inconsistency in the space metadata can be a sign that repairs will
be difficult, so set off the warning if there were cross referencing
problems too.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
---
 scrub/repair.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scrub/repair.c b/scrub/repair.c
index cb0ca50a18e..6be5d7684b3 100644
--- a/scrub/repair.c
+++ b/scrub/repair.c
@@ -311,7 +311,9 @@  action_list_difficulty(
 	unsigned int			ret = 0;
 
 	list_for_each_entry_safe(aitem, n, &alist->list, list) {
-		if (!(aitem->flags & XFS_SCRUB_OFLAG_CORRUPT))
+		if (!(aitem->flags & (XFS_SCRUB_OFLAG_CORRUPT |
+				      XFS_SCRUB_OFLAG_XCORRUPT |
+				      XFS_SCRUB_OFLAG_XFAIL)))
 			continue;
 
 		switch (aitem->type) {