mbox series

[v2,00/11] bugfix for hns3 PMD

Message ID 20220601035251.16408-1-humin29@huawei.com (mailing list archive)
Headers
Series bugfix for hns3 PMD |

Message

humin (Q) June 1, 2022, 3:52 a.m. UTC
  This patch set contains 11 bugfix for hns3 PMD.

Chengwen Feng (1):
  net/hns3: fix TM capability incorrectly defined

Huisong Li (9):
  net/hns3: add check for deferred start queue when rollback
  net/hns3: remove redundant parentheses
  net/hns3: adjust the data type of some variables
  net/hns3: fix an unreasonable memset
  net/hns3: remove duplicate definition
  net/hns3: fix return value for unsupported tuple
  net/hns3: modify a function name
  net/hns3: unify the code wrap style
  net/hns3: fix a segfault from secondary process

Min Hu (Connor) (1):
  net/hns3: fix coverity codecheck

 drivers/net/hns3/hns3_cmd.c       |  2 +-
 drivers/net/hns3/hns3_cmd.h       |  2 +-
 drivers/net/hns3/hns3_common.c    | 14 +++----
 drivers/net/hns3/hns3_dcb.c       |  7 ++--
 drivers/net/hns3/hns3_ethdev.c    | 20 +++++-----
 drivers/net/hns3/hns3_ethdev_vf.c | 23 ++++++------
 drivers/net/hns3/hns3_fdir.c      | 30 +++++++--------
 drivers/net/hns3/hns3_fdir.h      |  2 +-
 drivers/net/hns3/hns3_flow.c      | 25 ++++---------
 drivers/net/hns3/hns3_ptp.c       |  2 +-
 drivers/net/hns3/hns3_regs.c      |  2 +-
 drivers/net/hns3/hns3_rss.c       |  8 ++--
 drivers/net/hns3/hns3_rss.h       |  2 +
 drivers/net/hns3/hns3_rxtx.c      | 62 ++++++++++++++++---------------
 drivers/net/hns3/hns3_rxtx_vec.h  |  4 +-
 drivers/net/hns3/hns3_stats.c     | 28 +++++++-------
 16 files changed, 111 insertions(+), 122 deletions(-)
---
v2:
* delete one patch which is fixed by others.
refer to:
https://patches.dpdk.org/project/dpdk/cover/20220112072808.59713-1-jsoref@gmail.com/
  

Comments

Andrew Rybchenko June 9, 2022, 10:57 a.m. UTC | #1
On 6/1/22 06:52, Min Hu (Connor) wrote:
> This patch set contains 11 bugfix for hns3 PMD.
> 
> Chengwen Feng (1):
>    net/hns3: fix TM capability incorrectly defined
> 
> Huisong Li (9):
>    net/hns3: add check for deferred start queue when rollback
>    net/hns3: remove redundant parentheses
>    net/hns3: adjust the data type of some variables
>    net/hns3: fix an unreasonable memset
>    net/hns3: remove duplicate definition
>    net/hns3: fix return value for unsupported tuple
>    net/hns3: modify a function name
>    net/hns3: unify the code wrap style
>    net/hns3: fix a segfault from secondary process
> 
> Min Hu (Connor) (1):
>    net/hns3: fix coverity codecheck
> 
>   drivers/net/hns3/hns3_cmd.c       |  2 +-
>   drivers/net/hns3/hns3_cmd.h       |  2 +-
>   drivers/net/hns3/hns3_common.c    | 14 +++----
>   drivers/net/hns3/hns3_dcb.c       |  7 ++--
>   drivers/net/hns3/hns3_ethdev.c    | 20 +++++-----
>   drivers/net/hns3/hns3_ethdev_vf.c | 23 ++++++------
>   drivers/net/hns3/hns3_fdir.c      | 30 +++++++--------
>   drivers/net/hns3/hns3_fdir.h      |  2 +-
>   drivers/net/hns3/hns3_flow.c      | 25 ++++---------
>   drivers/net/hns3/hns3_ptp.c       |  2 +-
>   drivers/net/hns3/hns3_regs.c      |  2 +-
>   drivers/net/hns3/hns3_rss.c       |  8 ++--
>   drivers/net/hns3/hns3_rss.h       |  2 +
>   drivers/net/hns3/hns3_rxtx.c      | 62 ++++++++++++++++---------------
>   drivers/net/hns3/hns3_rxtx_vec.h  |  4 +-
>   drivers/net/hns3/hns3_stats.c     | 28 +++++++-------
>   16 files changed, 111 insertions(+), 122 deletions(-)
> ---
> v2:
> * delete one patch which is fixed by others.
> refer to:
> https://patches.dpdk.org/project/dpdk/cover/20220112072808.59713-1-jsoref@gmail.com/

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