From: Gao Xiang <hsiangkao@redhat.com>
To: linux-xfs@vger.kernel.org, fstests@vger.kernel.org
Cc: "Darrick J. Wong" <djwong@kernel.org>,
Zorro Lang <zlang@redhat.com>, Eryu Guan <guan@eryu.me>,
Gao Xiang <hsiangkao@redhat.com>
Subject: [PATCH v5 1/3] common/xfs: add _require_xfs_scratch_shrink helper
Date: Tue, 11 May 2021 15:39:43 +0800 [thread overview]
Message-ID: <20210511073945.906127-2-hsiangkao@redhat.com> (raw)
In-Reply-To: <20210511073945.906127-1-hsiangkao@redhat.com>
In order to detect whether the current kernel supports XFS shrinking.
Signed-off-by: Gao Xiang <hsiangkao@redhat.com>
---
common/xfs | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/common/xfs b/common/xfs
index 69f76d6e..184aa01e 100644
--- a/common/xfs
+++ b/common/xfs
@@ -766,6 +766,26 @@ _require_xfs_mkfs_without_validation()
fi
}
+_require_xfs_scratch_shrink()
+{
+ _require_scratch
+ _require_command "$XFS_GROWFS_PROG" xfs_growfs
+
+ _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs >/dev/null
+ . $tmp.mkfs
+ _scratch_mount
+ # here just to check if kernel supports, no need do more extra work
+ errmsg=$($XFS_GROWFS_PROG -D$((dblocks-1)) "$SCRATCH_MNT" 2>&1)
+ if [ "$?" -ne 0 ]; then
+ echo "$errmsg" | grep 'XFS_IOC_FSGROWFSDATA xfsctl failed: Invalid argument' && \
+ _notrun "kernel does not support shrinking"
+ echo "$errmsg" | grep 'data size .* too small, old size is ' && \
+ _notrun "xfsprogs does not support shrinking"
+ _fail "$XFS_GROWFS_PROG failed unexpectedly"
+ fi
+ _scratch_unmount
+}
+
# XFS ability to change UUIDs on V5/CRC filesystems
#
_require_meta_uuid()
--
2.27.0
next prev parent reply other threads:[~2021-05-11 7:40 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-11 7:39 [PATCH v5 0/3] xfs: testcases for shrinking free space in the last AG Gao Xiang
2021-05-11 7:39 ` Gao Xiang [this message]
2021-05-11 15:09 ` [PATCH v5 1/3] common/xfs: add _require_xfs_scratch_shrink helper Darrick J. Wong
2021-05-11 7:39 ` [PATCH v5 2/3] xfs: basic functionality test for shrinking free space in the last AG Gao Xiang
2021-05-11 15:23 ` Darrick J. Wong
2021-05-11 7:39 ` [PATCH v5 3/3] xfs: stress " Gao Xiang
2021-05-11 15:25 ` 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=20210511073945.906127-2-hsiangkao@redhat.com \
--to=hsiangkao@redhat.com \
--cc=djwong@kernel.org \
--cc=fstests@vger.kernel.org \
--cc=guan@eryu.me \
--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