Re: [PATCH net-next] bpf: fix build due to missing tc_verd

2015-06-04 Thread David Miller
From: Alexei Starovoitov a...@plumgrid.com Date: Thu, 4 Jun 2015 08:33:48 -0700 fix build error: net/core/filter.c: In function 'bpf_clone_redirect': net/core/filter.c:1429:18: error: 'struct sk_buff' has no member named 'tc_verd' if (G_TC_AT(skb2-tc_verd) AT_INGRESS) Fixes:

[PATCH net-next] bpf: fix build due to missing tc_verd

2015-06-04 Thread Alexei Starovoitov
fix build error: net/core/filter.c: In function 'bpf_clone_redirect': net/core/filter.c:1429:18: error: 'struct sk_buff' has no member named 'tc_verd' if (G_TC_AT(skb2-tc_verd) AT_INGRESS) Fixes: 3896d655f4d4 (bpf: introduce bpf_clone_redirect() helper) Reported-by: Or Gerlitz