mbox series

[0/5] Enable XDP for ixgbevf

Message ID 20180316223406.7295-1-anthony.l.nguyen@intel.com
Headers show
Series Enable XDP for ixgbevf | expand

Message

Tony Nguyen March 16, 2018, 10:34 p.m. UTC
This patch series implements support for XDP on ixgbevf;
it is mainly based on the ixgbe implementation and supports
the following actions: XDP_PASS, XDP_DROP, and XDP_TX.

Tony Nguyen (5):
  ixgbevf: Add XDP support for pass and drop actions
  ixgbevf: Add support for XDP_TX action
  ixgbevf: Delay tail write for XDP packets
  ixgbevf: Add support for meta data
  ixgbevf: Add XDP queue stats reporting

 drivers/net/ethernet/intel/ixgbevf/ethtool.c      |  68 ++-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf.h      |  30 +-
 drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c | 489 +++++++++++++++++++---
 3 files changed, 518 insertions(+), 69 deletions(-)

Comments

David Miller March 17, 2018, 8:57 p.m. UTC | #1
From: Tony Nguyen <anthony.l.nguyen@intel.com>
Date: Fri, 16 Mar 2018 15:34:01 -0700

> This patch series implements support for XDP on ixgbevf;
> it is mainly based on the ixgbe implementation and supports
> the following actions: XDP_PASS, XDP_DROP, and XDP_TX.

I'm extremely pleased to see these patches.