linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net 0/6] net: hns3: add some fixes for -net
@ 2021-09-15 13:52 Guangbin Huang
  2021-09-15 13:52 ` [PATCH net 1/6] net: hns3: fix change RSS 'hfunc' ineffective issue Guangbin Huang
                   ` (5 more replies)
  0 siblings, 6 replies; 14+ messages in thread
From: Guangbin Huang @ 2021-09-15 13:52 UTC (permalink / raw)
  To: davem, kuba; +Cc: netdev, linux-kernel, lipeng321, huangguangbin2

This series adds some fixes for the HNS3 ethernet driver.

Jian Shen (2):
  net: hns3: fix change RSS 'hfunc' ineffective issue
  net: hns3: fix inconsistent vf id print

Jiaran Zhang (1):
  net: hns3: fix misuse vf id and vport id in some logs

Yufeng Mo (2):
  net: hns3: check queue id range before using
  net: hns3: fix a return value error in hclge_get_reset_status()

liaoguojia (1):
  net: hns3: check vlan id before using it

 .../hisilicon/hns3/hns3pf/hclge_err.c         |  8 +-
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 80 +++++++++++++------
 .../hisilicon/hns3/hns3pf/hclge_mbx.c         | 10 ++-
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.c |  2 +-
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      | 52 +++++++-----
 5 files changed, 103 insertions(+), 49 deletions(-)

-- 
2.33.0


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH net 0/6] net: hns3: add some fixes for -net
@ 2022-06-11 12:25 Guangbin Huang
  2022-06-13 11:00 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 14+ messages in thread
From: Guangbin Huang @ 2022-06-11 12:25 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 (3):
  net: hns3: set port base vlan tbl_sta to false before removing old
    vlan
  net: hns3: restore tm priority/qset to default settings when tc
    disabled
  net: hns3: fix tm port shapping of fibre port is incorrect after
    driver initialization

Jian Shen (1):
  net: hns3: don't push link state to VF if unalive

Jie Wang (2):
  net: hns3: modify the ring param print info
  net: hns3: fix PF rss size initialization bug

 drivers/net/ethernet/hisilicon/hns3/hnae3.h   |   1 +
 .../ethernet/hisilicon/hns3/hns3_ethtool.c    |   2 +-
 .../hisilicon/hns3/hns3pf/hclge_main.c        |  18 +++-
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.c | 101 ++++++++++++------
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.h |   1 +
 5 files changed, 86 insertions(+), 37 deletions(-)

-- 
2.33.0


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH net 0/6] net: hns3: add some fixes for -net
@ 2022-04-24 12:57 Guangbin Huang
  2022-04-25  9:50 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 14+ messages in thread
From: Guangbin Huang @ 2022-04-24 12:57 UTC (permalink / raw)
  To: davem, kuba; +Cc: netdev, linux-kernel, lipeng321, huangguangbin2, chenhao288

This series adds some fixes for the HNS3 ethernet driver.

Hao Chen (1):
  net: hns3: align the debugfs output to the left

Jian Shen (3):
  net: hns3: clear inited state and stop client after failed to register
    netdev
  net: hns3: add validity check for message data length
  net: hns3: add return value for mailbox handling in PF

Jie Wang (1):
  net: hns3: modify the return code of hclge_get_ring_chain_from_mbx

Peng Li (1):
  net: hns3: fix error log of tx/rx tqps stats

 .../hns3/hns3_common/hclge_comm_tqp_stats.c   |  4 +-
 .../ethernet/hisilicon/hns3/hns3_debugfs.c    | 84 +++++++++----------
 .../net/ethernet/hisilicon/hns3/hns3_enet.c   |  9 ++
 .../hisilicon/hns3/hns3pf/hclge_mbx.c         | 31 ++++---
 4 files changed, 73 insertions(+), 55 deletions(-)

-- 
2.33.0


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH net 0/6] net: hns3: add some fixes for -net
@ 2022-03-26  9:50 Guangbin Huang
  2022-03-26 16:20 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 14+ messages in thread
From: Guangbin Huang @ 2022-03-26  9:50 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 (1):
  net: hns3: fix phy can not link up when autoneg off and reset

Hao Chen (4):
  net: hns3: fix ethtool tx copybreak buf size indicating not aligned
    issue
  net: hns3: add max order judgement for tx spare buffer
  net: hns3: add netdev reset check for hns3_set_tunable()
  net: hns3: add NULL pointer check for hns3_set/get_ringparam()

Peng Li (1):
  net: hns3: clean residual vf config after disable sriov

 drivers/net/ethernet/hisilicon/hns3/hnae3.h   |  3 ++
 .../net/ethernet/hisilicon/hns3/hns3_enet.c   | 44 +++++++++++++---
 .../ethernet/hisilicon/hns3/hns3_ethtool.c    | 23 ++++++---
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 50 +++++++++++++++++++
 .../hisilicon/hns3/hns3pf/hclge_mdio.c        |  4 +-
 5 files changed, 107 insertions(+), 17 deletions(-)

-- 
2.33.0


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH net 0/6]  net: hns3: add some fixes for -net
@ 2021-09-13 13:08 Guangbin Huang
  0 siblings, 0 replies; 14+ messages in thread
From: Guangbin Huang @ 2021-09-13 13:08 UTC (permalink / raw)
  To: davem, kuba; +Cc: netdev, linux-kernel, lipeng321, huangguangbin2

This series adds some fixes for the HNS3 ethernet driver.

Jiaran Zhang (2):
  net: hns3: fix the exception when query imp info
  net: hns3: fix the timing issue of VF clearing interrupt sources

Yufeng Mo (3):
  net: hns3: pad the short tunnel frame before sending to hardware
  net: hns3: change affinity_mask to numa node range
  net: hns3: disable mac in flr process

Yunsheng Lin (1):
  net: hns3: add option to turn off page pool feature

 .../net/ethernet/hisilicon/hns3/hns3_enet.c   | 14 +++++++++++---
 .../hisilicon/hns3/hns3pf/hclge_debugfs.c     |  4 ++++
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 19 +++++++++++--------
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      |  6 +++---
 4 files changed, 29 insertions(+), 14 deletions(-)

-- 
2.33.0


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

end of thread, other threads:[~2022-06-13 12:12 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-15 13:52 [PATCH net 0/6] net: hns3: add some fixes for -net Guangbin Huang
2021-09-15 13:52 ` [PATCH net 1/6] net: hns3: fix change RSS 'hfunc' ineffective issue Guangbin Huang
2021-09-15 13:52 ` [PATCH net 2/6] net: hns3: fix inconsistent vf id print Guangbin Huang
2021-09-15 13:52 ` [PATCH net 3/6] net: hns3: fix misuse vf id and vport id in some logs Guangbin Huang
2021-09-15 13:52 ` [PATCH net 4/6] net: hns3: check queue id range before using Guangbin Huang
2021-09-15 13:52 ` [PATCH net 5/6] net: hns3: check vlan id before using it Guangbin Huang
2021-09-15 13:52 ` [PATCH net 6/6] net: hns3: fix a return value error in hclge_get_reset_status() Guangbin Huang
  -- strict thread matches above, loose matches on Subject: below --
2022-06-11 12:25 [PATCH net 0/6] net: hns3: add some fixes for -net Guangbin Huang
2022-06-13 11:00 ` patchwork-bot+netdevbpf
2022-04-24 12:57 Guangbin Huang
2022-04-25  9:50 ` patchwork-bot+netdevbpf
2022-03-26  9:50 Guangbin Huang
2022-03-26 16:20 ` patchwork-bot+netdevbpf
2021-09-13 13:08 Guangbin Huang

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