blk-mq: Build default queue map via group_cpus_evenly()
[linux-block.git] / scripts / Makefile.extrawarn
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
a86fe353 2# ==========================================================================
a86fe353
MY
3# make W=... settings
4#
c77d06e7
YD
5# There are four warning groups enabled by W=1, W=2, W=3, and W=e
6# They are independent, and can be combined like W=12 or W=123e.
a86fe353
MY
7# ==========================================================================
8
321cb030
XW
9KBUILD_CFLAGS += $(call cc-disable-warning, packed-not-aligned)
10
e27128db
MY
11# backward compatibility
12KBUILD_EXTRA_WARN ?= $(KBUILD_ENABLE_EXTRA_GCC_CHECKS)
13
a86fe353 14ifeq ("$(origin W)", "command line")
e27128db 15 KBUILD_EXTRA_WARN := $(W)
a86fe353
MY
16endif
17
e27128db
MY
18export KBUILD_EXTRA_WARN
19
64a91907
MY
20#
21# W=1 - warnings which may be relevant and do not occur too often
22#
e27128db 23ifneq ($(findstring 1, $(KBUILD_EXTRA_WARN)),)
a86fe353 24
64a91907
MY
25KBUILD_CFLAGS += -Wextra -Wunused -Wno-unused-parameter
26KBUILD_CFLAGS += -Wmissing-declarations
27KBUILD_CFLAGS += -Wmissing-format-attribute
28KBUILD_CFLAGS += -Wmissing-prototypes
29KBUILD_CFLAGS += -Wold-style-definition
30KBUILD_CFLAGS += -Wmissing-include-dirs
31KBUILD_CFLAGS += $(call cc-option, -Wunused-but-set-variable)
32KBUILD_CFLAGS += $(call cc-option, -Wunused-const-variable)
33KBUILD_CFLAGS += $(call cc-option, -Wpacked-not-aligned)
34KBUILD_CFLAGS += $(call cc-option, -Wstringop-truncation)
4c8dd95a 35# The following turn off the warnings enabled by -Wextra
64a91907
MY
36KBUILD_CFLAGS += -Wno-missing-field-initializers
37KBUILD_CFLAGS += -Wno-sign-compare
355a3587 38KBUILD_CFLAGS += -Wno-type-limits
1344794a 39KBUILD_CFLAGS += -Wno-shift-negative-value
a86fe353 40
80b6093b 41KBUILD_CPPFLAGS += -Wundef
6863f564
MY
42KBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN1
43
26ea6bb1
BW
44else
45
64a91907
MY
46# Some diagnostics enabled by default are noisy.
47# Suppress them by using -Wno... except for W=1.
48
076f421d 49ifdef CONFIG_CC_IS_CLANG
a1494304 50KBUILD_CFLAGS += -Wno-initializer-overrides
b0839b28 51# Clang before clang-16 would warn on default argument promotions.
88b61e3b 52ifneq ($(call clang-min-version, 160000),y)
b0839b28 53# Disable -Wformat
21f9c8a1 54KBUILD_CFLAGS += -Wno-format
b0839b28
ND
55# Then re-enable flags that were part of the -Wformat group that aren't
56# problematic.
57KBUILD_CFLAGS += -Wformat-extra-args -Wformat-invalid-specifier
58KBUILD_CFLAGS += -Wformat-zero-length -Wnonnull
59# Requires clang-12+.
88b61e3b 60ifeq ($(call clang-min-version, 120000),y)
b0839b28
ND
61KBUILD_CFLAGS += -Wformat-insufficient-args
62endif
63endif
a1494304 64KBUILD_CFLAGS += -Wno-sign-compare
82f2bc2f 65KBUILD_CFLAGS += $(call cc-disable-warning, pointer-to-enum-cast)
afe956c5 66KBUILD_CFLAGS += -Wno-tautological-constant-out-of-range-compare
1cf5f151 67KBUILD_CFLAGS += $(call cc-disable-warning, unaligned-access)
21206351 68KBUILD_CFLAGS += $(call cc-disable-warning, cast-function-type-strict)
26ea6bb1 69endif
64a91907
MY
70
71endif
72
73#
74# W=2 - warnings which occur quite often but may still be relevant
75#
e27128db 76ifneq ($(findstring 2, $(KBUILD_EXTRA_WARN)),)
64a91907 77
64a91907 78KBUILD_CFLAGS += -Wdisabled-optimization
64a91907
MY
79KBUILD_CFLAGS += -Wshadow
80KBUILD_CFLAGS += $(call cc-option, -Wlogical-op)
81KBUILD_CFLAGS += -Wmissing-field-initializers
355a3587 82KBUILD_CFLAGS += -Wtype-limits
64a91907
MY
83KBUILD_CFLAGS += $(call cc-option, -Wmaybe-uninitialized)
84KBUILD_CFLAGS += $(call cc-option, -Wunused-macros)
85
6863f564
MY
86KBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN2
87
64a91907
MY
88endif
89
90#
91# W=3 - more obscure warnings, can most likely be ignored
92#
e27128db 93ifneq ($(findstring 3, $(KBUILD_EXTRA_WARN)),)
64a91907
MY
94
95KBUILD_CFLAGS += -Wbad-function-cast
095fbca0 96KBUILD_CFLAGS += -Wcast-align
64a91907
MY
97KBUILD_CFLAGS += -Wcast-qual
98KBUILD_CFLAGS += -Wconversion
99KBUILD_CFLAGS += -Wpacked
100KBUILD_CFLAGS += -Wpadded
101KBUILD_CFLAGS += -Wpointer-arith
102KBUILD_CFLAGS += -Wredundant-decls
a97ea93e 103KBUILD_CFLAGS += -Wsign-compare
64a91907
MY
104KBUILD_CFLAGS += -Wswitch-default
105KBUILD_CFLAGS += $(call cc-option, -Wpacked-bitfield-compat)
106
6863f564
MY
107KBUILD_CPPFLAGS += -DKBUILD_EXTRA_WARN3
108
a86fe353 109endif
c77d06e7
YD
110
111#
112# W=e - error out on warnings
113#
114ifneq ($(findstring e, $(KBUILD_EXTRA_WARN)),)
115
116KBUILD_CFLAGS += -Werror
117
118endif