[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <16611552-10d8-46d0-8163-460c0cbec2e5@t-8ch.de>
Date: Wed, 11 Sep 2024 17:44:40 +0200
From: Thomas Weißschuh <linux@...ssschuh.net>
To: Shuah Khan <skhan@...uxfoundation.org>
Cc: zhangjiao2 <zhangjiao2@...s.chinamobile.com>, Willy Tarreau <w@....eu>,
linux-kselftest@...r.kernel.org, linux-kernel@...r.kernel.org,
"Paul E. McKenney" <paulmck@...nel.org>, shuah@...nel.org
Subject: Re: [PATCH] selftests: kselftest: Use strerror() on nolibc
Hi Shuah,
On 2024-09-11 09:36:50+0000, Shuah Khan wrote:
> On 9/10/24 22:42, zhangjiao2 wrote:
> > From: zhang jiao <zhangjiao2@...s.chinamobile.com>
> >
> > Nolibc gained an implementation of strerror() recently.
> > Use it and drop the ifndef.
> >
> > Signed-off-by: zhang jiao <zhangjiao2@...s.chinamobile.com>
> > ---
> > tools/testing/selftests/kselftest.h | 8 --------
> > 1 file changed, 8 deletions(-)
> >
> > diff --git a/tools/testing/selftests/kselftest.h b/tools/testing/selftests/kselftest.h
> > index e195ec156859..29fedf609611 100644
> > --- a/tools/testing/selftests/kselftest.h
> > +++ b/tools/testing/selftests/kselftest.h
> > @@ -373,15 +373,7 @@ static inline __noreturn __printf(1, 2) void ksft_exit_fail_msg(const char *msg,
> > static inline __noreturn void ksft_exit_fail_perror(const char *msg)
> > {
> > -#ifndef NOLIBC
> > ksft_exit_fail_msg("%s: %s (%d)\n", msg, strerror(errno), errno);
> > -#else
> > - /*
> > - * nolibc doesn't provide strerror() and it seems
> > - * inappropriate to add one, just print the errno.
> > - */
> > - ksft_exit_fail_msg("%s: %d)\n", msg, errno);
> > -#endif
> > }
> > static inline __noreturn void ksft_exit_xfail(void)
>
> Adding nolibc maintainers for review.
>
> Willy and Thomas, please review.
Acked-by: Thomas Weißschuh <linux@...ssschuh.net>
I did the same for another kselftests function when introducing
strerror(). This one was apparently missed or didn't exist yet.
Thomas
Powered by blists - more mailing lists