netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/5] net: hns3: updates for -next
@ 2022-09-05  8:15 Guangbin Huang
  2022-09-05  8:15 ` [PATCH net-next 1/5] net: hns3: add support config dscp map to tc Guangbin Huang
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Guangbin Huang @ 2022-09-05  8:15 UTC (permalink / raw)
  To: davem, kuba
  Cc: edumazet, pabeni, netdev, linux-kernel, huangguangbin2,
	lipeng321, lanhao

This series includes some updates for the HNS3 ethernet driver.

Patches #1~#3 support configuring dscp map to tc.

Patch 4# supports querying FEC statistics by command "ethtool -I --show-fec eth0".

Patch 5# supports querying and setting Serdes lane number.

Guangbin Huang (3):
  net: hns3: add support config dscp map to tc
  net: hns3: support ndo_select_queue()
  net: hns3: debugfs add dump dscp map info

Hao Chen (1):
  net: hns3: add support to query and set lane number by ethtool

Hao Lan (1):
  net: hns3: add querying fec statistics

 drivers/net/ethernet/hisilicon/hns3/hnae3.h   |  26 ++-
 .../hns3/hns3_common/hclge_comm_cmd.c         |   2 +
 .../hns3/hns3_common/hclge_comm_cmd.h         |   3 +
 .../net/ethernet/hisilicon/hns3/hns3_dcbnl.c  |  28 +++
 .../ethernet/hisilicon/hns3/hns3_debugfs.c    |  13 ++
 .../net/ethernet/hisilicon/hns3/hns3_enet.c   |  46 +++++
 .../ethernet/hisilicon/hns3/hns3_ethtool.c    |  33 +++-
 .../hisilicon/hns3/hns3pf/hclge_cmd.h         |  21 +-
 .../hisilicon/hns3/hns3pf/hclge_dcb.c         | 107 ++++++++++
 .../hisilicon/hns3/hns3pf/hclge_dcb.h         |   3 +
 .../hisilicon/hns3/hns3pf/hclge_debugfs.c     |  60 +++++-
 .../hisilicon/hns3/hns3pf/hclge_main.c        | 183 +++++++++++++++++-
 .../hisilicon/hns3/hns3pf/hclge_main.h        |  29 ++-
 .../hisilicon/hns3/hns3pf/hclge_mdio.c        |   2 +-
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.c |  50 ++++-
 .../ethernet/hisilicon/hns3/hns3pf/hclge_tm.h |   5 +
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      |   2 +-
 17 files changed, 588 insertions(+), 25 deletions(-)

-- 
2.33.0


^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH net-next 0/5] net: hns3: updates for -next
@ 2022-05-05 12:44 Guangbin Huang
  0 siblings, 0 replies; 12+ messages in thread
From: Guangbin Huang @ 2022-05-05 12:44 UTC (permalink / raw)
  To: davem, kuba; +Cc: netdev, linux-kernel, lipeng321, huangguangbin2, chenhao288

This series includes some updates for the HNS3 ethernet driver.

Guangbin Huang (1):
  net: hns3: add query vf ring and vector map relation

Hao Chen (1):
  net: hns3: fix access null pointer issue when set tx-buf-size as 0

Jie Wang (2):
  net: hns3: add byte order conversion for PF to VF mailbox message
  net: hns3: add byte order conversion for VF to PF mailbox message

Yufeng Mo (1):
  net: hns3: remove the affinity settings of vector0

 .../net/ethernet/hisilicon/hns3/hclge_mbx.h   |  60 +++++-
 .../ethernet/hisilicon/hns3/hns3_ethtool.c    |   7 +-
 .../hisilicon/hns3/hns3pf/hclge_main.c        |  27 +--
 .../hisilicon/hns3/hns3pf/hclge_main.h        |   2 -
 .../hisilicon/hns3/hns3pf/hclge_mbx.c         | 193 +++++++++++++-----
 .../hisilicon/hns3/hns3vf/hclgevf_main.c      |  58 +++---
 .../hisilicon/hns3/hns3vf/hclgevf_main.h      |   2 +-
 .../hisilicon/hns3/hns3vf/hclgevf_mbx.c       |  80 +++++---
 8 files changed, 269 insertions(+), 160 deletions(-)

-- 
2.33.0


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

end of thread, other threads:[~2022-09-07  0:57 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-05  8:15 [PATCH net-next 0/5] net: hns3: updates for -next Guangbin Huang
2022-09-05  8:15 ` [PATCH net-next 1/5] net: hns3: add support config dscp map to tc Guangbin Huang
2022-09-06  1:35   ` kernel test robot
2022-09-06 13:12   ` Paolo Abeni
2022-09-06 13:50     ` huangguangbin (A)
2022-09-05  8:15 ` [PATCH net-next 2/5] net: hns3: support ndo_select_queue() Guangbin Huang
2022-09-06 13:15   ` Paolo Abeni
2022-09-07  0:57     ` huangguangbin (A)
2022-09-05  8:15 ` [PATCH net-next 3/5] net: hns3: debugfs add dump dscp map info Guangbin Huang
2022-09-05  8:15 ` [PATCH net-next 4/5] net: hns3: add querying fec statistics Guangbin Huang
2022-09-05  8:15 ` [PATCH net-next 5/5] net: hns3: add support to query and set lane number by ethtool Guangbin Huang
  -- strict thread matches above, loose matches on Subject: below --
2022-05-05 12:44 [PATCH net-next 0/5] net: hns3: updates for -next 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).