From 61060062b5523ca60b22f21a69658364bc9e7b20 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Wed, 20 Dec 2023 08:53:46 -0800 Subject: [PATCH] xfs_scrub: don't retry unsupported optimizations If the kernel says it doesn't support optimizing a data structure, we should mark it done and move on. This is much better than requeuing the repair, in which case it will likely keep failing. Eventually these requeued repairs end up in the single-threaded last resort at the end of phase 4, which makes things /very/ slow. Signed-off-by: Darrick J. Wong Reviewed-by: Carlos Maiolino Reviewed-by: Christoph Hellwig --- scrub/scrub.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/scrub/scrub.c b/scrub/scrub.c index e83d0d9ce..1a4506875 100644 --- a/scrub/scrub.c +++ b/scrub/scrub.c @@ -668,6 +668,15 @@ _("Filesystem is shut down, aborting.")); return CHECK_ABORT; case ENOTTY: case EOPNOTSUPP: + /* + * If the kernel cannot perform the optimization that we + * requested; or we forced a repair but the kernel doesn't know + * how to perform the repair, don't requeue the request. Mark + * it done and move on. + */ + if (is_unoptimized(&oldm) || + debug_tweak_on("XFS_SCRUB_FORCE_REPAIR")) + return CHECK_DONE; /* * If we're in no-complain mode, requeue the check for * later. It's possible that an error in another @@ -678,13 +687,6 @@ _("Filesystem is shut down, aborting.")); */ if (!(repair_flags & XRM_COMPLAIN_IF_UNFIXED)) return CHECK_RETRY; - /* - * If we forced repairs or this is a preen, don't - * error out if the kernel doesn't know how to fix. - */ - if (is_unoptimized(&oldm) || - debug_tweak_on("XFS_SCRUB_FORCE_REPAIR")) - return CHECK_DONE; fallthrough; case EINVAL: /* Kernel doesn't know how to repair this? */ -- 2.39.2