From: "Darrick J. Wong" <djwong@kernel.org>
To: Joanne Koong <joannelkoong@gmail.com>
Cc: fstests@vger.kernel.org, linux-fsdevel@vger.kernel.org,
kernel-team@meta.com
Subject: Re: [PATCH 2/2] generic: add tests for read/writes from hugepages-backed buffers
Date: Thu, 19 Dec 2024 09:52:51 -0800 [thread overview]
Message-ID: <20241219175251.GH6160@frogsfrogsfrogs> (raw)
In-Reply-To: <20241218210122.3809198-3-joannelkoong@gmail.com>
On Wed, Dec 18, 2024 at 01:01:22PM -0800, Joanne Koong wrote:
> Add generic tests 758 and 759 for testing reads/writes from buffers
> backed by hugepages.
>
> Signed-off-by: Joanne Koong <joannelkoong@gmail.com>
> ---
> common/rc | 10 ++++++++++
> tests/generic/758 | 23 +++++++++++++++++++++++
> tests/generic/758.out | 4 ++++
> tests/generic/759 | 24 ++++++++++++++++++++++++
> tests/generic/759.out | 4 ++++
> 5 files changed, 65 insertions(+)
> create mode 100755 tests/generic/758
> create mode 100644 tests/generic/758.out
> create mode 100755 tests/generic/759
> create mode 100644 tests/generic/759.out
>
> diff --git a/common/rc b/common/rc
> index 1b2e4508..33af7fa7 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -3016,6 +3016,16 @@ _require_xfs_io_command()
> fi
> }
>
> +# check that the kernel and system supports huge pages
> +_require_thp()
> +{
> + thp_status=$(cat /sys/kernel/mm/transparent_hugepage/enabled)
> + if [[ $thp_status == *"[never]"* ]]; then
> + _notrun "system doesn't support transparent hugepages"
> + fi
> + _require_kernel_config CONFIG_TRANSPARENT_HUGEPAGE
Will /sys/kernel/mm/transparent_hugepage/ exist if
CONFIG_TRANSPARENT_HUGEPAGE=n ?
Or put another way, if /sys/kernel/mm/transparent_hugepage/ doesn't
exist, is that a sign that hugepages aren't enabled?
> +}
> +
> # check that kernel and filesystem support direct I/O, and check if "$1" size
> # aligned (optional) is supported
> _require_odirect()
> diff --git a/tests/generic/758 b/tests/generic/758
> new file mode 100755
> index 00000000..b3bd6e5b
> --- /dev/null
> +++ b/tests/generic/758
> @@ -0,0 +1,23 @@
> +#! /bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +#
> +# FS QA Test No. 758
> +#
> +# fsx exercising reads/writes from userspace buffers
> +# backed by hugepages
> +#
> +. ./common/preamble
> +_begin_fstest rw auto quick
> +
> +# Import common functions.
No need for ^^ this comment. Same with 759.
--D
> +. ./common/filter
> +
> +_require_test
> +_require_thp
> +
> +run_fsx -N 10000 -l 500000 -h
> +run_fsx -N 10000 -o 8192 -l 500000 -h
> +run_fsx -N 10000 -o 128000 -l 500000 -h
> +
> +status=0
> +exit
> diff --git a/tests/generic/758.out b/tests/generic/758.out
> new file mode 100644
> index 00000000..af04bb14
> --- /dev/null
> +++ b/tests/generic/758.out
> @@ -0,0 +1,4 @@
> +QA output created by 758
> +fsx -N 10000 -l 500000 -h
> +fsx -N 10000 -o 8192 -l 500000 -h
> +fsx -N 10000 -o 128000 -l 500000 -h
> diff --git a/tests/generic/759 b/tests/generic/759
> new file mode 100755
> index 00000000..6dfe2b86
> --- /dev/null
> +++ b/tests/generic/759
> @@ -0,0 +1,24 @@
> +#! /bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +#
> +# FS QA Test No. 759
> +#
> +# fsx exercising direct IO reads/writes from userspace buffers
> +# backed by hugepages
> +#
> +. ./common/preamble
> +_begin_fstest rw auto quick
> +
> +# Import common functions.
> +. ./common/filter
> +
> +_require_test
> +_require_odirect
> +_require_thp
> +
> +run_fsx -N 10000 -l 500000 -Z -R -W -h
> +run_fsx -N 10000 -o 8192 -l 500000 -Z -R -W -h
> +run_fsx -N 10000 -o 128000 -l 500000 -Z -R -W -h
> +
> +status=0
> +exit
> diff --git a/tests/generic/759.out b/tests/generic/759.out
> new file mode 100644
> index 00000000..18d21229
> --- /dev/null
> +++ b/tests/generic/759.out
> @@ -0,0 +1,4 @@
> +QA output created by 759
> +fsx -N 10000 -l 500000 -Z -R -W -h
> +fsx -N 10000 -o 8192 -l 500000 -Z -R -W -h
> +fsx -N 10000 -o 128000 -l 500000 -Z -R -W -h
> --
> 2.47.1
>
>
next prev parent reply other threads:[~2024-12-19 17:52 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-18 21:01 [PATCH 0/2] fstests: test reads/writes from hugepages-backed buffers Joanne Koong
2024-12-18 21:01 ` [PATCH 1/2] fsx: support reads/writes from buffers backed by hugepages Joanne Koong
2024-12-19 14:29 ` Brian Foster
2024-12-19 22:34 ` Joanne Koong
2024-12-20 11:52 ` Brian Foster
2024-12-23 20:59 ` Joanne Koong
2024-12-27 19:22 ` Joanne Koong
2024-12-19 17:51 ` Darrick J. Wong
2024-12-19 22:51 ` Joanne Koong
2024-12-20 7:47 ` Nirjhar Roy
2024-12-23 21:07 ` Joanne Koong
2024-12-24 5:09 ` Nirjhar Roy
2024-12-18 21:01 ` [PATCH 2/2] generic: add tests for read/writes from hugepages-backed buffers Joanne Koong
2024-12-19 17:52 ` Darrick J. Wong [this message]
2024-12-19 21:36 ` Joanne Koong
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=20241219175251.GH6160@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=fstests@vger.kernel.org \
--cc=joannelkoong@gmail.com \
--cc=kernel-team@meta.com \
--cc=linux-fsdevel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.