* [PATCH] kbuild: Enable -Wenum-conversion by default
@ 2023-07-04 22:19 Borislav Petkov
2023-07-05 16:20 ` Nathan Chancellor
0 siblings, 1 reply; 3+ messages in thread
From: Borislav Petkov @ 2023-07-04 22:19 UTC (permalink / raw)
To: linux-kbuild; +Cc: LKML
From: "Borislav Petkov (AMD)" <bp@alien8.de>
This diagnostic checks whether there is a type mismatch when
converting enums (assign an enum of type A to an enum of type B, for
example) and it caught a legit issue recently. The reason it didn't show
is because that warning is enabled only with -Wextra with GCC. Clang,
however, enables it by default.
GCC folks were considering enabling it by default but it was too noisy
back then:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78736
Now that due to clang all those warnings have been fixed, enable it with
GCC too.
allmodconfig tests done with: x86, arm{,64}, powerpc{,64}, riscv
crossbuilds.
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
---
Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Makefile b/Makefile
index 7a5a175f708f..428132b3d6dd 100644
--- a/Makefile
+++ b/Makefile
@@ -1082,6 +1082,9 @@ KBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types)
# Require designated initializers for all marked structures
KBUILD_CFLAGS += $(call cc-option,-Werror=designated-init)
+# Warn if there is an enum types mismatch
+KBUILD_CFLAGS += $(call cc-option,-Wenum-conversion)
+
# change __FILE__ to the relative path from the srctree
KBUILD_CPPFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
--
2.41.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] kbuild: Enable -Wenum-conversion by default
2023-07-04 22:19 [PATCH] kbuild: Enable -Wenum-conversion by default Borislav Petkov
@ 2023-07-05 16:20 ` Nathan Chancellor
2023-07-15 5:46 ` Masahiro Yamada
0 siblings, 1 reply; 3+ messages in thread
From: Nathan Chancellor @ 2023-07-05 16:20 UTC (permalink / raw)
To: Borislav Petkov; +Cc: linux-kbuild, LKML
On Wed, Jul 05, 2023 at 12:19:51AM +0200, Borislav Petkov wrote:
> From: "Borislav Petkov (AMD)" <bp@alien8.de>
>
> This diagnostic checks whether there is a type mismatch when
> converting enums (assign an enum of type A to an enum of type B, for
> example) and it caught a legit issue recently. The reason it didn't show
> is because that warning is enabled only with -Wextra with GCC. Clang,
> however, enables it by default.
>
> GCC folks were considering enabling it by default but it was too noisy
> back then:
>
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78736
>
> Now that due to clang all those warnings have been fixed, enable it with
> GCC too.
>
> allmodconfig tests done with: x86, arm{,64}, powerpc{,64}, riscv
> crossbuilds.
>
> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Yes please :)
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
> ---
> Makefile | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/Makefile b/Makefile
> index 7a5a175f708f..428132b3d6dd 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1082,6 +1082,9 @@ KBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types)
> # Require designated initializers for all marked structures
> KBUILD_CFLAGS += $(call cc-option,-Werror=designated-init)
>
> +# Warn if there is an enum types mismatch
> +KBUILD_CFLAGS += $(call cc-option,-Wenum-conversion)
> +
> # change __FILE__ to the relative path from the srctree
> KBUILD_CPPFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
>
> --
> 2.41.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] kbuild: Enable -Wenum-conversion by default
2023-07-05 16:20 ` Nathan Chancellor
@ 2023-07-15 5:46 ` Masahiro Yamada
0 siblings, 0 replies; 3+ messages in thread
From: Masahiro Yamada @ 2023-07-15 5:46 UTC (permalink / raw)
To: Nathan Chancellor; +Cc: Borislav Petkov, linux-kbuild, LKML
On Thu, Jul 6, 2023 at 1:20 AM Nathan Chancellor <nathan@kernel.org> wrote:
>
> On Wed, Jul 05, 2023 at 12:19:51AM +0200, Borislav Petkov wrote:
> > From: "Borislav Petkov (AMD)" <bp@alien8.de>
> >
> > This diagnostic checks whether there is a type mismatch when
> > converting enums (assign an enum of type A to an enum of type B, for
> > example) and it caught a legit issue recently. The reason it didn't show
> > is because that warning is enabled only with -Wextra with GCC. Clang,
> > however, enables it by default.
> >
> > GCC folks were considering enabling it by default but it was too noisy
> > back then:
> >
> > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78736
> >
> > Now that due to clang all those warnings have been fixed, enable it with
> > GCC too.
> >
> > allmodconfig tests done with: x86, arm{,64}, powerpc{,64}, riscv
> > crossbuilds.
> >
> > Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
>
> Yes please :)
>
> Reviewed-by: Nathan Chancellor <nathan@kernel.org>
>
Applied to linux-kbuild.
Thanks.
--
Best Regards
Masahiro Yamada
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-15 5:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-04 22:19 [PATCH] kbuild: Enable -Wenum-conversion by default Borislav Petkov
2023-07-05 16:20 ` Nathan Chancellor
2023-07-15 5:46 ` Masahiro Yamada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox