]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
Makefile.extrawarn: Move -Wunaligned-access to W=1
authorNathan Chancellor <nathan@kernel.org>
Wed, 2 Feb 2022 23:05:16 +0000 (16:05 -0700)
committerPaolo Pisati <paolo.pisati@canonical.com>
Mon, 7 Mar 2022 10:42:06 +0000 (11:42 +0100)
commit62d38a1fde18ed88a6804672f79eb07924cb33f0
treea776d589f1daa3f32db7d9c6c5ec41899aef56c1
parent56d9440385a18605f605227cf5f2e7e6cf70a380
Makefile.extrawarn: Move -Wunaligned-access to W=1

BugLink: https://bugs.launchpad.net/bugs/1963889
commit 1cf5f151d25fcca94689efd91afa0253621fb33a upstream.

-Wunaligned-access is a new warning in clang that is default enabled for
arm and arm64 under certain circumstances within the clang frontend (see
LLVM commit below). On v5.17-rc2, an ARCH=arm allmodconfig build shows
1284 total/70 unique instances of this warning (most of the instances
are in header files), which is quite noisy.

To keep a normal build green through CONFIG_WERROR, only show this
warning with W=1, which will allow automated build systems to catch new
instances of the warning so that the total number can be driven down to
zero eventually since catching unaligned accesses at compile time would
be generally useful.

Cc: stable@vger.kernel.org
Link: https://github.com/llvm/llvm-project/commit/35737df4dcd28534bd3090157c224c19b501278a
Link: https://github.com/ClangBuiltLinux/linux/issues/1569
Link: https://github.com/ClangBuiltLinux/linux/issues/1576
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
scripts/Makefile.extrawarn