From: Mike Rapoport <rppt@kernel.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Song Hu <husong@kylinos.cn>,
linux-mm@kvack.org, muchun.song@linux.dev, osalvador@suse.de,
david@kernel.org, ljs@kernel.org, liam@infradead.org,
vbabka@kernel.org, surenb@google.com, mhocko@suse.com,
shuah@kernel.org, linux-kselftest@vger.kernel.org,
linux-kernel@vger.kernel.org,
Mina Almasry <almasrymina@google.com>
Subject: Re: [PATCH 2/2] selftests/mm: restore hidden hugetlb reservation scenarios
Date: Fri, 4 Sep 2026 11:30:23 +0300 [thread overview]
Message-ID: <apqBn7tWDHQeMrzB@kernel.org> (raw)
In-Reply-To: <20260901173748.fb7a442941102894a0c42baa@linux-foundation.org>
On Tue, Sep 01, 2026 at 05:37:48PM -0700, Andrew Morton wrote:
> On Tue, 14 Jul 2026 10:16:30 +0800 Song Hu <husong@kylinos.cn> wrote:
>
> > A stray 'continue' in the main loop of charge_reserved_hugetlb.sh made
> > the "more than reservation", "more than cgroup limit", and "multiple
> > cgroups" scenarios unreachable, so they never ran.
> >
> > Remove it so the first two run again.
>
> OK.
>
> > The third,
> > run_multiple_cgroup_test(), is separately broken -- a backslash
> > line-continuation breaks its local declarations and its hugetlb
> > reservation accounting does not charge as expected -- and has never run
> > in CI; skip it explicitly with a comment until fixed.
>
> That's reasonable. This code was added by Mina six years ago. But
> he's still around so let's bug him with a cc ;)
And this code breaks our CI e.g:
https://github.com/linux-mm/linux-mm/actions/runs/33040981840/job/98414290236
> > Also correct two
> > `[[ "$method" == 2"" ]]` typos (harmless empty-string concatenation)
> > to plain `2`.
>
> OK.
>
>
>
> From: Song Hu <husong@kylinos.cn>
> Subject: selftests/mm: restore hidden hugetlb reservation scenarios
> Date: Tue, 14 Jul 2026 10:16:30 +0800
>
> A stray 'continue' in the main loop of charge_reserved_hugetlb.sh made the
> "more than reservation", "more than cgroup limit", and "multiple cgroups"
> scenarios unreachable, so they never ran.
>
> Remove it so the first two run again. The third,
> run_multiple_cgroup_test(), is separately broken -- a backslash
> line-continuation breaks its local declarations and its hugetlb
> reservation accounting does not charge as expected -- and has never run in
> CI; skip it explicitly with a comment until fixed. Also correct two `[[
> "$method" == 2"" ]]` typos (harmless empty-string concatenation) to plain
> `2`.
>
> Link: https://lore.kernel.org/20260714021630.1063823-1-husong@kylinos.cn
> Signed-off-by: Song Hu <husong@kylinos.cn>
> Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
> Cc: David Hildenbrand <david@kernel.org>
> Cc: Liam R. Howlett <liam@infradead.org>
> Cc: Lorenzo Stoakes <ljs@kernel.org>
> Cc: Michal Hocko <mhocko@suse.com>
> Cc: Mike Rapoport <rppt@kernel.org>
> Cc: Muchun Song <muchun.song@linux.dev>
> Cc: Oscar Salvador <osalvador@suse.de>
> Cc: Shuah Khan <shuah@kernel.org>
> Cc: Suren Baghdasaryan <surenb@google.com>
> Cc: Vlastimil Babka <vbabka@kernel.org>
> Cc: Mina Almasry <almasrymina@google.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> tools/testing/selftests/mm/charge_reserved_hugetlb.sh | 14 +++++++---
> 1 file changed, 11 insertions(+), 3 deletions(-)
>
> --- a/tools/testing/selftests/mm/charge_reserved_hugetlb.sh~selftests-mm-restore-hidden-hugetlb-reservation-scenarios
> +++ a/tools/testing/selftests/mm/charge_reserved_hugetlb.sh
> @@ -439,11 +439,11 @@ for populate in "" "-o"; do
> fi
>
> # Skip populated shmem tests. Doesn't seem to be supported.
> - if [[ "$method" == 2"" ]] && [[ "$populate" == "-o" ]]; then
> + if [[ "$method" == 2 ]] && [[ "$populate" == "-o" ]]; then
> continue
> fi
>
> - if [[ "$method" == 2"" ]] && [[ "$reserve" == "-n" ]]; then
> + if [[ "$method" == 2 ]] && [[ "$reserve" == "-n" ]]; then
> continue
> fi
>
> @@ -496,7 +496,6 @@ for populate in "" "-o"; do
> echo 'PASS'
>
> cleanup
> - continue
> echo
> echo
> echo
> @@ -530,6 +529,15 @@ for populate in "" "-o"; do
>
> cleanup
>
> + # The "multiple cgroups" scenario (run_multiple_cgroup_test) is
> + # multiply broken and has never run in CI: a backslash
> + # line-continuation breaks its local declarations, it passes
> + # reservation sizes in bytes rather than pages (unlike
> + # run_test), and its assertions compare page counts to byte
> + # values. Skip it until properly rewritten; the two scenarios
> + # above are restored by this change.
> + continue
> +
> echo
> echo
> echo
> _
>
>
--
Sincerely yours,
Mike.
next prev parent reply other threads:[~2026-09-04 8:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-14 2:16 Song Hu
2026-09-02 0:37 ` Andrew Morton
2026-09-04 8:30 ` Mike Rapoport [this message]
2026-09-04 17:48 ` Andrew Morton
2026-09-05 8:17 ` David Hildenbrand (Arm)
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=apqBn7tWDHQeMrzB@kernel.org \
--to=rppt@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=almasrymina@google.com \
--cc=david@kernel.org \
--cc=husong@kylinos.cn \
--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=muchun.song@linux.dev \
--cc=osalvador@suse.de \
--cc=shuah@kernel.org \
--cc=surenb@google.com \
--cc=vbabka@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
all inboxes | Powered by JetHome®