All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools/net: Use include/uapi with __EXPORTED_HEADERS__
@ 2015-11-11 22:24 Kamal Mostafa
  2015-11-12  9:39 ` Daniel Borkmann
  2015-11-15 22:25 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Kamal Mostafa @ 2015-11-11 22:24 UTC (permalink / raw)
  To: linux-kernel; +Cc: Kamal Mostafa, David S. Miller, netdev

Use the local uapi headers to keep in sync with "recently" added #define's
(e.g. SKF_AD_VLAN_TPID).  Refactored CFLAGS, and bpf_asm doesn't need -I.

Fixes: 3f356385e8a449e1d7cfc6b6f8d634ac4f5581a0
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
---
 tools/net/Makefile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/tools/net/Makefile b/tools/net/Makefile
index ee577ea..ddf8880 100644
--- a/tools/net/Makefile
+++ b/tools/net/Makefile
@@ -4,6 +4,9 @@ CC = gcc
 LEX = flex
 YACC = bison
 
+CFLAGS += -Wall -O2
+CFLAGS += -D__EXPORTED_HEADERS__ -I../../include/uapi -I../../include
+
 %.yacc.c: %.y
 	$(YACC) -o $@ -d $<
 
@@ -12,15 +15,13 @@ YACC = bison
 
 all : bpf_jit_disasm bpf_dbg bpf_asm
 
-bpf_jit_disasm : CFLAGS = -Wall -O2 -DPACKAGE='bpf_jit_disasm'
+bpf_jit_disasm : CFLAGS += -DPACKAGE='bpf_jit_disasm'
 bpf_jit_disasm : LDLIBS = -lopcodes -lbfd -ldl
 bpf_jit_disasm : bpf_jit_disasm.o
 
-bpf_dbg : CFLAGS = -Wall -O2
 bpf_dbg : LDLIBS = -lreadline
 bpf_dbg : bpf_dbg.o
 
-bpf_asm : CFLAGS = -Wall -O2 -I.
 bpf_asm : LDLIBS =
 bpf_asm : bpf_asm.o bpf_exp.yacc.o bpf_exp.lex.o
 bpf_exp.lex.o : bpf_exp.yacc.c
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] tools/net: Use include/uapi with __EXPORTED_HEADERS__
  2015-11-11 22:24 [PATCH] tools/net: Use include/uapi with __EXPORTED_HEADERS__ Kamal Mostafa
@ 2015-11-12  9:39 ` Daniel Borkmann
  2015-11-15 22:25 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: Daniel Borkmann @ 2015-11-12  9:39 UTC (permalink / raw)
  To: Kamal Mostafa, linux-kernel; +Cc: David S. Miller, netdev

On 11/11/2015 11:24 PM, Kamal Mostafa wrote:
> Use the local uapi headers to keep in sync with "recently" added #define's
> (e.g. SKF_AD_VLAN_TPID).  Refactored CFLAGS, and bpf_asm doesn't need -I.
>
> Fixes: 3f356385e8a449e1d7cfc6b6f8d634ac4f5581a0
> Signed-off-by: Kamal Mostafa <kamal@canonical.com>

Acked-by: Daniel Borkmann <daniel@iogearbox.net>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] tools/net: Use include/uapi with __EXPORTED_HEADERS__
  2015-11-11 22:24 [PATCH] tools/net: Use include/uapi with __EXPORTED_HEADERS__ Kamal Mostafa
  2015-11-12  9:39 ` Daniel Borkmann
@ 2015-11-15 22:25 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2015-11-15 22:25 UTC (permalink / raw)
  To: kamal; +Cc: linux-kernel, netdev

From: Kamal Mostafa <kamal@canonical.com>
Date: Wed, 11 Nov 2015 14:24:27 -0800

> Use the local uapi headers to keep in sync with "recently" added #define's
> (e.g. SKF_AD_VLAN_TPID).  Refactored CFLAGS, and bpf_asm doesn't need -I.
> 
> Fixes: 3f356385e8a449e1d7cfc6b6f8d634ac4f5581a0
> Signed-off-by: Kamal Mostafa <kamal@canonical.com>

Applied and queued up for -stable, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-11-15 22:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-11 22:24 [PATCH] tools/net: Use include/uapi with __EXPORTED_HEADERS__ Kamal Mostafa
2015-11-12  9:39 ` Daniel Borkmann
2015-11-15 22:25 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.