From: Hongfu Li <hongfu.li@linux.dev>
To: david@kernel.org
Cc: akpm@linux-foundation.org, baohua@kernel.org,
baolin.wang@linux.alibaba.com, dev.jain@arm.com,
hongfu.li@linux.dev, lance.yang@linux.dev, liam@infradead.org,
lihongfu@kylinos.cn, linux-kernel@vger.kernel.org,
linux-kselftest@vger.kernel.org, linux-mm@kvack.org,
ljs@kernel.org, mhocko@suse.com, nico.pache@linux.dev,
rppt@kernel.org, ryan.roberts@arm.com, shuah@kernel.org,
surenb@google.com, usama.arif@linux.dev, vbabka@kernel.org,
ziy@nvidia.com
Subject: Re: [PATCH] selftests/mm: fix read_file() return value check
Date: Mon, 10 Aug 2026 13:43:00 +0800 [thread overview]
Message-ID: <20260810054300.82437-1-hongfu.li@linux.dev> (raw)
In-Reply-To: <43b5db93-1c1b-436e-a8fa-d89582e31894@kernel.org>
> > diff --git a/tools/testing/selftests/mm/vm_util.c b/tools/testing/selftests/mm/vm_util.c
> > index ef1ea11981a7..2697d50d07f4 100644
> > --- a/tools/testing/selftests/mm/vm_util.c
> > +++ b/tools/testing/selftests/mm/vm_util.c
> > @@ -755,7 +755,7 @@ unsigned long read_num(const char *path)
> > {
> > char buf[21];
> >
> > - if (read_file(path, buf, sizeof(buf)) < 0)
> > + if (!read_file(path, buf, sizeof(buf)))
> > ksft_exit_fail_perror("read_file()");
> >
> > return strtoul(buf, NULL, 10);
>
>
> Yeah, that looks correct. Do we have Fixes: tags?
>
> I think it was already wrong in read_num() in
>
>
> commit e0c13f9761df8f97cf5e81495d12ecbc4075684a
> Author: Kiryl Shutsemau <kas@kernel.org>
> Date: Wed Jun 3 16:00:06 2020 -0700
>
> khugepaged: add self test
>
>
> where we had
>
> + ret = read_file(path, buf, sizeof(buf));
> + if (ret < 0) {
> + perror("read_file(read_num)");
> + exit(EXIT_FAILURE);
> + }
>
>
> So likely
>
> Fixes: e0c13f9761df ("khugepaged: add self test")
>
> Acked-by: David Hildenbrand (Arm) <david@kernel.org>
Thank you for the review and tracking down the original commit.
I will include the Fixes tag you mentioned in the next patch revision.
Best regards,
Hongfu
prev parent reply other threads:[~2026-08-10 5:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-07 1:35 [PATCH] selftests/mm: fix read_file() return value check Hongfu Li
2026-08-07 14:35 ` David Hildenbrand (Arm)
2026-08-10 5:43 ` Hongfu Li [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=20260810054300.82437-1-hongfu.li@linux.dev \
--to=hongfu.li@linux.dev \
--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=lance.yang@linux.dev \
--cc=liam@infradead.org \
--cc=lihongfu@kylinos.cn \
--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