DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 00/15] fix and feature for hns3 PMD
@ 2022-01-07 10:15 Min Hu (Connor)
  2022-01-07 10:15 ` [PATCH 01/15] net/hns3: remove unnecessary assignment Min Hu (Connor)
                   ` (16 more replies)
  0 siblings, 17 replies; 38+ messages in thread
From: Min Hu (Connor) @ 2022-01-07 10:15 UTC (permalink / raw)
  To: dev; +Cc: ferruh.yigit, thomas

This patch contains 15 patches, which include fixing codecheck warning
,code refactor and indirect counter action support.


Chengwen Feng (4):
  net/hns3: remove invalid encapsulation function
  net/hns3: delete strerror invoke
  net/hns3: rename function
  net/hns3: support indirect counter action

Huisong Li (10):
  net/hns3: remove unnecessary assignment
  net/hns3: fix a misjudgment expression
  net/hns3: extract a common API to initialize MAC addrs
  net/hns3: remove unnecessary black lines
  net/hns3: extract a function to handle reset fail
  net/hns3: extract functions to create RSS and FDIR flow rule
  net/hns3: remove unused variables
  net/hns3: remove the number of queue descriptors
  net/hns3: remove the printing of memory addresses
  net/hns3: extract a common interface to obtain revision ID

Jie Hai (1):
  net/hns3: remove unnecessary 'inline'

 drivers/net/hns3/hns3_cmd.c       |  12 +-
 drivers/net/hns3/hns3_common.c    |  76 ++++++
 drivers/net/hns3/hns3_common.h    |   3 +
 drivers/net/hns3/hns3_dcb.c       |  12 +-
 drivers/net/hns3/hns3_ethdev.c    |  85 ++-----
 drivers/net/hns3/hns3_ethdev.h    |   5 -
 drivers/net/hns3/hns3_ethdev_vf.c |  93 +------
 drivers/net/hns3/hns3_fdir.c      |   3 +-
 drivers/net/hns3/hns3_fdir.h      |   1 +
 drivers/net/hns3/hns3_flow.c      | 399 ++++++++++++++++++++++++------
 drivers/net/hns3/hns3_flow.h      |  11 +-
 drivers/net/hns3/hns3_intr.c      |  54 ++--
 drivers/net/hns3/hns3_rxtx.c      |   6 -
 drivers/net/hns3/hns3_rxtx.h      |   2 -
 14 files changed, 476 insertions(+), 286 deletions(-)

-- 
2.33.0


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

end of thread, other threads:[~2022-01-28  0:40 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-07 10:15 [PATCH 00/15] fix and feature for hns3 PMD Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 01/15] net/hns3: remove unnecessary assignment Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 02/15] net/hns3: fix a misjudgment expression Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 03/15] net/hns3: extract a common API to initialize MAC addrs Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 04/15] net/hns3: remove unnecessary 'inline' Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 05/15] net/hns3: remove unnecessary black lines Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 06/15] net/hns3: extract a function to handle reset fail Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 07/15] net/hns3: extract functions to create RSS and FDIR flow rule Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 08/15] net/hns3: remove unused variables Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 09/15] net/hns3: remove the number of queue descriptors Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 10/15] net/hns3: remove the printing of memory addresses Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 11/15] net/hns3: extract a common interface to obtain revision ID Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 12/15] net/hns3: remove invalid encapsulation function Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 13/15] net/hns3: delete strerror invoke Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 14/15] net/hns3: rename function Min Hu (Connor)
2022-01-07 10:15 ` [PATCH 15/15] net/hns3: support indirect counter action Min Hu (Connor)
2022-01-21 17:29 ` [PATCH 00/15] fix and feature for hns3 PMD Ferruh Yigit
2022-01-22  1:52   ` Min Hu (Connor)
2022-01-22  1:51 ` [PATCH v2 " Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 01/15] net/hns3: remove unnecessary assignment Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 02/15] net/hns3: fix a misjudgment expression Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 03/15] net/hns3: extract a common API to initialize MAC addrs Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 04/15] net/hns3: remove unnecessary 'inline' Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 05/15] net/hns3: remove unnecessary black lines Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 06/15] net/hns3: extract a function to handle reset fail Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 07/15] net/hns3: remove unused variables Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 08/15] net/hns3: remove the number of queue descriptors Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 09/15] net/hns3: remove the printing of memory addresses Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 10/15] net/hns3: extract a common interface to obtain revision ID Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 11/15] net/hns3: remove invalid encapsulation function Min Hu (Connor)
2022-01-27 13:04     ` Ferruh Yigit
2022-01-22  1:51   ` [PATCH v2 12/15] net/hns3: delete strerror invoke Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 13/15] net/hns3: rename function Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 14/15] net/hns3: extract functions to create RSS and FDIR flow rule Min Hu (Connor)
2022-01-22  1:51   ` [PATCH v2 15/15] net/hns3: support indirect counter action Min Hu (Connor)
2022-01-27 12:49   ` [PATCH v2 00/15] fix and feature for hns3 PMD Ferruh Yigit
2022-01-27 13:50     ` Ferruh Yigit
2022-01-28  0:40       ` 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).