linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 0/8] net: hns3: misc updates for -net-next
@ 2020-01-04  2:49 Huazhong Tan
  2020-01-04  2:49 ` [PATCH net-next 1/8] net: hns3: add trace event support for HNS3 driver Huazhong Tan
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Huazhong Tan @ 2020-01-04  2:49 UTC (permalink / raw)
  To: davem
  Cc: netdev, linux-kernel, salil.mehta, yisen.zhuang, linuxarm,
	jakub.kicinski, Huazhong Tan

This series includes some misc updates for the HNS3 ethernet driver.

[patch 1] adds trace events support.
[patch 2] re-organizes TQP's vector handling.
[patch 3] renames the name of TQP vector.
[patch 4] rewrites a log in the hclge_map_ring_to_vector().
[patch 5] modifies the name of misc IRQ vector.
[patch 6] handles the unexpected speed 0 return from HW.
[patch 7] replaces an unsuitable variable type.
[patch 8] modifies an unsuitable reset level for HW error.

Guojia Liao (1):
  net: hns3: add protection when get SFP speed as 0

Huazhong Tan (2):
  net: hns3: replace an unsuitable variable type in
    hclge_inform_reset_assert_to_vf()
  net: hns3: modify an unsuitable reset level for hardware error

Yonglong Liu (4):
  net: hns3: re-organize vector handle
  net: hns3: modify the IRQ name of TQP vector
  net: hns3: modify an unsuitable log in hclge_map_ring_to_vector()
  net: hns3: modify the IRQ name of misc vectors

Yunsheng Lin (1):
  net: hns3: add trace event support for HNS3 driver

 drivers/net/ethernet/hisilicon/hns3/Makefile       |   2 +
 drivers/net/ethernet/hisilicon/hns3/hnae3.h        |   4 +-
 drivers/net/ethernet/hisilicon/hns3/hns3_enet.c    | 153 +++++++++++++--------
 drivers/net/ethernet/hisilicon/hns3/hns3_enet.h    |   1 +
 drivers/net/ethernet/hisilicon/hns3/hns3_trace.h   | 139 +++++++++++++++++++
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h |   2 +
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_err.c |   4 +-
 .../ethernet/hisilicon/hns3/hns3pf/hclge_main.c    |  12 +-
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c |   4 +-
 .../ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c  |   4 +-
 .../ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h  |   1 +
 11 files changed, 259 insertions(+), 67 deletions(-)
 create mode 100644 drivers/net/ethernet/hisilicon/hns3/hns3_trace.h

-- 
2.7.4


^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH net-next 0/8] net: hns3: misc updates for -net-next
@ 2019-12-19  6:57 Huazhong Tan
  2019-12-21  5:21 ` David Miller
  0 siblings, 1 reply; 12+ messages in thread
From: Huazhong Tan @ 2019-12-19  6:57 UTC (permalink / raw)
  To: davem
  Cc: netdev, linux-kernel, salil.mehta, yisen.zhuang, linuxarm,
	jakub.kicinski, Huazhong Tan

This series includes some misc updates for the HNS3 ethernet driver.

[patch 1] adds FE bit check before calling hns3_add_frag().
[patch 2] removes an unnecessary lock.
[patch 3] adds a little optimization for CMDQ uninitialization.
[patch 4] refactors the dump of FD tcams.
[patch 5] implements ndo_features_check ops.
[patch 6] adds some VF VLAN information for command "ip link show".
[patch 7] adds a debug print.
[patch 8] modifies the timing of print misc interrupt status when
handling hardware error event.

Huazhong Tan (5):
  net: hns3: remove useless mutex vport_cfg_mutex in the struct
    hclge_dev
  net: hns3: optimization for CMDQ uninitialization
  net: hns3: add some VF VLAN information for command "ip link show"
  net: hns3: add a log for getting chain failure in
    hns3_nic_uninit_vector_data()
  net: hns3: only print misc interrupt status when handling fails

Yufeng Mo (1):
  net: hns3: get FD rules location before dump in debugfs

Yunsheng Lin (2):
  net: hns3: check FE bit before calling hns3_add_frag()
  net: hns3: implement ndo_features_check ops for hns3 driver

 drivers/net/ethernet/hisilicon/hns3/hns3_enet.c    | 85 +++++++++++++---------
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.c | 16 +---
 .../ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c | 74 +++++++++++++++++--
 .../ethernet/hisilicon/hns3/hns3pf/hclge_main.c    | 21 +++---
 .../ethernet/hisilicon/hns3/hns3pf/hclge_main.h    |  2 -
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c |  2 -
 .../ethernet/hisilicon/hns3/hns3vf/hclgevf_cmd.c   |  2 +-
 7 files changed, 130 insertions(+), 72 deletions(-)

-- 
2.7.4


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

end of thread, other threads:[~2020-01-06 21:28 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-04  2:49 [PATCH net-next 0/8] net: hns3: misc updates for -net-next Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 1/8] net: hns3: add trace event support for HNS3 driver Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 2/8] net: hns3: re-organize vector handle Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 3/8] net: hns3: modify the IRQ name of TQP vector Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 4/8] net: hns3: modify an unsuitable log in hclge_map_ring_to_vector() Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 5/8] net: hns3: modify the IRQ name of misc vectors Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 6/8] net: hns3: add protection when get SFP speed as 0 Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 7/8] net: hns3: replace an unsuitable variable type in hclge_inform_reset_assert_to_vf() Huazhong Tan
2020-01-04  2:49 ` [PATCH net-next 8/8] net: hns3: modify an unsuitable reset level for hardware error Huazhong Tan
2020-01-06 21:28 ` [PATCH net-next 0/8] net: hns3: misc updates for -net-next David Miller
  -- strict thread matches above, loose matches on Subject: below --
2019-12-19  6:57 Huazhong Tan
2019-12-21  5:21 ` David Miller

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