linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dave Chinner <david@fromorbit.com>
To: "Darrick J. Wong" <djwong@kernel.org>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 05/16] xfs: replace xfs_sb_version checks with feature flag checks
Date: Wed, 18 Aug 2021 11:33:41 +1000	[thread overview]
Message-ID: <20210818013341.GP3657114@dread.disaster.area> (raw)
In-Reply-To: <20210811221329.GK3601443@magnolia>

On Wed, Aug 11, 2021 at 03:13:29PM -0700, Darrick J. Wong wrote:
> On Tue, Aug 10, 2021 at 03:24:40PM +1000, Dave Chinner wrote:
> > From: Dave Chinner <dchinner@redhat.com>
> > 
> > Convert the xfs_sb_version_hasfoo() to checks against
> > mp->m_features. Checks of the superblock itself during disk
> > operations (e.g. in the read/write verifiers and the to/from disk
> > formatters) are not converted - they operate purely on the
> > superblock state. Everything else should use the mount features.
> > 
> > Large parts of this conversion were done with sed with commands like
> > this:
> > 
> > for f in `git grep -l xfs_sb_version_has fs/xfs/*.c`; do
> > 	sed -i -e 's/xfs_sb_version_has\(.*\)(&\(.*\)->m_sb)/xfs_has_\1(\2)/' $f
> > done
> > 
> > With manual cleanups for things like "xfs_has_extflgbit" and other
> > little inconsistencies in naming.
> > 
> > The result is ia lot less typing to check features and an XFS binary
> > size reduced by a bit over 3kB:
> > 
> > $ size -t fs/xfs/built-in.a
> > 	text	   data	    bss	    dec	    hex	filenam
> > before	1130866  311352     484 1442702  16038e (TOTALS)
> > after	1127727  311352     484 1439563  15f74b (TOTALS)
> > 
> > Signed-off-by: Dave Chinner <dchinner@redhat.com>
> > Reviewed-by: Christoph Hellwig <hch@lst.de>
> > Reviewed-by: Darrick J. Wong <djwong@kernel.org>
> > ---
> 
> <snip>
> 
> > diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c
> > index 699066fb9052..7361830163d7 100644
> > --- a/fs/xfs/xfs_rtalloc.c
> > +++ b/fs/xfs/xfs_rtalloc.c
> > @@ -951,8 +951,7 @@ xfs_growfs_rt(
> >  		return -EINVAL;
> >  
> >  	/* Unsupported realtime features. */
> > -	if (xfs_sb_version_hasrmapbt(&mp->m_sb) ||
> > -	    xfs_sb_version_hasreflink(&mp->m_sb))
> > +	if (xfs_has_rmapbt(mp) || xfs_has_reflink(mp))
> 
> A regression test that I developed to test the act of adding a realtime
> volume to an existing filesystem exposed the following failure:
> 
> --- /tmp/fstests/tests/xfs/779.out      2021-08-08 08:47:08.535033170 -0700
> +++ /var/tmp/fstests/xfs/779.out.bad    2021-08-11 14:54:18.389346401 -0700
> @@ -1,2 +1,4 @@
>  QA output created by 779
> +/opt/a is not a realtime file?
> +expected file extszhint 0, got 12288
>  Silence is golden
> 
> Since this test is not yet upstream, I will describe the sequence of
> events:
> 
> 1. Suppress SCRATCH_RTDEV when invoking _scratch_mkfs.  This creates a
>    filesystem with no realtime volume attached.
> 2. Mount the fs with SCRATCH_RTDEV in the mount options.  The rt volume
>    still has not been attached.
> 3. Set RTINHERIT (and EXTSZINHERIT) on the root directory.  Make sure
>    the extent size hint is not a multiple of the rt extent size.
> 4. Call xfs_growfs -r to add the rt volume into the filesystem.
> 5. Create a file.  Due to RTINHERIT, the new file should be a realtime
>    file.
> 6. Check that the file is actually a realtime file and does not have an
>    extent size hint.
> 
> The regression of course happens in step 6, because xfs_growfs_rt can
> add a realtime volume to an existing filesystem.  Prior to this patch,
> the "has realtime?" predicate always looked at the mp->m_sb.  Now that
> the feature state has been turned into a separate xfs_mount state, we
> must set the REALTIME m_feature flag explicitly.
> 
> The following patch solves the regression:

I've added a variant of this to the patch - it just sets
XFS_FEAT_REALTIME directly without the "xfs_add_realtime()" wrapper.

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

  reply	other threads:[~2021-08-18  1:33 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-10  5:24 [PATCH 00/16 v2] xfs: rework feature flags Dave Chinner
2021-08-10  5:24 ` [PATCH 01/16] xfs: sb verifier doesn't handle uncached sb buffer Dave Chinner
2021-08-11  0:34   ` Darrick J. Wong
2021-08-12  7:52   ` Christoph Hellwig
2021-08-10  5:24 ` [PATCH 02/16] xfs: rename xfs_has_attr() Dave Chinner
2021-08-12  8:03   ` Christoph Hellwig
2021-08-18  0:56     ` Dave Chinner
2021-08-18  2:56       ` Darrick J. Wong
2021-08-10  5:24 ` [PATCH 03/16] xfs: rework attr2 feature and mount options Dave Chinner
2021-08-11 23:04   ` Darrick J. Wong
2021-08-18  1:18     ` Dave Chinner
2021-08-12  0:27   ` Darrick J. Wong
2021-08-18  1:25     ` Dave Chinner
2021-08-10  5:24 ` [PATCH 04/16] xfs: reflect sb features in xfs_mount Dave Chinner
2021-08-10  5:24 ` [PATCH 05/16] xfs: replace xfs_sb_version checks with feature flag checks Dave Chinner
2021-08-11 22:13   ` Darrick J. Wong
2021-08-18  1:33     ` Dave Chinner [this message]
2021-08-10  5:24 ` [PATCH 06/16] xfs: consolidate mount option features in m_features Dave Chinner
2021-08-12  8:07   ` Christoph Hellwig
2021-08-10  5:24 ` [PATCH 07/16] xfs: convert mount flags to features Dave Chinner
2021-08-11  0:38   ` Darrick J. Wong
2021-08-11 23:28     ` Darrick J. Wong
2021-08-18  2:25       ` Dave Chinner
2021-08-10  5:24 ` [PATCH 08/16] xfs: convert remaining mount flags to state flags Dave Chinner
2021-08-10  5:24 ` [PATCH 09/16] xfs: replace XFS_FORCED_SHUTDOWN with xfs_is_shutdown Dave Chinner
2021-08-10  5:24 ` [PATCH 10/16] xfs: convert xfs_fs_geometry to use mount feature checks Dave Chinner
2021-08-11  0:39   ` Darrick J. Wong
2021-08-10  5:24 ` [PATCH 11/16] xfs: open code sb verifier " Dave Chinner
2021-08-11  0:48   ` Darrick J. Wong
2021-08-10  5:24 ` [PATCH 12/16] xfs: convert scrub to use mount-based " Dave Chinner
2021-08-10  5:24 ` [PATCH 13/16] xfs: convert xfs_sb_version_has checks to use mount features Dave Chinner
2021-08-10  5:24 ` [PATCH 14/16] xfs: remove unused xfs_sb_version_has wrappers Dave Chinner
2021-08-10  5:24 ` [PATCH 15/16] xfs: introduce xfs_sb_is_v5 helper Dave Chinner
2021-08-10  5:24 ` [PATCH 16/16] xfs: kill xfs_sb_version_has_v3inode() Dave Chinner
  -- strict thread matches above, loose matches on Subject: below --
2021-08-18 23:59 [PATCH 00/16 v3] xfs: rework feature flags Dave Chinner
2021-08-18 23:59 ` [PATCH 05/16] xfs: replace xfs_sb_version checks with feature flag checks Dave Chinner
2021-07-14  4:18 [PATCH 00/16] xfs: rework feature flags Dave Chinner
2021-07-14  4:19 ` [PATCH 05/16] xfs: replace xfs_sb_version checks with feature flag checks Dave Chinner
2021-07-14  7:03   ` Christoph Hellwig
2021-07-14 22:57   ` Darrick J. Wong

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=20210818013341.GP3657114@dread.disaster.area \
    --to=david@fromorbit.com \
    --cc=djwong@kernel.org \
    --cc=linux-xfs@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).