Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1452952
| From | Valdis Kletnieks <Valdis.Kletnieks@vt.edu> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] Suppress warnings when compiling fs/proc/task_mmu.c with W=1 |
| Date | 2016-08-01 05:30 +0200 |
| Message-ID | <s1c5s-N2-13@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Suppress a bunch of warnings of the form:
fs/proc/task_mmu.c: In function 'show_smap_vma_flags':
fs/proc/task_mmu.c:635:22: warning: initialized field overwritten [-Wt override-init]
[ilog2(VM_READ)] = "rd",
^~~~
fs/proc/task_mmu.c:635:22: note: (near initialization for 'mnemonics[0]')
They happen because of the way we intentionally build the table, so
silence the warning when building with 'make W=1'.
Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>
diff --git a/fs/proc/Makefile b/fs/proc/Makefile
index 7151ea428041..a8c13605b434 100644
--- a/fs/proc/Makefile
+++ b/fs/proc/Makefile
@@ -4,6 +4,7 @@
obj-y += proc.o
+CFLAGS_task_mmu.o += -Wno-override-init
proc-y := nommu.o task_nommu.o
proc-$(CONFIG_MMU) := task_mmu.o
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] Suppress warnings when compiling fs/proc/task_mmu.c with W=1 Valdis Kletnieks <Valdis.Kletnieks@vt.edu> - 2016-08-01 05:30 +0200
csiph-web