Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1452982
| From | Valdis Kletnieks <Valdis.Kletnieks@vt.edu> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2] bpf: silence warnings when building kernel/bpf/core.c with W=1 |
| Date | 2016-08-01 06:40 +0200 |
| Message-ID | <s1dbb-1vs-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Building with W=1 generates some 350 lines of warnings of the form:
kernel/bpf/core.c: In function '__bpf_prog_run':
kernel/bpf/core.c:476:33: warning: initialized field overwritten [-Woverride-init]
[BPF_ALU | BPF_ADD | BPF_X] = &&ALU_ADD_X,
^~
kernel/bpf/core.c:476:33: note: (near initialization for 'jumptable[12]')
Since they come from the way we intentionally build the table, silence
that one specific warning.
Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>
Version 2: Add bpf: subsystem tag to subject line
diff --git a/kernel/bpf/Makefile b/kernel/bpf/Makefile
index eed911d091da..bb915f9d9f92 100644
--- a/kernel/bpf/Makefile
+++ b/kernel/bpf/Makefile
@@ -1,3 +1,4 @@
+CFLAGS_core.o += -Wno-override-init
obj-y := core.o
obj-$(CONFIG_BPF_SYSCALL) += syscall.o verifier.o inode.o helpers.o
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2] bpf: silence warnings when building kernel/bpf/core.c with W=1 Valdis Kletnieks <Valdis.Kletnieks@vt.edu> - 2016-08-01 06:40 +0200
Re: [PATCH v2] bpf: silence warnings when building kernel/bpf/core.c with W=1 Alexei Starovoitov <alexei.starovoitov@gmail.com> - 2016-08-01 06:50 +0200
Re: [PATCH v2] bpf: silence warnings when building kernel/bpf/core.c with W=1 Valdis.Kletnieks@vt.edu - 2016-08-01 07:30 +0200
Re: [PATCH v2] bpf: silence warnings when building kernel/bpf/core.c with W=1 Alexei Starovoitov <alexei.starovoitov@gmail.com> - 2016-08-01 17:30 +0200
csiph-web