DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2 0/9] features and bugfixes for hns3
@ 2021-03-10  6:16 Min Hu (Connor)
  2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 1/9] net/hns3: support runtime config to select IO burst func Min Hu (Connor)
                   ` (9 more replies)
  0 siblings, 10 replies; 34+ messages in thread
From: Min Hu (Connor) @ 2021-03-10  6:16 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit

This series add five features according to the 21.05 roadmap, and
also two cleanups added.

Chengchang Tang (1):
  net/hns3: support for outer UDP cksum

Chengwen Feng (2):
  net/hns3: support runtime config to select IO burst func
  net/hns3: support Tx push quick doorbell to improve perf

Hongbo Zheng (4):
  net/hns3: adjust the format of RAS related structures
  net/hns3: delete redundant xstats RAS statistics
  net/hns3: support query Tx descriptor status
  net/hns3: support query Rx descriptor status

Min Hu (Connor) (2):
  net/hns3: support imissed stats for PF/VF
  net/hns3: support oerrors stats in PF

 doc/guides/nics/features/hns3.ini      |    2 +
 doc/guides/nics/features/hns3_vf.ini   |    2 +
 doc/guides/rel_notes/release_21_05.rst |    5 +
 drivers/net/hns3/hns3_cmd.c            |    3 +
 drivers/net/hns3/hns3_cmd.h            |   14 +
 drivers/net/hns3/hns3_ethdev.c         |   87 +-
 drivers/net/hns3/hns3_ethdev.h         |   73 +-
 drivers/net/hns3/hns3_ethdev_vf.c      |   19 +-
 drivers/net/hns3/hns3_intr.c           | 2127 ++++++++++++++++++--------------
 drivers/net/hns3/hns3_regs.h           |    2 +
 drivers/net/hns3/hns3_rxtx.c           |  288 ++++-
 drivers/net/hns3/hns3_rxtx.h           |   30 +-
 drivers/net/hns3/hns3_rxtx_vec_neon.h  |    2 +-
 drivers/net/hns3/hns3_rxtx_vec_sve.c   |    7 +-
 drivers/net/hns3/hns3_stats.c          |  388 +++---
 drivers/net/hns3/hns3_stats.h          |    2 +-
 16 files changed, 1923 insertions(+), 1128 deletions(-)

-- 
2.7.4


^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2021-03-19  1:08 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-10  6:16 [dpdk-dev] [PATCH v2 0/9] features and bugfixes for hns3 Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 1/9] net/hns3: support runtime config to select IO burst func Min Hu (Connor)
2021-03-11 17:31   ` Ferruh Yigit
2021-03-12  0:59     ` Min Hu (Connor)
2021-03-11 17:39   ` Ferruh Yigit
2021-03-12  1:01     ` Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 2/9] net/hns3: support Tx push quick doorbell to improve perf Min Hu (Connor)
2021-03-11 18:05   ` Ferruh Yigit
2021-03-12 11:02     ` Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 3/9] net/hns3: support for outer UDP cksum Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 4/9] net/hns3: adjust the format of RAS related structures Min Hu (Connor)
2021-03-11 18:25   ` Ferruh Yigit
2021-03-12  1:51     ` Min Hu (Connor)
2021-03-12 10:02       ` Ferruh Yigit
2021-03-12 10:51         ` Min Hu (Connor)
2021-03-16 11:32           ` Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 5/9] net/hns3: delete redundant xstats RAS statistics Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 6/9] net/hns3: support imissed stats for PF/VF Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 7/9] net/hns3: support oerrors stats in PF Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 8/9] net/hns3: support query Tx descriptor status Min Hu (Connor)
2021-03-10  6:16 ` [dpdk-dev] [PATCH v2 9/9] net/hns3: support query Rx " Min Hu (Connor)
2021-03-12 11:51 ` [dpdk-dev] [PATCH v3 0/8] features and bugfixes for hns3 Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 1/8] net/hns3: support runtime config to select IO burst func Min Hu (Connor)
2021-03-16 12:40     ` Ferruh Yigit
2021-03-17  1:14       ` Min Hu (Connor)
2021-03-17 15:28         ` Ferruh Yigit
2021-03-19  1:08           ` Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 2/8] net/hns3: support for outer UDP cksum Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 3/8] net/hns3: adjust the format of RAS related structures Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 4/8] net/hns3: delete redundant xstats RAS statistics Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 5/8] net/hns3: support imissed stats for PF/VF Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 6/8] net/hns3: support oerrors stats in PF Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 7/8] net/hns3: support query Tx descriptor status Min Hu (Connor)
2021-03-12 11:51   ` [dpdk-dev] [PATCH v3 8/8] net/hns3: support query Rx " Min Hu (Connor)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).