From: "Darrick J. Wong" <djwong@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: Zorro Lang <zlang@kernel.org>,
Hans Holmberg <hans.holmberg@wdc.com>,
fstests@vger.kernel.org, linux-xfs@vger.kernel.org
Subject: Re: [PATCH 07/13] xfs: handle zoned file systems in _scratch_xfs_force_no_metadir
Date: Fri, 21 Mar 2025 08:18:33 -0700 [thread overview]
Message-ID: <20250321151833.GG2803749@frogsfrogsfrogs> (raw)
In-Reply-To: <20250321072145.1675257-8-hch@lst.de>
On Fri, Mar 21, 2025 at 08:21:36AM +0100, Christoph Hellwig wrote:
> Zoned file systems required the metadir feature. If the tests are run
> on a conventional block device as the RT device, we can simply remove
> the zoned flag an run the test, but if the file systems sits on a zoned
> block device there is no way to run a test that wants a non-metadir
> file system.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
> common/xfs | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/common/xfs b/common/xfs
> index 3663e4cf03bd..c1b4c5577b2b 100644
> --- a/common/xfs
> +++ b/common/xfs
> @@ -2049,6 +2049,12 @@ _scratch_xfs_find_metafile()
> # Force metadata directories off.
> _scratch_xfs_force_no_metadir()
> {
> + _require_non_zoned_device $SCRATCH_DEV
> + # metadir is required for when the rt device is on a zoned device
> + if [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ]; then
> + _require_non_zoned_device $SCRATCH_RTDEV
> + fi
> +
> # Remove any mkfs-time quota options because those are only supported
> # with metadir=1
> for opt in uquota gquota pquota; do
> @@ -2068,6 +2074,12 @@ _scratch_xfs_force_no_metadir()
> # that option.
> if grep -q 'metadir=' $MKFS_XFS_PROG; then
> MKFS_OPTIONS="-m metadir=0 $MKFS_OPTIONS"
> + fi
Dumb nit: ^^^^^^ extra space here
> +
> + # Replace any explicit zonedr option with zoned=0
> + if echo "$MKFS_OPTIONS" | grep -q 'zoned='; then
> + MKFS_OPTIONS="$(echo "$MKFS_OPTIONS" | sed -e 's/zoned=[0-9]*/zoned=0/g' -e 's/zoned\([, ]\)/zoned=0\1/g')"
With that fixed,
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
--D
> + return
> fi
> }
>
> --
> 2.45.2
>
>
next prev parent reply other threads:[~2025-03-21 15:18 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-21 7:21 initial xfstests support for zoned XFS v2 Christoph Hellwig
2025-03-21 7:21 ` [PATCH 01/13] xfs/177: force a small file system size Christoph Hellwig
2025-03-21 7:21 ` [PATCH 02/13] xfs/419: use _scratch_mkfs_xfs Christoph Hellwig
2025-03-21 7:21 ` [PATCH 03/13] xfs/540: " Christoph Hellwig
2025-03-21 7:21 ` [PATCH 04/13] common: extend the zoned device checks in _require_dm_target Christoph Hellwig
2025-03-21 7:21 ` [PATCH 05/13] common: allow _require_non_zoned_device without an argument Christoph Hellwig
2025-03-21 15:17 ` Darrick J. Wong
2025-03-21 7:21 ` [PATCH 06/13] xfs: add helpers to require zoned/non-zoned file systems Christoph Hellwig
2025-03-21 7:21 ` [PATCH 07/13] xfs: handle zoned file systems in _scratch_xfs_force_no_metadir Christoph Hellwig
2025-03-21 15:18 ` Darrick J. Wong [this message]
2025-03-21 7:21 ` [PATCH 08/13] xfs: no quota support with internal rtdev Christoph Hellwig
2025-03-21 7:21 ` [PATCH 09/13] xfs: xfs_copy doesn't like RT sections Christoph Hellwig
2025-03-21 15:20 ` Darrick J. Wong
2025-03-21 7:21 ` [PATCH 10/13] xfs: skip filestreams tests on internal RT devices Christoph Hellwig
2025-03-21 7:21 ` [PATCH 11/13] xfs: skip various tests when using the zoned allocator Christoph Hellwig
2025-03-21 15:21 ` Darrick J. Wong
2025-03-21 7:21 ` [PATCH 12/13] xfs/049: skip on zoned devices Christoph Hellwig
2025-03-21 15:21 ` Darrick J. Wong
2025-03-21 7:21 ` [PATCH 13/13] xfs/206: filter out the zoned line from mkfs output 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=20250321151833.GG2803749@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=fstests@vger.kernel.org \
--cc=hans.holmberg@wdc.com \
--cc=hch@lst.de \
--cc=linux-xfs@vger.kernel.org \
--cc=zlang@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