mbox

[v4,0/6] add idpf pmd enhancement features

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

Message

Liu, Mingxia Feb. 7, 2023, 9:56 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/patch/20230207084549.2225214-2-wenjun1.wu@intel.com/

v2 changes:
 - Fix rss lut config issue.
v3 changes:
 - rebase to the new baseline.
v4 changes:
 - rebase to the new baseline.
 - optimize some code
 - give "not supported" tips when user want to config rss hash type
 - if stats reset fails at initialization time, don't rollback, just
   print ERROR info.

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   |  10 +
 drivers/common/idpf/idpf_common_rxtx.c     | 151 +++++
 drivers/common/idpf/idpf_common_rxtx.h     |   3 +
 drivers/common/idpf/idpf_common_virtchnl.c | 171 +++++-
 drivers/common/idpf/idpf_common_virtchnl.h |  15 +
 drivers/common/idpf/version.map            |   8 +
 drivers/net/idpf/idpf_ethdev.c             | 606 ++++++++++++++++++++-
 drivers/net/idpf/idpf_ethdev.h             |   5 +-
 drivers/net/idpf/idpf_rxtx.c               |  28 +
 drivers/net/idpf/idpf_rxtx.h               |   2 +
 11 files changed, 996 insertions(+), 20 deletions(-)