[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240326144741.3094687-1-arnd@kernel.org>
Date: Tue, 26 Mar 2024 15:47:15 +0100
From: Arnd Bergmann <arnd@...nel.org>
To: linux-kbuild@...r.kernel.org,
Masahiro Yamada <masahiroy@...nel.org>,
Nathan Chancellor <nathan@...nel.org>
Cc: Nicolas Schier <nicolas@...sle.eu>,
Arnd Bergmann <arnd@...db.de>,
Bill Metzenthen <billm@...bpc.org.au>,
Thomas Gleixner <tglx@...utronix.de>,
x86@...nel.org,
Damien Le Moal <dlemoal@...nel.org>,
Jean Delvare <jdelvare@...e.com>,
Harry Wentland <harry.wentland@....com>,
Jani Nikula <jani.nikula@...ux.intel.com>,
Sergey Shtylyov <s.shtylyov@....ru>,
Jakub Kicinski <kuba@...nel.org>,
Sudip Mukherjee <sudipm.mukherjee@...il.com>,
Andrew Jeffery <andrew@...econstruct.com.au>,
"Manoj N. Kumar" <manoj@...ux.ibm.com>,
"Martin K. Petersen" <martin.petersen@...cle.com>,
Alexei Starovoitov <ast@...nel.org>,
Steven Rostedt <rostedt@...dmis.org>,
Luis Chamberlain <mcgrof@...nel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Greg Kroah-Hartman <gregkh@...e.de>,
linux-kernel@...r.kernel.org,
linux-ide@...r.kernel.org,
amd-gfx@...ts.freedesktop.org,
dri-devel@...ts.freedesktop.org,
intel-gfx@...ts.freedesktop.org,
nouveau@...ts.freedesktop.org,
intel-xe@...ts.freedesktop.org,
netdev@...r.kernel.org,
linux-renesas-soc@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org,
linux-scsi@...r.kernel.org,
bpf@...r.kernel.org,
linux-trace-kernel@...r.kernel.org,
linux-modules@...r.kernel.org,
linux-mm@...ck.org,
llvm@...ts.linux.dev
Subject: [PATCH 00/12] kbuild: enable some -Wextra warnings by default
From: Arnd Bergmann <arnd@...db.de>
This is a follow-up on a couple of patch series I sent in the past,
enabling -Wextra (aside from stuff that is explicitly disabled),
-Wcast-function-pointer-strict and -Wrestrict.
I have tested these on 'defconfig' and 'allmodconfig' builds across
all architectures, as well as many 'randconfig' builds on x86, arm and
arm64. It would be nice to have all the Makefile.extrawarn changes in
v6.10, hopefully with the driver fixes going in before that through
the respective subsystem trees.
Arnd
Arnd Bergmann (12):
kbuild: make -Woverride-init warnings more consistent
[v3] parport: mfc3: avoid empty-body warning
kbuild: turn on -Wextra by default
kbuild: remove redundant extra warning flags
firmware: dmi-id: add a release callback function
nouveau: fix function cast warning
cxlflash: fix function pointer cast warnings
x86: math-emu: fix function cast warnings
kbuild: enable -Wcast-function-type-strict unconditionally
sata: sx4: fix pdc20621_get_from_dimm() on 64-bit
[v4] kallsyms: rework symbol lookup return codes
kbuild: turn on -Wrestrict by default
arch/x86/math-emu/fpu_etc.c | 9 +++--
arch/x86/math-emu/fpu_trig.c | 6 ++--
arch/x86/math-emu/reg_constant.c | 7 +++-
drivers/ata/sata_sx4.c | 6 ++--
drivers/firmware/dmi-id.c | 7 +++-
.../gpu/drm/amd/display/dc/dce110/Makefile | 2 +-
.../gpu/drm/amd/display/dc/dce112/Makefile | 2 +-
.../gpu/drm/amd/display/dc/dce120/Makefile | 2 +-
drivers/gpu/drm/amd/display/dc/dce60/Makefile | 2 +-
drivers/gpu/drm/amd/display/dc/dce80/Makefile | 2 +-
drivers/gpu/drm/i915/Makefile | 6 ++--
.../drm/nouveau/nvkm/subdev/bios/shadowof.c | 7 +++-
drivers/gpu/drm/xe/Makefile | 4 +--
drivers/net/ethernet/renesas/sh_eth.c | 2 +-
drivers/parport/parport_mfc3.c | 3 +-
drivers/pinctrl/aspeed/Makefile | 2 +-
drivers/scsi/cxlflash/lunmgt.c | 4 +--
drivers/scsi/cxlflash/main.c | 14 ++++----
drivers/scsi/cxlflash/superpipe.c | 34 +++++++++----------
drivers/scsi/cxlflash/superpipe.h | 11 +++---
drivers/scsi/cxlflash/vlun.c | 7 ++--
fs/proc/Makefile | 2 +-
include/linux/filter.h | 14 ++++----
include/linux/ftrace.h | 6 ++--
include/linux/module.h | 14 ++++----
kernel/bpf/Makefile | 2 +-
kernel/bpf/core.c | 7 ++--
kernel/kallsyms.c | 23 +++++++------
kernel/module/kallsyms.c | 26 +++++++-------
kernel/trace/ftrace.c | 13 +++----
mm/Makefile | 3 +-
scripts/Makefile.extrawarn | 33 ++++--------------
32 files changed, 134 insertions(+), 148 deletions(-)
--
2.39.2
Cc: Bill Metzenthen <billm@...bpc.org.au>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: x86@...nel.org
Cc: Damien Le Moal <dlemoal@...nel.org>
Cc: Jean Delvare <jdelvare@...e.com>
Cc: Harry Wentland <harry.wentland@....com>
Cc: Jani Nikula <jani.nikula@...ux.intel.com>
Cc: Sergey Shtylyov <s.shtylyov@....ru>
Cc: Jakub Kicinski <kuba@...nel.org>
Cc: Sudip Mukherjee <sudipm.mukherjee@...il.com>
Cc: Andrew Jeffery <andrew@...econstruct.com.au>
Cc: "Manoj N. Kumar" <manoj@...ux.ibm.com>
Cc: "Martin K. Petersen" <martin.petersen@...cle.com>
Cc: Alexei Starovoitov <ast@...nel.org>
Cc: Steven Rostedt <rostedt@...dmis.org>
Cc: Luis Chamberlain <mcgrof@...nel.org>
Cc: Andrew Morton <akpm@...ux-foundation.org>
Cc: Masahiro Yamada <masahiroy@...nel.org>
Cc: Nathan Chancellor <nathan@...nel.org>
Cc: Nicolas Schier <nicolas@...sle.eu>
Cc: Greg Kroah-Hartman <gregkh@...e.de>
Cc: linux-kernel@...r.kernel.org
Cc: linux-ide@...r.kernel.org
Cc: amd-gfx@...ts.freedesktop.org
Cc: dri-devel@...ts.freedesktop.org
Cc: intel-gfx@...ts.freedesktop.org
Cc: nouveau@...ts.freedesktop.org
Cc: intel-xe@...ts.freedesktop.org
Cc: netdev@...r.kernel.org
Cc: linux-renesas-soc@...r.kernel.org
Cc: linux-arm-kernel@...ts.infradead.org
Cc: linux-scsi@...r.kernel.org
Cc: bpf@...r.kernel.org
Cc: linux-trace-kernel@...r.kernel.org
Cc: linux-modules@...r.kernel.org
Cc: linux-mm@...ck.org
Cc: linux-kbuild@...r.kernel.org
Cc: llvm@...ts.linux.dev
Powered by blists - more mailing lists