From: Usama Anjum <usama.anjum@foss.arm.com>
To: Kevin Brodsky <kevin.brodsky@arm.com>,
linux-mm@kvack.org, linux-kselftest@vger.kernel.org
Cc: usama.anjum@foss.arm.com, linux-kernel@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
David Hildenbrand <david@kernel.org>, Dev Jain <dev.jain@arm.com>,
Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
Mark Brown <broonie@kernel.org>,
Ryan Roberts <ryan.roberts@arm.com>,
Shuah Khan <shuah@kernel.org>
Subject: Re: [PATCH v3 5/9] selftests/mm: check that FORCE_READ() succeeded
Date: Thu, 22 Jan 2026 17:36:13 +0000 [thread overview]
Message-ID: <ab021f50-60c9-4d5c-99a0-255ead6e2288@foss.arm.com> (raw)
In-Reply-To: <20260122170224.4056513-6-kevin.brodsky@arm.com>
On 22/01/2026 5:02 pm, Kevin Brodsky wrote:
> Many cow tests rely on FORCE_READ() to populate pages. Introduce a
> helper to make sure that the pages are actually populated, and fail
> otherwise.
>
> Suggested-by: David Hildenbrand (Red Hat) <david@kernel.org>
> Signed-off-by: Kevin Brodsky <kevin.brodsky@arm.com>
> ---
> tools/testing/selftests/mm/cow.c | 43 ++++++++++++++++++++++++--------
> 1 file changed, 33 insertions(+), 10 deletions(-)
>
> diff --git a/tools/testing/selftests/mm/cow.c b/tools/testing/selftests/mm/cow.c
> index 83b3563be26b..d9c69c04b67d 100644
> --- a/tools/testing/selftests/mm/cow.c
> +++ b/tools/testing/selftests/mm/cow.c
> @@ -75,6 +75,18 @@ static bool range_is_swapped(void *addr, size_t size)
> return true;
> }
>
> +static bool populate_page_checked(char *addr)
> +{
> + bool ret;
> +
> + FORCE_READ(*addr);
> + ret = pagemap_is_populated(pagemap_fd, addr);
Very useful. Maybe extending FORCE_READ can help the entire suite?
> + if (!ret)
> + ksft_print_msg("Failed to populate page\n");
> +
> + return ret;
> +}
> +
> struct comm_pipes {
> int child_ready[2];
> int parent_ready[2];
> @@ -1549,8 +1561,10 @@ static void run_with_zeropage(non_anon_test_fn fn, const char *desc)
> }
>
> /* Read from the page to populate the shared zeropage. */
> - FORCE_READ(*mem);
> - FORCE_READ(*smem);
> + if (!populate_page_checked(mem) || !populate_page_checked(smem)) {
> + log_test_result(KSFT_FAIL);
> + goto munmap;
> + }
>
> fn(mem, smem, pagesize);
> munmap:
> @@ -1612,8 +1626,11 @@ static void run_with_huge_zeropage(non_anon_test_fn fn, const char *desc)
> * the first sub-page and test if we get another sub-page populated
> * automatically.
> */
> - FORCE_READ(*mem);
> - FORCE_READ(*smem);
> + if (!populate_page_checked(mem) || !populate_page_checked(smem)) {
> + log_test_result(KSFT_FAIL);
> + goto munmap;
> + }
> +
> if (!pagemap_is_populated(pagemap_fd, mem + pagesize) ||
> !pagemap_is_populated(pagemap_fd, smem + pagesize)) {
> ksft_test_result_skip("Did not get THPs populated\n");
> @@ -1663,8 +1680,10 @@ static void run_with_memfd(non_anon_test_fn fn, const char *desc)
> }
>
> /* Fault the page in. */
> - FORCE_READ(*mem);
> - FORCE_READ(*smem);
> + if (!populate_page_checked(mem) || !populate_page_checked(smem)) {
> + log_test_result(KSFT_FAIL);
> + goto munmap;
> + }
>
> fn(mem, smem, pagesize);
> munmap:
> @@ -1719,8 +1738,10 @@ static void run_with_tmpfile(non_anon_test_fn fn, const char *desc)
> }
>
> /* Fault the page in. */
> - FORCE_READ(*mem);
> - FORCE_READ(*smem);
> + if (!populate_page_checked(mem) || !populate_page_checked(smem)) {
> + log_test_result(KSFT_FAIL);
> + goto munmap;
> + }
>
> fn(mem, smem, pagesize);
> munmap:
> @@ -1773,8 +1794,10 @@ static void run_with_memfd_hugetlb(non_anon_test_fn fn, const char *desc,
> }
>
> /* Fault the page in. */
> - FORCE_READ(*mem);
> - FORCE_READ(*smem);
> + if (!populate_page_checked(mem) || !populate_page_checked(smem)) {
> + log_test_result(KSFT_FAIL);
> + goto munmap;
> + }
>
> fn(mem, smem, hugetlbsize);
> munmap:
next prev parent reply other threads:[~2026-01-22 17:36 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-22 17:02 [PATCH v3 0/9] Various mm kselftests improvements/fixes Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 1/9] selftests/mm: default KDIR to build directory Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 2/9] selftests/mm: remove flaky header check Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 3/9] selftests/mm: pass down full CC and CFLAGS to check_config.sh Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 4/9] selftests/mm: fix usage of FORCE_READ() in cow tests Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 5/9] selftests/mm: check that FORCE_READ() succeeded Kevin Brodsky
2026-01-22 17:36 ` Usama Anjum [this message]
2026-01-23 8:20 ` Kevin Brodsky
2026-01-22 22:18 ` David Hildenbrand (Red Hat)
2026-01-23 8:17 ` Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 6/9] selftests/mm: introduce helper to read every page Kevin Brodsky
2026-01-22 17:39 ` Muhammad Usama Anjum
2026-01-22 22:20 ` David Hildenbrand (Red Hat)
2026-01-23 8:25 ` Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 7/9] selftests/mm: fix faulting-in code in pagemap_ioctl test Kevin Brodsky
2026-01-22 17:43 ` Muhammad Usama Anjum
2026-01-22 17:02 ` [PATCH v3 8/9] selftests/mm: fix exit code in pagemap_ioctl Kevin Brodsky
2026-01-22 17:02 ` [PATCH v3 9/9] selftests/mm: report SKIP in pfnmap if a check fails Kevin Brodsky
2026-01-22 22:23 ` David Hildenbrand (Red Hat)
2026-01-22 18:25 ` [PATCH v3 0/9] Various mm kselftests improvements/fixes Andrew Morton
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=ab021f50-60c9-4d5c-99a0-255ead6e2288@foss.arm.com \
--to=usama.anjum@foss.arm.com \
--cc=akpm@linux-foundation.org \
--cc=broonie@kernel.org \
--cc=david@kernel.org \
--cc=dev.jain@arm.com \
--cc=kevin.brodsky@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lorenzo.stoakes@oracle.com \
--cc=ryan.roberts@arm.com \
--cc=shuah@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