Re: [RFC net-next 1/8] xdp: pass XDP flags into install handlers

2017-06-19 Thread Daniel Borkmann
On 06/17/2017 01:57 AM, Jakub Kicinski wrote: Pass XDP flags to the xdp ndo. This will allow drivers to look at the mode flags and make decisions about offload. Signed-off-by: Jakub Kicinski Acked-by: Daniel Borkmann

[RFC net-next 1/8] xdp: pass XDP flags into install handlers

2017-06-16 Thread Jakub Kicinski
Pass XDP flags to the xdp ndo. This will allow drivers to look at the mode flags and make decisions about offload. Signed-off-by: Jakub Kicinski --- include/linux/netdevice.h | 1 + net/core/dev.c| 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/linux