All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net 0/8] net: hns3: add some fixes for -net
@ 2021-09-29  9:35 Guangbin Huang
  2021-09-29  9:35 ` [PATCH net 1/8] net: hns3: do not allow call hns3_nic_net_open repeatedly Guangbin Huang
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Guangbin Huang @ 2021-09-29  9:35 UTC (permalink / raw)
  To: davem, kuba; +Cc: netdev, linux-kernel, lipeng321, huangguangbin2

This series adds some fixes for the HNS3 ethernet driver.

Guangbin Huang (3):
  net: hns3: PF enable promisc for VF when mac table is overflow
  net: hns3: fix always enable rx vlan filter problem after selftest
  net: hns3: disable firmware compatible features when uninstall PF

Jian Shen (5):
  net: hns3: do not allow call hns3_nic_net_open repeatedly
  net: hns3: remove tc enable checking
  net: hns3: don't rollback when destroy mqprio fail
  net: hns3: fix mixed flag HCLGE_FLAG_MQPRIO_ENABLE and
    HCLGE_FLAG_DCB_ENABLE
  net: hns3: fix show wrong state when add existing uc mac address

 drivers/net/ethernet/hisilicon/hns3/hnae3.h   |  1 -
 .../net/ethernet/hisilicon/hns3/hns3_enet.c   | 16 ++++-----
 .../ethernet/hisilicon/hns3/hns3_ethtool.c    |  6 ++--
 .../hisilicon/hns3/hns3pf/hclge_cmd.c         | 21 +++++++-----
 .../hisilicon/hns3/hns3pf/hclge_dcb.c         | 29 ++++++++--------
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 27 ++++++++-------
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.c | 33 +++----------------
 7 files changed, 60 insertions(+), 73 deletions(-)

-- 
2.33.0


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH net 0/8] net: hns3: add some fixes for -net
@ 2021-10-19 14:16 Guangbin Huang
  2021-10-20 11:10 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 14+ messages in thread
From: Guangbin Huang @ 2021-10-19 14:16 UTC (permalink / raw)
  To: davem, kuba; +Cc: netdev, linux-kernel, lipeng321, huangguangbin2, chenhao288

This series adds some fixes for the HNS3 ethernet driver.

Guangbin Huang (2):
  net: hns3: reset DWRR of unused tc to zero
  net: hns3: add limit ets dwrr bandwidth cannot be 0

Jiaran Zhang (1):
  net: hns3: Add configuration of TM QCN error event

Peng Li (1):
  net: hns3: disable sriov before unload hclge layer

Yufeng Mo (1):
  net: hns3: fix vf reset workqueue cannot exit

Yunsheng Lin (3):
  net: hns3: fix the max tx size according to user manual
  net: hns3: fix for miscalculation of rx unused desc
  net: hns3: schedule the polling again when allocation fails

 drivers/net/ethernet/hisilicon/hns3/hnae3.c   | 21 +++++++++++
 drivers/net/ethernet/hisilicon/hns3/hnae3.h   |  1 +
 .../net/ethernet/hisilicon/hns3/hns3_enet.c   | 37 +++++++++++--------
 .../net/ethernet/hisilicon/hns3/hns3_enet.h   |  7 ++--
 .../hisilicon/hns3/hns3pf/hclge_dcb.c         |  9 +++++
 .../hisilicon/hns3/hns3pf/hclge_err.c         |  5 ++-
 .../hisilicon/hns3/hns3pf/hclge_err.h         |  2 +
 .../hisilicon/hns3/hns3pf/hclge_main.c        |  1 +
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.c |  2 +
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      |  6 +--
 10 files changed, 68 insertions(+), 23 deletions(-)

-- 
2.33.0


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH net 0/8] net: hns3: add some fixes for -net
@ 2021-11-10 13:42 Guangbin Huang
  2021-11-10 14:30 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 14+ messages in thread
From: Guangbin Huang @ 2021-11-10 13:42 UTC (permalink / raw)
  To: davem, kuba, wangjie125
  Cc: netdev, linux-kernel, lipeng321, huangguangbin2, chenhao288

This series adds some fixes for the HNS3 ethernet driver.

Guangbin Huang (4):
  net: hns3: fix failed to add reuse multicast mac addr to hardware when
    mc mac table is full
  net: hns3: fix some mac statistics is always 0 in device version V2
  net: hns3: remove check VF uc mac exist when set by PF
  net: hns3: allow configure ETS bandwidth of all TCs

Jie Wang (2):
  net: hns3: fix ROCE base interrupt vector initialization bug
  net: hns3: fix pfc packet number incorrect after querying pfc
    parameters

Yufeng Mo (2):
  net: hns3: sync rx ring head in echo common pull
  net: hns3: fix kernel crash when unload VF while it is being reset

 .../net/ethernet/hisilicon/hns3/hns3_enet.c   |   7 ++
 .../hisilicon/hns3/hns3pf/hclge_cmd.c         |   1 +
 .../hisilicon/hns3/hns3pf/hclge_cmd.h         |   1 +
 .../hisilicon/hns3/hns3pf/hclge_dcb.c         |  20 ++--
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 106 +++++++-----------
 .../hisilicon/hns3/hns3pf/hclge_main.h        |   8 +-
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.c |  77 ++++++-------
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.h |   4 +-
 .../hisilicon/hns3/hns3vf/hclgevf_cmd.c       |  32 ++++++
 .../hisilicon/hns3/hns3vf/hclgevf_cmd.h       |   9 ++
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      |  10 +-
 .../hisilicon/hns3/hns3vf/hclgevf_main.h      |   4 +-
 12 files changed, 147 insertions(+), 132 deletions(-)

-- 
2.33.0


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

end of thread, other threads:[~2021-11-10 14:30 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-29  9:35 [PATCH net 0/8] net: hns3: add some fixes for -net Guangbin Huang
2021-09-29  9:35 ` [PATCH net 1/8] net: hns3: do not allow call hns3_nic_net_open repeatedly Guangbin Huang
2021-09-29  9:35 ` [PATCH net 2/8] net: hns3: remove tc enable checking Guangbin Huang
2021-09-29  9:35 ` [PATCH net 3/8] net: hns3: don't rollback when destroy mqprio fail Guangbin Huang
2021-09-29  9:35 ` [PATCH net 4/8] net: hns3: fix mixed flag HCLGE_FLAG_MQPRIO_ENABLE and HCLGE_FLAG_DCB_ENABLE Guangbin Huang
2021-09-29  9:35 ` [PATCH net 5/8] net: hns3: fix show wrong state when add existing uc mac address Guangbin Huang
2021-09-29  9:35 ` [PATCH net 6/8] net: hns3: PF enable promisc for VF when mac table is overflow Guangbin Huang
2021-09-29  9:35 ` [PATCH net 7/8] net: hns3: fix always enable rx vlan filter problem after selftest Guangbin Huang
2021-09-29  9:35 ` [PATCH net 8/8] net: hns3: disable firmware compatible features when uninstall PF Guangbin Huang
2021-09-29 10:10 ` [PATCH net 0/8] net: hns3: add some fixes for -net patchwork-bot+netdevbpf
2021-10-19 14:16 Guangbin Huang
2021-10-20 11:10 ` patchwork-bot+netdevbpf
2021-11-10 13:42 Guangbin Huang
2021-11-10 14:30 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.