This patch-set includes code optimizations, bugfixes and cleanups for the HNS3 ethernet controller driver.
[patch 01/12] fixes a GFP flag error. [patch 02/12] fixes a VF interrupt error. [patch 03/12] adds a cleanup for VLAN handling. [patch 04/12] fixes a bug in debugfs. [patch 05/12] modifies pause displaying format. [patch 06/12] adds more DFX information for ethtool -d. [patch 07/12] adds more TX statistics information. [patch 08/12] adds a check for TX BD number. [patch 09/12] adds a cleanup for dumping NCL_CONFIG. [patch 10/12] refines function for querying MAC pause statistics. [patch 11/12] adds a handshake with VF when doing PF reset. [patch 12/12] refines some macro definitions. Guangbin Huang (1): net: hns3: add DFX registers information for ethtool -d Guojia Liao (1): net: hns3: refine some macro definitions Huazhong Tan (2): net: hns3: fix interrupt clearing error for VF net: hns3: add handshake with VF for PF reset Yonglong Liu (1): net: hns3: modify how pause options is displayed Yufeng Mo (3): net: hns3: add input length check for debugfs write function net: hns3: add function display NCL_CONFIG info net: hns3: refine MAC pause statistics querying function Yunsheng Lin (3): net: hns3: clean up for vlan handling in hns3_fill_desc_vtags net: hns3: add some statitics info to tx process net: hns3: add check for max TX BD num for tso and non-tso case Zhongzhu Liu (1): net: hns3: fix GFP flag error in hclge_mac_update_stats() drivers/net/ethernet/hisilicon/hns3/hnae3.h | 15 +- drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c | 4 + drivers/net/ethernet/hisilicon/hns3/hns3_enet.c | 268 ++++++------ drivers/net/ethernet/hisilicon/hns3/hns3_enet.h | 7 +- drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c | 4 + .../net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h | 7 + .../ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c | 64 +-- .../ethernet/hisilicon/hns3/hns3pf/hclge_main.c | 454 +++++++++++++++++---- .../ethernet/hisilicon/hns3/hns3pf/hclge_main.h | 2 + .../ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c | 28 +- .../ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h | 4 +- 11 files changed, 615 insertions(+), 242 deletions(-) -- 2.7.4

