From: Yeoreum Yun <yeoreum.yun@arm.com>
To: "David Hildenbrand (Arm)" <david@kernel.org>
Cc: Yeoreum Yun <yeoreum.yun@arm.com>,
Andrew Morton <akpm@linux-foundation.org>,
Lorenzo Stoakes <ljs@kernel.org>, Zi Yan <ziy@nvidia.com>,
Baolin Wang <baolin.wang@linux.alibaba.com>,
"Liam R. Howlett" <liam@infradead.org>,
Nico Pache <nico.pache@linux.dev>,
Ryan Roberts <ryan.roberts@arm.com>, Dev Jain <dev.jain@arm.com>,
Barry Song <baohua@kernel.org>, Lance Yang <lance.yang@linux.dev>,
Usama Arif <usama.arif@linux.dev>,
Vlastimil Babka <vbabka@kernel.org>,
Mike Rapoport <rppt@kernel.org>,
Suren Baghdasaryan <surenb@google.com>,
Michal Hocko <mhocko@suse.com>, Shuah Khan <shuah@kernel.org>,
Kevin Brodsky <kevin.brodsky@arm.com>,
linux-mm@kvack.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v6 3/3] kselftest: mm: remove check_huge_shmem()
Date: Tue, 15 Sep 2026 10:55:46 +0100 [thread overview]
Message-ID: <aqkWIrqfuHDop8P4@e129823.arm.com> (raw)
In-Reply-To: <1be327b0-aec3-4b46-9a96-c701e87d3c3a@kernel.org>
On Mon, Sep 14, 2026 at 04:16:40PM +0200, David Hildenbrand (Arm) wrote:
> On 9/14/26 09:30, Yeoreum Yun wrote:
> > check_huge_shmem() was required to distinguish shmem huge pages because
> > /proc/self/smaps reports them using a dedicated “ShmemPmdMapped” entry,
> > as opposed to “FilePmdMapped” for file-backed huge pages.
> >
> > Now that /proc/self/smaps is no longer used to detect huge pages and
> > /proc/kpageflags is used instead, it is sufficient to distinguish
> > between file-backed and anonymous pages since the ShmemPmdMapped is also
> > kind of file-backed.
> >
> > Therefore, remove check_huge_shmem() and use check_huge_file() instead.
> >
> > Suggested-by: David Hildenbrand (Arm) <david@kernel.org>
> > Signed-off-by: Yeoreum Yun <yeoreum.yun@arm.com>
> > ---
> > tools/testing/selftests/mm/folio_split_race_test.c | 2 +-
> > tools/testing/selftests/mm/khugepaged.c | 5 ++---
> > tools/testing/selftests/mm/uffd-common.c | 4 ++--
> > tools/testing/selftests/mm/vm_util.c | 11 +----------
> > tools/testing/selftests/mm/vm_util.h | 2 --
> > 5 files changed, 6 insertions(+), 18 deletions(-)
> >
> > diff --git a/tools/testing/selftests/mm/folio_split_race_test.c b/tools/testing/selftests/mm/folio_split_race_test.c
> > index 1960635a953e..4c0d3b6a411b 100644
> > --- a/tools/testing/selftests/mm/folio_split_race_test.c
> > +++ b/tools/testing/selftests/mm/folio_split_race_test.c
> > @@ -182,7 +182,7 @@ static uint64_t run_iteration(void)
> > for (i = 0; i < TOTAL_PAGES; i++)
> > fill_page(mmap_base, i);
> >
> > - if (!check_huge_shmem(mmap_base, FILE_SIZE, NR_PMD_PAGE, pmd_pagesize))
> > + if (!check_huge_file(mmap_base, FILE_SIZE, NR_PMD_PAGE, pmd_pagesize))
> > ksft_exit_fail_msg("No shmem THP is allocated\n");
> >
> > if (pthread_barrier_init(&ctl.barrier, NULL, NUM_READER_THREADS + 1) != 0)
> > diff --git a/tools/testing/selftests/mm/khugepaged.c b/tools/testing/selftests/mm/khugepaged.c
> > index f82673f5f6b4..6cd1effea465 100644
> > --- a/tools/testing/selftests/mm/khugepaged.c
> > +++ b/tools/testing/selftests/mm/khugepaged.c
> > @@ -416,9 +416,8 @@ static bool file_check_huge(void *addr, size_t len, int nr_hpages,
> > {
> > switch (finfo.type) {
> > case VMA_FILE:
> > - return check_huge_file(addr, len, nr_hpages, hpage_size);
> > case VMA_SHMEM:
> > - return check_huge_shmem(addr, len, nr_hpages, hpage_size);
> > + return check_huge_file(addr, len, nr_hpages, hpage_size);
> > default:
> > ksft_exit_fail_msg("Unknown VMA type\n");
> > return false;
>
>
> Assuming we do:
>
> diff --git a/tools/testing/selftests/mm/khugepaged.c b/tools/testing/selftests/mm/khugepaged.c
> index f82673f5f6b47..9542173a748e2 100644
> --- a/tools/testing/selftests/mm/khugepaged.c
> +++ b/tools/testing/selftests/mm/khugepaged.c
> @@ -53,7 +53,7 @@ struct mem_ops {
> void *(*setup_area)(int nr_hpages);
> void (*cleanup_area)(void *p, unsigned long size);
> void (*fault)(void *p, unsigned long start, unsigned long end);
> - bool (*check_huge)(void *addr, size_t len, int nr_hpages, unsigned long hpage_size);
> + bool (*check_huge)(void *addr, size_t len, int nr_hpages, uint64_t hpage_size);
> const char *name;
> };
>
>
> Could we then simply use check_huge_anon/check_huge_file directly and get rid of
> these helpers anon_check_huge + check_huge_file entirely?
Yeap. I'll follow your suggetion. Thanks!
--
Sincerely,
Yeoreum Yun
prev parent reply other threads:[~2026-09-15 9:55 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-14 7:30 [PATCH v6 0/3] kselftest: mm: fix some failure of split_huge_page_test Yeoreum Yun
2026-09-14 7:30 ` [PATCH v6 1/3] kselftest: mm: prevent random failure of huge page split for khugepaged Yeoreum Yun
2026-09-14 7:30 ` [PATCH v6 2/3] kselftest: mm: replace usage of /proc/self/smaps for check_huge_xxx() helper Yeoreum Yun
2026-09-14 14:10 ` David Hildenbrand (Arm)
2026-09-15 9:55 ` Yeoreum Yun
2026-09-14 7:30 ` [PATCH v6 3/3] kselftest: mm: remove check_huge_shmem() Yeoreum Yun
2026-09-14 14:16 ` David Hildenbrand (Arm)
2026-09-15 9:55 ` Yeoreum Yun [this message]
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=aqkWIrqfuHDop8P4@e129823.arm.com \
--to=yeoreum.yun@arm.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=baolin.wang@linux.alibaba.com \
--cc=david@kernel.org \
--cc=dev.jain@arm.com \
--cc=kevin.brodsky@arm.com \
--cc=lance.yang@linux.dev \
--cc=liam@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=mhocko@suse.com \
--cc=nico.pache@linux.dev \
--cc=rppt@kernel.org \
--cc=ryan.roberts@arm.com \
--cc=shuah@kernel.org \
--cc=surenb@google.com \
--cc=usama.arif@linux.dev \
--cc=vbabka@kernel.org \
--cc=ziy@nvidia.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
all inboxes | Powered by JetHome®