From: Dave Chinner <david@fromorbit.com>
To: xfs@oss.sgi.com
Subject: [PATCH 2/2] repair: handle uncorrected corruptions in phase 2
Date: Wed, 9 Jul 2014 09:41:40 +1000 [thread overview]
Message-ID: <1404862900-3369-3-git-send-email-david@fromorbit.com> (raw)
In-Reply-To: <1404862900-3369-1-git-send-email-david@fromorbit.com>
From: Dave Chinner <dchinner@redhat.com>
Some of the AG header corruptions detected by the IO verifiers
cannot be corrected in phase 2 when we do the initial scan of the
AGs. Correcting some errors cannot be done until a full rebuild of
the trees is done in phase 5.
Hence we can end up with a "clean" AGF/AGI buffer but have a
EFSCORRUPTED error on the buffer. This results in an assert failing:
ASSERT(agf_dirty || agfbuf->b_error != EFSCORRUPTED);
and repair not beign able to fix the problems it has tripped over.
Hence the assert that we corrected all corruptions in the buffers
is not valid and should be removed.
Reported-by: Hans Kraus <hans.w.kraus@gmx.at>
Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
repair/scan.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/repair/scan.c b/repair/scan.c
index f29ff8d..142d8d7 100644
--- a/repair/scan.c
+++ b/repair/scan.c
@@ -1572,14 +1572,13 @@ scan_ag(
/*
* Only pay attention to CRC/verifier errors if we can correct them.
- * While there, ensure that we corrected a corruption error if the
- * verifier detected one.
+ * Note that we can get uncorrected EFSCORRUPTED errors here because
+ * the verifier will flag on out of range values that we can't correct
+ * until phase 5 when we have all the information necessary to rebuild
+ * the freespace/inode btrees. We can correct bad CRC errors
+ * immediately, though.
*/
if (!no_modify) {
- ASSERT(agi_dirty || agibuf->b_error != EFSCORRUPTED);
- ASSERT(agf_dirty || agfbuf->b_error != EFSCORRUPTED);
- ASSERT(sb_dirty || sbbuf->b_error != EFSCORRUPTED);
-
agi_dirty += (agibuf->b_error == EFSBADCRC);
agf_dirty += (agfbuf->b_error == EFSBADCRC);
sb_dirty += (sbbuf->b_error == EFSBADCRC);
--
2.0.0
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next prev parent reply other threads:[~2014-07-08 23:41 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-08 23:41 [PATCH 0/2] repair: more fixes for 3.2.1 Dave Chinner
2014-07-08 23:41 ` [PATCH 1/2] libxfs: clear the buffer error while the buffer is locked Dave Chinner
2014-07-09 8:59 ` Christoph Hellwig
2014-07-08 23:41 ` Dave Chinner [this message]
2014-07-09 9:00 ` [PATCH 2/2] repair: handle uncorrected corruptions in phase 2 Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1404862900-3369-3-git-send-email-david@fromorbit.com \
--to=david@fromorbit.com \
--cc=xfs@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox