Yue Haibing (1): Add generic xdp multi-buffer support
bitcoffee (1): ipvlan: support use xdp native mode
drivers/net/ipvlan/ipvlan.h | 1 + drivers/net/ipvlan/ipvlan_core.c | 16 ++ drivers/net/ipvlan/ipvlan_main.c | 22 ++ include/linux/netdevice.h | 7 + include/linux/skbuff.h | 6 + include/net/xdp.h | 42 ++++ include/net/xdp_sock.h | 20 ++ include/net/xdp_sock_drv.h | 14 ++ include/net/xsk_buff_pool.h | 7 + include/uapi/linux/if_xdp.h | 13 + net/core/dev.c | 210 ++++++++++++++++ net/core/filter.c | 4 + net/core/skbuff.c | 90 +++++++ net/xdp/Kconfig | 8 + net/xdp/xsk.c | 405 +++++++++++++++++++++++++++++++ net/xdp/xsk_queue.h | 105 ++++++++ 16 files changed, 970 insertions(+)