public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH net 0/7] There are some bugfix for the HNS3 ethernet driver
@ 2023-09-06  7:20 Jijie Shao
  2023-09-06  7:20 ` [PATCH net 1/7] net: hns3: fix tx timeout issue Jijie Shao
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Jijie Shao @ 2023-09-06  7:20 UTC (permalink / raw)
  To: yisen.zhuang, salil.mehta, davem, edumazet, kuba, pabeni
  Cc: shenjian15, wangjie125, liuyonglong, shaojijie, chenhao418,
	netdev, linux-kernel

There are some bugfix for the HNS3 ethernet driver

Hao Chen (2):
  net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read()
  net: hns3: fix debugfs concurrency issue between kfree buffer and read

Jian Shen (1):
  net: hns3: fix tx timeout issue

Jie Wang (1):
  net: hns3: remove GSO partial feature bit

Jijie Shao (2):
  net: hns3: Support query tx timeout threshold by debugfs
  net: hns3: fix invalid mutex between tc qdisc and dcb ets command
    issue

Yisen Zhuang (1):
  net: hns3: fix the port information display when sfp is absent

 drivers/net/ethernet/hisilicon/hns3/hnae3.h   |  1 +
 .../ethernet/hisilicon/hns3/hns3_debugfs.c    | 11 +++++++---
 .../net/ethernet/hisilicon/hns3/hns3_enet.c   | 19 +++++++++++-------
 .../ethernet/hisilicon/hns3/hns3_ethtool.c    |  4 +++-
 .../hisilicon/hns3/hns3pf/hclge_dcb.c         | 20 +++++--------------
 .../hisilicon/hns3/hns3pf/hclge_debugfs.c     | 14 ++++++-------
 .../hisilicon/hns3/hns3pf/hclge_main.c        |  5 +++--
 .../hisilicon/hns3/hns3pf/hclge_main.h        |  2 --
 8 files changed, 39 insertions(+), 37 deletions(-)

-- 
2.30.0


^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH net 0/7] There are some bugfix for the HNS3 ethernet driver
@ 2023-10-28  2:59 Jijie Shao
  0 siblings, 0 replies; 11+ messages in thread
From: Jijie Shao @ 2023-10-28  2:59 UTC (permalink / raw)
  To: yisen.zhuang, salil.mehta, davem, edumazet, kuba, pabeni
  Cc: shenjian15, wangjie125, liuyonglong, shaojijie, netdev,
	linux-kernel

There are some bugfix for the HNS3 ethernet driver

Jian Shen (2):
  net: hns3: fix add VLAN fail issue
  net: hns3: fix incorrect capability bit display for copper port

Jijie Shao (2):
  net: hns3: fix VF reset fail issue
  net: hns3: fix VF wrong speed and duplex issue

Yonglong Liu (3):
  net: hns3: add barrier in vf mailbox reply process
  net: hns3: fix out-of-bounds access may occur when coalesce info is
    read via debugfs
  net: hns3: fix variable may not initialized problem in
    hns3_init_mac_addr()

 .../ethernet/hisilicon/hns3/hns3_debugfs.c    |  9 ++++---
 .../net/ethernet/hisilicon/hns3/hns3_enet.c   |  2 +-
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 26 ++++++++++++++-----
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      | 24 +++++++++++++----
 .../hisilicon/hns3/hns3vf/hclgevf_mbx.c       |  7 +++++
 5 files changed, 53 insertions(+), 15 deletions(-)

-- 
2.30.0


^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH net 0/7] There are some bugfix for the HNS3 ethernet driver
@ 2024-04-22 13:43 Jijie Shao
  0 siblings, 0 replies; 11+ messages in thread
From: Jijie Shao @ 2024-04-22 13:43 UTC (permalink / raw)
  To: yisen.zhuang, salil.mehta, davem, edumazet, kuba, pabeni
  Cc: shenjian15, wangjie125, liuyonglong, shaojijie, chenhao418,
	netdev, linux-kernel

There are some bugfix for the HNS3 ethernet driver

Jian Shen (1):
  net: hns3: direct return when receive a unknown mailbox message

Peiyang Wang (4):
  net: hns3: change type of numa_node_mask as nodemask_t
  net: hns3: release PTP resources if pf initialization failed
  net: hns3: use appropriate barrier function after setting a bit value
  net: hns3: using user configure after hardware reset

Yonglong Liu (2):
  net: hns3: fix port vlan filter not disabled issue
  net: hns3: fix kernel crash when devlink reload during vf
    initialization

 drivers/net/ethernet/hisilicon/hns3/hnae3.h   |  2 +-
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 35 ++++++++++++-------
 .../hisilicon/hns3/hns3pf/hclge_main.h        |  5 ++-
 .../hisilicon/hns3/hns3pf/hclge_mbx.c         |  7 ++--
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      | 14 +++++---
 .../hisilicon/hns3/hns3vf/hclgevf_main.h      |  2 +-
 6 files changed, 42 insertions(+), 23 deletions(-)

-- 
2.30.0


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

end of thread, other threads:[~2024-04-22 14:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-06  7:20 [PATCH net 0/7] There are some bugfix for the HNS3 ethernet driver Jijie Shao
2023-09-06  7:20 ` [PATCH net 1/7] net: hns3: fix tx timeout issue Jijie Shao
2023-09-06  7:20 ` [PATCH net 2/7] net: hns3: Support query tx timeout threshold by debugfs Jijie Shao
2023-09-06  7:20 ` [PATCH net 3/7] net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() Jijie Shao
2023-09-06  7:20 ` [PATCH net 4/7] net: hns3: fix debugfs concurrency issue between kfree buffer and read Jijie Shao
2023-09-06  7:20 ` [PATCH net 5/7] net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue Jijie Shao
2023-09-06  7:20 ` [PATCH net 6/7] net: hns3: fix the port information display when sfp is absent Jijie Shao
2023-09-06  7:20 ` [PATCH net 7/7] net: hns3: remove GSO partial feature bit Jijie Shao
2023-09-07  9:20 ` [PATCH net 0/7] There are some bugfix for the HNS3 ethernet driver patchwork-bot+netdevbpf
  -- strict thread matches above, loose matches on Subject: below --
2023-10-28  2:59 Jijie Shao
2024-04-22 13:43 Jijie Shao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox