From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Omar Sandoval <osandov@osandov.com>
Cc: fstests@vger.kernel.org, Eryu Guan <guaneryu@gmail.com>,
kernel-team@fb.com
Subject: Re: [PATCH 1/4] generic: enable swapfile tests on Btrfs
Date: Wed, 16 May 2018 12:39:13 -0700 [thread overview]
Message-ID: <20180516193913.GB4910@magnolia> (raw)
In-Reply-To: <c05e3925acae64cb82c411452159f41610aeec7f.1526489529.git.osandov@fb.com>
On Wed, May 16, 2018 at 09:56:57AM -0700, Omar Sandoval wrote:
> From: Omar Sandoval <osandov@fb.com>
>
> Commit 8c96cfbfe530 ("generic/35[67]: disable swapfile tests on Btrfs")
> disabled the swapfile tests on Btrfs because it did not support
> swapfiles at the time. Now that we're adding support, we want these
> tests to run, but they don't. _require_scratch_swapfile always fails for
> Btrfs because swapfiles on Btrfs must be set to nocow. After fixing
> that, generic/356 and generic/357 fail for the same reason. After fixing
> _that_, both tests still fail because we don't allow reflinking a
> non-checksummed extent (which nocow implies) to a checksummed extent. Do
> the chattrs everywhere, which gets these tests running on kernels
> supporting Btrfs swapfiles.
>
> Signed-off-by: Omar Sandoval <osandov@fb.com>
> ---
> common/rc | 3 +++
> tests/generic/356 | 6 +++++-
> tests/generic/357 | 6 +++++-
> 3 files changed, 13 insertions(+), 2 deletions(-)
>
> diff --git a/common/rc b/common/rc
> index ffe53236..5405f7d0 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -2233,6 +2233,9 @@ _require_scratch_swapfile()
> # Minimum size for mkswap is 10 pages
> local size=$(($(get_page_size) * 10))
>
> + touch "$SCRATCH_MNT/swap"
> + chmod 0600 "$SCRATCH_MNT/swap"
> + chattr +C "$SCRATCH_MNT/swap" >/dev/null 2>&1
> _pwrite_byte 0x61 0 "$size" "$SCRATCH_MNT/swap" >/dev/null 2>&1
> mkswap "$SCRATCH_MNT/swap" >/dev/null 2>&1
> if ! swapon "$SCRATCH_MNT/swap" >/dev/null 2>&1; then
> diff --git a/tests/generic/356 b/tests/generic/356
> index 51eeb652..09c146a9 100755
> --- a/tests/generic/356
> +++ b/tests/generic/356
> @@ -59,7 +59,11 @@ blocks=160
> blksz=65536
>
> echo "Initialize file"
> -echo >> $seqres.full
> +touch "$testdir/file1"
> +chmod 0600 "$testdir/file1"
> +chattr +C "$testdir/file1" >/dev/null 2>&1
> +touch "$testdir/file2"
> +chattr +C "$testdir/file2" >/dev/null 2>&1
> _pwrite_byte 0x61 0 $((blocks * blksz)) $testdir/file1 >> $seqres.full
> mkswap -U 27376b42-ff65-42ca-919f-6c9b62292a5c $testdir/file1 >> $seqres.full
> swapon $testdir/file1
> diff --git a/tests/generic/357 b/tests/generic/357
> index 0dd0c10f..742f37d1 100755
> --- a/tests/generic/357
> +++ b/tests/generic/357
> @@ -59,7 +59,11 @@ blocks=160
> blksz=65536
>
> echo "Initialize file"
> -echo >> $seqres.full
> +touch "$testdir/file1"
> +chmod 0600 "$testdir/file1"
> +chattr +C "$testdir/file1" >/dev/null 2>&1
> +touch "$testdir/file2"
> +chattr +C "$testdir/file2" >/dev/null 2>&1
> _pwrite_byte 0x61 0 $((blocks * blksz)) $testdir/file1 >> $seqres.full
> mkswap -U 27376b42-ff65-42ca-919f-6c9b62292a5c $testdir/file1 >> $seqres.full
Should this get refactored into a _format_swapfile or something, rather
than open coding this everywhere?
_format_swapfile() {
local fname=$1
local sz=$2
touch $fname
chmod 0600 $fname
chattr +C $fname > /dev/null 2>&1
_pwrite_byte 0x61 0 $sz $fname >> $seqres.full
mkswap -U 27376b42-ff65-42ca-919f-6c9b62292a5c $fname >> $seqres.full
}
--D
> _cp_reflink $testdir/file1 $testdir/file2 2>&1 | _filter_scratch
> --
> 2.17.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2018-05-16 19:39 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-16 16:56 [PATCH 0/4] xfstests: generic swap file tests Omar Sandoval
2018-05-16 16:56 ` [PATCH 1/4] generic: enable swapfile tests on Btrfs Omar Sandoval
2018-05-16 19:39 ` Darrick J. Wong [this message]
2018-05-16 16:56 ` [PATCH 2/4] generic: add test for dedupe on an active swapfile Omar Sandoval
2018-05-16 16:56 ` [PATCH 3/4] generic: add test for truncate/fpunch of " Omar Sandoval
2018-05-16 16:57 ` [PATCH 4/4] generic: test invalid swap file activation Omar Sandoval
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=20180516193913.GB4910@magnolia \
--to=darrick.wong@oracle.com \
--cc=fstests@vger.kernel.org \
--cc=guaneryu@gmail.com \
--cc=kernel-team@fb.com \
--cc=osandov@osandov.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