[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YmXMiTXEvFXZ/swU@dev-arch.thelio-3990X>
Date: Sun, 24 Apr 2022 15:17:45 -0700
From: Nathan Chancellor <nathan@...nel.org>
To: Vincent Mailhol <mailhol.vincent@...adoo.fr>
Cc: Nick Desaulniers <ndesaulniers@...gle.com>,
Tom Rix <trix@...hat.com>, linux-kernel@...r.kernel.org,
llvm@...ts.linux.dev, Palmer Dabbelt <palmerdabbelt@...gle.com>,
Arnd Bergmann <arnd@...db.de>
Subject: Re: [PATCH] checksyscalls: ignore -Wunused-macros
Hi Vincent,
On Sat, Apr 23, 2022 at 12:17:25AM +0900, Vincent Mailhol wrote:
> The macros defined in this file are for testing only and are purposely
> not used. When compiled with W=2, both gcc and clang yield some
> -Wunused-macros warnings. Ignore them.
>
> Signed-off-by: Vincent Mailhol <mailhol.vincent@...adoo.fr>
The change itself looks fine but a couple of comments:
1. Nick and I do not pick up patches, we rely on others to do so.
Additionally, this is not really something within our domain, despite
what get_maintainer.pl might say. This change should be sent to
either
Masahiro Yamada <masahiroy@...nel.org>
linux-kbuild@...r.kernel.org
or
Andrew Morton <akpm@...ux-foundation.org>
so that it can be applied by one of them.
2. I am not sure that silencing warnings from W=2 is that useful, as
they are unlikely to be real issues. Not to discourage you by any
means but it might be more useful to focus on cleaning up warnings
from W=1 and getting those promoted to regular build warnings.
Cheers,
Nathan
> ---
> scripts/checksyscalls.sh | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/checksyscalls.sh b/scripts/checksyscalls.sh
> index 9dbab13329fa..cde15f22ec98 100755
> --- a/scripts/checksyscalls.sh
> +++ b/scripts/checksyscalls.sh
> @@ -255,6 +255,7 @@ cat << EOF
> /* 64-bit ports never needed these, and new 32-bit ports can use statx */
> #define __IGNORE_fstat64
> #define __IGNORE_fstatat64
> +
> EOF
> }
>
> @@ -268,4 +269,4 @@ syscall_list() {
> }
>
> (ignore_list && syscall_list $(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl) | \
> -$* -Wno-error -E -x c - > /dev/null
> +$* -Wno-error -Wno-unused-macros -E -x c - > /dev/null
> --
> 2.35.1
>
Powered by blists - more mailing lists