summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorAlexei Starovoitov <ast@fb.com>2016-12-01 21:31:12 -0500
committerDavid S. Miller <davem@davemloft.net>2016-12-03 16:01:14 -0500
commit69a9d09b2251aeb968e76f39f2b89774312daa3d (patch)
tree5f0f18269ce9086baa80f2842b6acb86cfd5d995 /samples
parent6af2d5fff2fdcd481cb9a4f354a0880142b17c60 (diff)
samples/bpf: silence compiler warnings
silence some of the clang compiler warnings like: include/linux/fs.h:2693:9: warning: comparison of unsigned enum expression < 0 is always false arch/x86/include/asm/processor.h:491:30: warning: taking address of packed member 'sp0' of class or structure 'x86_hw_tss' may result in an unaligned pointer value include/linux/cgroup-defs.h:326:16: warning: field 'cgrp' with variable sized type 'struct cgroup' not at the end of a struct or class is a GNU extension since they add too much noise to samples/bpf/ build. Signed-off-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples')
-rw-r--r--samples/bpf/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile
index bfc2cb88a1f7..13c3e1869890 100644
--- a/samples/bpf/Makefile
+++ b/samples/bpf/Makefile
@@ -168,4 +168,6 @@ $(obj)/%.o: $(src)/%.c
168 $(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) \ 168 $(CLANG) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) $(EXTRA_CFLAGS) \
169 -D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \ 169 -D__KERNEL__ -D__ASM_SYSREG_H -Wno-unused-value -Wno-pointer-sign \
170 -Wno-compare-distinct-pointer-types \ 170 -Wno-compare-distinct-pointer-types \
171 -Wno-gnu-variable-sized-type-not-at-end \
172 -Wno-address-of-packed-member -Wno-tautological-compare \
171 -O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@ 173 -O2 -emit-llvm -c $< -o -| $(LLC) -march=bpf -filetype=obj -o $@