DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 00/19] some bugfixes and clean code for hns3 - part2
@ 2022-09-30  7:22 Dongdong Liu
  2022-09-30  7:22 ` [PATCH 01/19] net/hns3: fix have no valid RSS rule Dongdong Liu
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Dongdong Liu @ 2022-09-30  7:22 UTC (permalink / raw)
  To: dev, andrew.rybchenko, ferruh.yigit, thomas
  Cc: stable, fengchengwen, yisen.zhuang, liudongdong3, lihuisong, haijie1

This patchset include some bugfixes and clean code for hns3.
This patchset is based on the patchset [1] that have been sent out
before. Depend on [1] applied first.

[1]: [PATCH RESEND 00/13] some bugfixes and clean code for hns3
https://patches.dpdk.org/project/dpdk/list/?series=24533

Chengwen Feng (5):
  net/hns3: fix header file self contained
  net/hns3: remove unused structure definition
  net/hns3: do not use reserved identifier macro
  net/hns3: revert fix mailbox communication with HW
  net/hns3: fix VF mark wrong message processed

Dongdong Liu (1):
  net/hns3: fix gcov compile warning

Huisong Li (11):
  net/hns3: fix have no valid RSS rule
  net/hns3: fix RSS filter restore
  net/hns3: fix the lock protection of RSS flow rule
  net/hns3: fix RSS flow rule restore failed
  net/hns3: move flow direction rule recovery position
  net/hns3: fix hns3 restore filter function input
  net/hns3: fix incorrect packet type report for GENEVE
  net/hns3: fix fail to enable IPV4 or IPV6 packet RSS
  net/hns3: fix some spelling errors
  net/hns3: fix inconsistent RSS behavior
  net/hns3: add check for L3 and L4 type

Jie Hai (2):
  net/hns3: fix magic numbers
  net/hns3: fix the obtaination of minimum Tx frame length

 drivers/net/hns3/hns3_cmd.h           |  34 ++-
 drivers/net/hns3/hns3_common.c        |   2 +-
 drivers/net/hns3/hns3_common.h        |   6 +-
 drivers/net/hns3/hns3_dcb.h           |  10 +-
 drivers/net/hns3/hns3_dump.h          |   6 +-
 drivers/net/hns3/hns3_ethdev.c        |  27 +--
 drivers/net/hns3/hns3_ethdev.h        |   9 +-
 drivers/net/hns3/hns3_ethdev_vf.c     |  14 +-
 drivers/net/hns3/hns3_fdir.c          |   3 +
 drivers/net/hns3/hns3_fdir.h          |  11 +-
 drivers/net/hns3/hns3_flow.c          |  86 ++++----
 drivers/net/hns3/hns3_flow.h          |  10 +-
 drivers/net/hns3/hns3_intr.c          |   2 +-
 drivers/net/hns3/hns3_intr.h          |   6 +-
 drivers/net/hns3/hns3_logs.h          |   6 +-
 drivers/net/hns3/hns3_mbx.c           |   8 +-
 drivers/net/hns3/hns3_mbx.h           |  10 +-
 drivers/net/hns3/hns3_mp.h            |   8 +-
 drivers/net/hns3/hns3_regs.h          |   9 +-
 drivers/net/hns3/hns3_rss.c           | 291 ++++++++++++++++++--------
 drivers/net/hns3/hns3_rss.h           |  15 +-
 drivers/net/hns3/hns3_rxtx.c          |   6 +-
 drivers/net/hns3/hns3_rxtx.h          |  15 +-
 drivers/net/hns3/hns3_rxtx_vec.h      |   6 +-
 drivers/net/hns3/hns3_rxtx_vec_neon.h |   6 +-
 drivers/net/hns3/hns3_stats.h         |  11 +-
 drivers/net/hns3/hns3_tm.h            |   8 +-
 27 files changed, 390 insertions(+), 235 deletions(-)

--
2.22.0


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

end of thread, other threads:[~2022-10-05  6:18 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-30  7:22 [PATCH 00/19] some bugfixes and clean code for hns3 - part2 Dongdong Liu
2022-09-30  7:22 ` [PATCH 01/19] net/hns3: fix have no valid RSS rule Dongdong Liu
2022-09-30  7:22 ` [PATCH 02/19] net/hns3: fix RSS filter restore Dongdong Liu
2022-09-30  7:22 ` [PATCH 03/19] net/hns3: fix the lock protection of RSS flow rule Dongdong Liu
2022-09-30  7:22 ` [PATCH 04/19] net/hns3: fix RSS flow rule restore failed Dongdong Liu
2022-09-30  7:22 ` [PATCH 05/19] net/hns3: move flow direction rule recovery position Dongdong Liu
2022-09-30  7:22 ` [PATCH 06/19] net/hns3: fix hns3 restore filter function input Dongdong Liu
2022-09-30  7:22 ` [PATCH 07/19] net/hns3: fix gcov compile warning Dongdong Liu
2022-09-30  7:22 ` [PATCH 08/19] net/hns3: fix incorrect packet type report for GENEVE Dongdong Liu
2022-09-30  7:22 ` [PATCH 09/19] net/hns3: fix magic numbers Dongdong Liu
2022-09-30  7:22 ` [PATCH 10/19] net/hns3: fix header file self contained Dongdong Liu
2022-09-30  7:22 ` [PATCH 11/19] net/hns3: remove unused structure definition Dongdong Liu
2022-09-30  7:22 ` [PATCH 12/19] net/hns3: do not use reserved identifier macro Dongdong Liu
2022-09-30  7:22 ` [PATCH 13/19] net/hns3: fix fail to enable IPV4 or IPV6 packet RSS Dongdong Liu
2022-09-30  7:22 ` [PATCH 14/19] net/hns3: fix some spelling errors Dongdong Liu
2022-09-30  7:22 ` [PATCH 15/19] net/hns3: fix inconsistent RSS behavior Dongdong Liu
2022-09-30  7:22 ` [PATCH 16/19] net/hns3: add check for L3 and L4 type Dongdong Liu
2022-09-30  7:22 ` [PATCH 17/19] net/hns3: revert fix mailbox communication with HW Dongdong Liu
2022-09-30  7:22 ` [PATCH 18/19] net/hns3: fix VF mark wrong message processed Dongdong Liu
2022-09-30  7:22 ` [PATCH 19/19] net/hns3: fix the obtaination of minimum Tx frame length Dongdong Liu
2022-10-05  6:18 ` [PATCH 00/19] some bugfixes and clean code for hns3 - part2 Andrew Rybchenko

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).