mbox

[0/6] add idpf pmd enhancement features

Message ID 20230111071545.504706-1-mingxia.liu@intel.com (mailing list archive)
Headers

Message

Liu, Mingxia Jan. 11, 2023, 7:15 a.m. UTC
  This patchset add several enhancement features of idpf pmd.
Including the following:
- add hw statistics, support stats/xstats ops
- add rss configure/show ops
- add event handle: link status
- add scattered data path for single queue

This patchset is based on the refactor idpf PMD code:
http://patches.dpdk.org/project/dpdk/cover/20230106090501.9106-1-beilei.xing@intel.com/
http://patches.dpdk.org/project/dpdk/cover/20230106091627.13530-1-beilei.xing@intel.com/
http://patches.dpdk.org/project/dpdk/cover/20230106064645.2657232-1-wenjun1.wu@intel.com/

v2 changes:
 - Fix rss lut config issue.

Mingxia Liu (6):
  common/idpf: add hw statistics
  common/idpf: add RSS set/get ops
  common/idpf: support single q scatter RX datapath
  common/idpf: add rss_offload hash in singleq rx
  common/idpf: add alarm to support handle vchnl message
  common/idpf: add xstats ops

 drivers/common/idpf/idpf_common_device.c   |  17 +
 drivers/common/idpf/idpf_common_device.h   |  11 +-
 drivers/common/idpf/idpf_common_rxtx.c     | 150 +++++
 drivers/common/idpf/idpf_common_rxtx.h     |   3 +
 drivers/common/idpf/idpf_common_virtchnl.c | 157 ++++-
 drivers/common/idpf/idpf_common_virtchnl.h |  18 +-
 drivers/common/idpf/version.map            |   9 +
 drivers/net/idpf/idpf_ethdev.c             | 638 ++++++++++++++++++++-
 drivers/net/idpf/idpf_ethdev.h             |   7 +-
 drivers/net/idpf/idpf_rxtx.c               |  26 +-
 drivers/net/idpf/idpf_rxtx.h               |   2 +
 11 files changed, 1014 insertions(+), 24 deletions(-)