libbpf: remove compile time warning from libbpf_util.h
authorMagnus Karlsson <magnus.karlsson@intel.com>
Thu, 18 Apr 2019 07:21:10 +0000 (09:21 +0200)
committerAlexei Starovoitov <ast@kernel.org>
Thu, 18 Apr 2019 23:07:12 +0000 (16:07 -0700)
Having a helpful compile time warning in libbpf_util.h is not a good
idea since all warnings are treated as errors. Change this into a
comment in the code instead.

Fixes: b7e3a28019c9 ("libbpf: remove dependency on barrier.h in xsk.h")
Signed-off-by: Magnus Karlsson <magnus.karlsson@intel.com>
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/lib/bpf/libbpf_util.h

index 172b707e007bf607457b7749155fb579431c7e12..da94c4cb2e4db5094e9b3e3a91ae05f8b1d9bbf6 100644 (file)
@@ -46,7 +46,7 @@ do {                          \
 # define libbpf_smp_mb() asm volatile("dmb ish" : : : "memory")
 # define libbpf_smp_rwmb() libbpf_smp_mb()
 #else
-# warning Architecture missing native barrier functions in libbpf_util.h.
+/* Architecture missing native barrier functions. */
 # define libbpf_smp_rmb() __sync_synchronize()
 # define libbpf_smp_wmb() __sync_synchronize()
 # define libbpf_smp_mb() __sync_synchronize()