* [PATCH] selftests/mm: fix read_file() return value check
@ 2026-08-07 1:35 Hongfu Li
2026-08-07 14:35 ` David Hildenbrand (Arm)
0 siblings, 1 reply; 3+ messages in thread
From: Hongfu Li @ 2026-08-07 1:35 UTC (permalink / raw)
To: akpm, david, ljs, ziy, baolin.wang, liam, nico.pache,
ryan.roberts, dev.jain, baohua, lance.yang, usama.arif, vbabka,
rppt, surenb, mhocko, shuah
Cc: linux-mm, linux-kselftest, linux-kernel, hongfu.li, Hongfu Li
From: Hongfu Li <lihongfu@kylinos.cn>
read_file() returns 0 on open/read failures and never returns negative
values. Existing < 0 error checks never trigger, so read failures are
silently ignored. Check for zero return to detect read_file() failures.
Also fix misleading error message in get_finfo(). The error string
incorrectly references read_num when reading uevent files.
Signed-off-by: Hongfu Li <lihongfu@kylinos.cn>
---
tools/testing/selftests/mm/khugepaged.c | 4 ++--
tools/testing/selftests/mm/vm_util.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/testing/selftests/mm/khugepaged.c b/tools/testing/selftests/mm/khugepaged.c
index 10e8dedcb087..506310d4b4d5 100644
--- a/tools/testing/selftests/mm/khugepaged.c
+++ b/tools/testing/selftests/mm/khugepaged.c
@@ -138,8 +138,8 @@ static void get_finfo(const char *dir)
major(path_stat.st_dev), minor(path_stat.st_dev))
>= sizeof(path))
ksft_exit_fail_msg("%s: Pathname is too long\n", __func__);
- if (read_file(path, buf, sizeof(buf)) < 0)
- ksft_exit_fail_perror("read_file(read_num)");
+ if (!read_file(path, buf, sizeof(buf)))
+ ksft_exit_fail_perror("read_file(uevent)");
if (strstr(buf, "DEVTYPE=disk")) {
/* Found it */
if (snprintf(finfo.dev_queue_read_ahead_path,
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);
--
2.54.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] selftests/mm: fix read_file() return value check
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
0 siblings, 1 reply; 3+ messages in thread
From: David Hildenbrand (Arm) @ 2026-08-07 14:35 UTC (permalink / raw)
To: Hongfu Li, akpm, ljs, ziy, baolin.wang, liam, nico.pache,
ryan.roberts, dev.jain, baohua, lance.yang, usama.arif, vbabka,
rppt, surenb, mhocko, shuah
Cc: linux-mm, linux-kselftest, linux-kernel, Hongfu Li
On 8/7/26 03:35, Hongfu Li wrote:
> From: Hongfu Li <lihongfu@kylinos.cn>
>
> read_file() returns 0 on open/read failures and never returns negative
> values. Existing < 0 error checks never trigger, so read failures are
> silently ignored. Check for zero return to detect read_file() failures.
>
> Also fix misleading error message in get_finfo(). The error string
> incorrectly references read_num when reading uevent files.
>
> Signed-off-by: Hongfu Li <lihongfu@kylinos.cn>
> ---
> tools/testing/selftests/mm/khugepaged.c | 4 ++--
> tools/testing/selftests/mm/vm_util.c | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tools/testing/selftests/mm/khugepaged.c b/tools/testing/selftests/mm/khugepaged.c
> index 10e8dedcb087..506310d4b4d5 100644
> --- a/tools/testing/selftests/mm/khugepaged.c
> +++ b/tools/testing/selftests/mm/khugepaged.c
> @@ -138,8 +138,8 @@ static void get_finfo(const char *dir)
> major(path_stat.st_dev), minor(path_stat.st_dev))
> >= sizeof(path))
> ksft_exit_fail_msg("%s: Pathname is too long\n", __func__);
> - if (read_file(path, buf, sizeof(buf)) < 0)
> - ksft_exit_fail_perror("read_file(read_num)");
> + if (!read_file(path, buf, sizeof(buf)))
> + ksft_exit_fail_perror("read_file(uevent)");
> if (strstr(buf, "DEVTYPE=disk")) {
> /* Found it */
> if (snprintf(finfo.dev_queue_read_ahead_path,
> 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>
--
Cheers,
David
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] selftests/mm: fix read_file() return value check
2026-08-07 14:35 ` David Hildenbrand (Arm)
@ 2026-08-10 5:43 ` Hongfu Li
0 siblings, 0 replies; 3+ messages in thread
From: Hongfu Li @ 2026-08-10 5:43 UTC (permalink / raw)
To: david
Cc: akpm, baohua, baolin.wang, dev.jain, hongfu.li, lance.yang, liam,
lihongfu, linux-kernel, linux-kselftest, linux-mm, ljs, mhocko,
nico.pache, rppt, ryan.roberts, shuah, surenb, usama.arif, vbabka,
ziy
> > 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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-10 5:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox