mbox series

[00/19] some bugfixes and clean code for hns3 - part2

Message ID 20220930072220.20753-1-liudongdong3@huawei.com (mailing list archive)
Headers
Series some bugfixes and clean code for hns3 - part2 |

Message

Dongdong Liu Sept. 30, 2022, 7:22 a.m. UTC
  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
  

Comments

Andrew Rybchenko Oct. 5, 2022, 6:18 a.m. UTC | #1
On 9/30/22 10:22, Dongdong Liu wrote:
> 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
> 

Applied to dpdk-next-net/main, thanks.