All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 00/20] add some new features and fix some bugs for HNS3 driver
@ 2018-01-05 10:18 Peng Li
  2018-01-05 10:18 ` [PATCH net-next 01/20] net: hns3: Add ethtool interface for vlan filter Peng Li
                   ` (20 more replies)
  0 siblings, 21 replies; 33+ messages in thread
From: Peng Li @ 2018-01-05 10:18 UTC (permalink / raw)
  To: davem; +Cc: netdev, linux-kernel, linuxarm, salil.mehta, lipeng321

This patchset adds some new features support and fixes some bugs:
[Patch 1/20] adds support to enable/disable vlan filter with ethtool
[Patch 2/20] disables VFs change rxvlan offload status
[Patch 3/20 - 13/120 fix bugs and refine some codes for packet
statistics, support query with both ifconfig and ethtool.
[Patch 14/20 - 20/20] fix some other bugs.

Fuyun Liang (5):
  net: hns3: fix for updating fc_mode_last_time
  net: hns3: fix for setting MTU
  net: hns3: fix for changing MTU
  net: hns3: add MTU initialization for hardware
  net: hns3: fix for not setting pause parameters

Jian Shen (14):
  net: hns3: Add ethtool interface for vlan filter
  net: hns3: Disable VFs change rxvlan offload status
  net: hns3: Unify the strings display of packet statistics
  net: hns3: Fix spelling errors
  net: hns3: Remove repeat statistic of rx_errors
  net: hns3: Modify the update period of packet statistics
  net: hns3: Mask the packet statistics query when NIC is down
  net: hns3: Fix an error of total drop packet statistics
  net: hns3: Fix a loop index error of tqp statistics query
  net: hns3: Fix an error macro definition of HNS3_TQP_STAT
  net: hns3: Remove a useless member of struct hns3_stats
  net: hns3: Add packet statistics of netdev
  net: hns3: Fix a response data read error of tqp statistics query
  net: hns3: Add more packet size statisctics

Peng Li (1):
  net: hns3: remove redundant semicolon

 drivers/net/ethernet/hisilicon/hns3/hnae3.h        |   3 +
 drivers/net/ethernet/hisilicon/hns3/hns3_enet.c    |  38 +++-
 drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c | 148 ++++++++++---
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h |   2 -
 .../ethernet/hisilicon/hns3/hns3pf/hclge_main.c    | 232 +++++++++++++++------
 .../ethernet/hisilicon/hns3/hns3pf/hclge_main.h    |  59 ++++--
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c  |  58 +++++-
 .../net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h  |  11 +
 .../ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c  |  10 +-
 9 files changed, 431 insertions(+), 130 deletions(-)

-- 
1.9.1

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

end of thread, other threads:[~2018-01-09  3:27 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-05 10:18 [PATCH net-next 00/20] add some new features and fix some bugs for HNS3 driver Peng Li
2018-01-05 10:18 ` [PATCH net-next 01/20] net: hns3: Add ethtool interface for vlan filter Peng Li
2018-01-05 10:18 ` [PATCH net-next 02/20] net: hns3: Disable VFs change rxvlan offload status Peng Li
2018-01-05 10:18 ` [PATCH net-next 03/20] net: hns3: Unify the strings display of packet statistics Peng Li
2018-01-05 10:18 ` [PATCH net-next 04/20] net: hns3: Fix spelling errors Peng Li
2018-01-05 10:18 ` [PATCH net-next 05/20] net: hns3: Remove repeat statistic of rx_errors Peng Li
2018-01-05 10:18 ` [PATCH net-next 06/20] net: hns3: Modify the update period of packet statistics Peng Li
2018-01-05 14:54   ` Andrew Lunn
2018-01-06  6:23     ` lipeng (Y)
2018-01-06 15:49       ` Andrew Lunn
2018-01-05 10:18 ` [PATCH net-next 07/20] net: hns3: Mask the packet statistics query when NIC is down Peng Li
2018-01-05 10:18 ` [PATCH net-next 08/20] net: hns3: Fix an error of total drop packet statistics Peng Li
2018-01-05 10:18 ` [PATCH net-next 09/20] net: hns3: Fix a loop index error of tqp statistics query Peng Li
2018-01-05 10:18 ` [PATCH net-next 10/20] net: hns3: Fix an error macro definition of HNS3_TQP_STAT Peng Li
2018-01-05 10:18 ` [PATCH net-next 11/20] net: hns3: Remove a useless member of struct hns3_stats Peng Li
2018-01-05 10:18 ` [PATCH net-next 12/20] net: hns3: Add packet statistics of netdev Peng Li
2018-01-08 20:04   ` Jakub Kicinski
2018-01-09  1:39     ` David Miller
2018-01-09  1:46       ` Jakub Kicinski
2018-01-09  1:50         ` Jakub Kicinski
2018-01-09  1:54           ` David Miller
2018-01-09  2:48             ` lipeng (Y)
2018-01-09  3:06               ` David Miller
2018-01-09  3:27                 ` lipeng (Y)
2018-01-05 10:18 ` [PATCH net-next 13/20] net: hns3: Fix a response data read error of tqp statistics query Peng Li
2018-01-05 10:18 ` [PATCH net-next 14/20] net: hns3: fix for updating fc_mode_last_time Peng Li
2018-01-05 10:18 ` [PATCH net-next 15/20] net: hns3: fix for setting MTU Peng Li
2018-01-05 10:18 ` [PATCH net-next 16/20] net: hns3: fix for changing MTU Peng Li
2018-01-05 10:18 ` [PATCH net-next 17/20] net: hns3: add MTU initialization for hardware Peng Li
2018-01-05 10:18 ` [PATCH net-next 18/20] net: hns3: fix for not setting pause parameters Peng Li
2018-01-05 10:18 ` [PATCH net-next 19/20] net: hns3: remove redundant semicolon Peng Li
2018-01-05 10:18 ` [PATCH net-next 20/20] net: hns3: Add more packet size statisctics Peng Li
2018-01-08 19:08 ` [PATCH net-next 00/20] add some new features and fix some bugs for HNS3 driver David Miller

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.