From: Dave Chinner <david@fromorbit.com>
To: Eric Sandeen <sandeen@sandeen.net>
Cc: Carlos Maiolino <cmaiolino@redhat.com>, linux-xfs@vger.kernel.org
Subject: Re: [PATCH 2/2] xfs: Bypass sb alignment checks when custom values are used
Date: Tue, 2 Jun 2020 09:35:57 +1000 [thread overview]
Message-ID: <20200601233557.GD2040@dread.disaster.area> (raw)
In-Reply-To: <3065de17-4ae7-392b-7dfe-9b9b91db9743@sandeen.net>
On Mon, Jun 01, 2020 at 05:06:36PM -0500, Eric Sandeen wrote:
> On 6/1/20 4:21 PM, Dave Chinner wrote:
> > The user was not responsible for this mess (combination of missing
> > validation in XFS code and bad storage firmware providing garbage)
> > so we should not put them on the hook for fixing it. We can do it
> > easily and without needing user intervention and so that's what we
> > should do.
>
> FWIW, I have a working xfs_repair that fixes bad geometry as well,
> I ... guess that's probably still useful?
Yes, repair should definitely be proactive on this.
> It was doing similar things to what you suggested, though I wasn't
> rounding swidth up, I was setting it equal to sunit. *shrug* rounding
> up is maybe better; the problematic devices usually have width < unit
> so rounding up will be the same as setting equal :)
Yup, that's exactly why I suggested rounding up :)
> phase1()
>
> + /*
> + * Now see if there's a problem with the stripe width; if it's bad,
> + * we just set it equal to the stripe unit as a harmless alternative.
> + */
> + if (xfs_sb_version_hasdalign(sb)) {
> + if ((sb->sb_unit && !sb->sb_width) ||
> + (sb->sb_width && sb->sb_unit && sb->sb_width % sb->sb_unit)) {
> + sb->sb_width = sb->sb_unit;
> + primary_sb_modified = 1;
> + geometry_modified = 1;
> + do_warn(
> +_("superblock has a bad stripe width, resetting to %d\n"),
> + sb->sb_width);
> + }
> + }
>
> I also had to more or less ignore bad swidths throughout repair (and in
> xfs_validate_sb_common IIRC) to be able to get this far. If repair thinks
> a superblock is bad, it goes looking for otheres to replace it and if the
> bad geometry came from the device, they are all equally "bad..."
Yeah. Which leads me to ask: should the kernel be updating the
secondary superblocks when it finds bad geometry in the primary, or
overwrites the geometry with user supplied info?
(I have a vague recollection of being asked something about this on
IRC and me muttering something about CXFS only trashing the primary
superblock...)
Cheers,
Dave.
--
Dave Chinner
david@fromorbit.com
next prev parent reply other threads:[~2020-06-01 23:36 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-01 14:01 [PATCH 0/2] Bypass sb geometry if custom alignment is supplied on mount Carlos Maiolino
2020-06-01 14:01 ` [PATCH 1/2] xfs: Fix xfs_mount sunit and swidth types Carlos Maiolino
2020-06-22 17:15 ` Darrick J. Wong
2020-06-01 14:01 ` [PATCH 2/2] xfs: Bypass sb alignment checks when custom values are used Carlos Maiolino
2020-06-01 21:21 ` Dave Chinner
2020-06-01 22:06 ` Eric Sandeen
2020-06-01 23:35 ` Dave Chinner [this message]
2020-06-01 23:40 ` Eric Sandeen
2020-06-02 9:18 ` Carlos Maiolino
2020-06-02 23:12 ` Dave Chinner
2020-06-03 0:14 ` Darrick J. Wong
2020-06-03 7:58 ` Carlos Maiolino
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=20200601233557.GD2040@dread.disaster.area \
--to=david@fromorbit.com \
--cc=cmaiolino@redhat.com \
--cc=linux-xfs@vger.kernel.org \
--cc=sandeen@sandeen.net \
/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