From patchwork Sat Mar 28 07:09:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: tanhuazhong X-Patchwork-Id: 1263169 Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=huawei.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 48q8z85pT0z9sRf for ; Sat, 28 Mar 2020 18:11:32 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726937AbgC1HL3 (ORCPT ); Sat, 28 Mar 2020 03:11:29 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:35076 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725372AbgC1HL3 (ORCPT ); Sat, 28 Mar 2020 03:11:29 -0400 Received: from DGGEMS411-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 7B2DBC5F8853D19168C9; Sat, 28 Mar 2020 15:10:52 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS411-HUB.china.huawei.com (10.3.19.211) with Microsoft SMTP Server id 14.3.487.0; Sat, 28 Mar 2020 15:10:43 +0800 From: Huazhong Tan To: CC: , , , , , , Huazhong Tan Subject: [PATCH net 0/4] net: hns3: fixes for -net Date: Sat, 28 Mar 2020 15:09:54 +0800 Message-ID: <1585379398-36224-1-git-send-email-tanhuazhong@huawei.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.69.192.56] X-CFilter-Loop: Reflected Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patchset includes some bugfixes for the HNS3 ethernet driver. [patch 1] removes flag WQ_MEM_RECLAIM flag when allocating WE, since it will cause a warning when the reset task flushes a IB's WQ. [patch 2] adds a new DESC_TYPE_FRAGLIST_SKB type to handle the linear data of the fraglist SKB, since it is different with the frag data. [patch 3] adds different handings for RSS configuration when load or reset. [patch 4] fixes a link ksetting issue. Guangbin Huang (1): net: hns3: fix set and get link ksettings issue Guojia Liao (1): net: hns3: fix RSS config lost after VF reset. Huazhong Tan (1): net: hns3: fix for fraglist SKB headlen not handling correctly Yunsheng Lin (1): net: hns3: drop the WQ_MEM_RECLAIM flag when allocating WQ drivers/net/ethernet/hisilicon/hns3/hnae3.h | 1 + drivers/net/ethernet/hisilicon/hns3/hns3_enet.c | 18 ++++++-- .../ethernet/hisilicon/hns3/hns3pf/hclge_main.c | 10 +++- .../ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c | 54 ++++++++++++---------- 4 files changed, 51 insertions(+), 32 deletions(-)