public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "Darrick J. Wong" <djwong@kernel.org>
To: Zorro Lang <zlang@redhat.com>
Cc: hch@lst.de, linux-xfs@vger.kernel.org, fstests@vger.kernel.org
Subject: Re: [PATCH 2/4] generic/537: disable quota mount options for pre-metadir rt filesystems
Date: Mon, 24 Mar 2025 17:51:58 -0700	[thread overview]
Message-ID: <20250325005158.GJ4001511@frogsfrogsfrogs> (raw)
In-Reply-To: <20250322143754.4fe7rges6whcz47u@dell-per750-06-vm-08.rhts.eng.pek2.redhat.com>

On Sat, Mar 22, 2025 at 10:37:54PM +0800, Zorro Lang wrote:
> On Fri, Mar 21, 2025 at 02:27:54PM -0700, Darrick J. Wong wrote:
> > From: Darrick J. Wong <djwong@kernel.org>
> > 
> > Fix this regression in generic/537:
> > 
> > mount: /opt: permission denied.
> >        dmesg(1) may have more information after failed mount system call.
> > mount -o uquota,gquota,pquota, -o ro,norecovery -ortdev=/dev/sdb4 /dev/sda4 /opt failed
> > mount -o uquota,gquota,pquota, -o ro,norecovery -ortdev=/dev/sdb4 /dev/sda4 /opt failed
> > (see /var/tmp/fstests/generic/537.full for details)
> > 
> > for reasons explained in the giant comment.  TLDR: quota and rt aren't
> > compatible on older xfs filesystems so we have to work around that.
> > 
> > Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
> > ---
> >  tests/generic/537 |   17 +++++++++++++++++
> >  1 file changed, 17 insertions(+)
> > 
> > 
> > diff --git a/tests/generic/537 b/tests/generic/537
> > index f57bc1561dd57e..3be743c4133f4f 100755
> > --- a/tests/generic/537
> > +++ b/tests/generic/537
> > @@ -18,6 +18,7 @@ _begin_fstest auto quick trim
> >  
> >  # Import common functions.
> >  . ./common/filter
> > +. ./common/quota
> >  
> >  _require_scratch
> >  _require_fstrim
> > @@ -36,6 +37,22 @@ _scratch_mount -o ro >> $seqres.full 2>&1
> >  $FSTRIM_PROG -v $SCRATCH_MNT >> $seqres.full 2>&1
> >  _scratch_unmount
> >  
> > +# As of kernel commit 9f0902091c332b ("xfs: Do not allow norecovery mount with
> > +# quotacheck"), it is no longer possible to mount with "norecovery" and any
> > +# quota mount option if the quota mount options would require a metadata update
> > +# such as quotacheck.  For a pre-metadir XFS filesystem with a realtime volume
> > +# and quota-enabling options, the first two mount attempts will have succeeded
> > +# but with quotas disabled.  The mount option parsing for this next mount
> > +# attempt will see the same quota-enabling options and a lack of qflags in the
> > +# ondisk metadata and reject the mount because it thinks that will require
> > +# quotacheck.  Edit out the quota mount options for this specific
> > +# configuration.
> > +if [ "$FSTYP" = "xfs" ]; then
> > +	if [ "$USE_EXTERNAL" = "yes" ] && [ -n "$SCRATCH_RTDEV" ]; then
> > +		_qmount_option ""
> > +	fi
> > +fi
> 
> I don't know if there's a better way, maybe a _require_no_quota, or _disable_qmount?

_require_no_quota would decrease test coverage.

There is no such helper as _disable_qmount...?

> Anyway, for this single case, it's fine for me.
> 
> Reviewed-by: Zorro Lang <zlang@redhat.com>

Thanks!

--D

> > +
> >  echo "fstrim on ro mount with no log replay"
> >  norecovery="norecovery"
> >  test $FSTYP = "btrfs" && norecovery=nologreplay
> > 
> 
> 

  reply	other threads:[~2025-03-25  0:51 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-21 21:25 [PATCHBOMB v2] fstests: random fixes and 6.14 stragglers Darrick J. Wong
2025-03-21 21:26 ` [PATCHSET 1/3] fstests: test dumping fs directory trees Darrick J. Wong
2025-03-21 21:27   ` [PATCH 1/1] xfs: test filesystem recovery with rdump Darrick J. Wong
2025-03-22 20:04     ` Zorro Lang
2025-03-25  0:50       ` Darrick J. Wong
2025-03-25  1:08         ` Zorro Lang
2025-03-25  1:20           ` Darrick J. Wong
2025-03-21 21:26 ` [PATCHSET 2/3] fstests: test handling emoji filenames better Darrick J. Wong
2025-03-21 21:27   ` [PATCH 1/1] generic/45[34]: add colored emoji variants to unicode tests Darrick J. Wong
2025-03-21 21:26 ` [PATCHSET 3/3] fstests: more random fixes for v2025.03.17 Darrick J. Wong
2025-03-21 21:27   ` [PATCH 1/4] xfs/614: determine the sector size of the fs image by doing a test format Darrick J. Wong
2025-03-21 21:27   ` [PATCH 2/4] generic/537: disable quota mount options for pre-metadir rt filesystems Darrick J. Wong
2025-03-22 14:37     ` Zorro Lang
2025-03-25  0:51       ` Darrick J. Wong [this message]
2025-03-21 21:28   ` [PATCH 3/4] common/populate: drop fallocate mode 0 requirement Darrick J. Wong
2025-03-21 21:28   ` [PATCH 4/4] xfs/818: fix some design issues Darrick J. Wong
2025-03-22 15:00     ` Zorro Lang
2025-04-01 14:43 ` [PATCHSET] xfsprogs: localize the python programs Darrick J. Wong
2025-04-01 14:43   ` [PATCH 1/5] xfs_protofile: rename source code to .py.in Darrick J. Wong
2025-04-01 14:43   ` [PATCH 2/5] xfs_scrub_all: " Darrick J. Wong
2025-04-01 14:44   ` [PATCH 3/5] Makefile: inject package name/version/bugreport into pot file Darrick J. Wong
2025-04-01 14:44   ` [PATCH 4/5] xfs_protofile: add messages to localization catalog Darrick J. Wong
2025-04-01 14:44   ` [PATCH 5/5] xfs_scrub_all: localize the strings in the program Darrick J. Wong
2025-04-02  9:55   ` [PATCHSET] xfsprogs: localize the python programs Andrey Albershteyn
2025-04-02 14:00   ` Bill O'Donnell

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=20250325005158.GJ4001511@frogsfrogsfrogs \
    --to=djwong@kernel.org \
    --cc=fstests@vger.kernel.org \
    --cc=hch@lst.de \
    --cc=linux-xfs@vger.kernel.org \
    --cc=zlang@redhat.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