From patchwork Mon Nov 2 14:38:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lijun Ou X-Patchwork-Id: 83412 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C52B0A04E7; Mon, 2 Nov 2020 15:37:58 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 347C1C8DE; Mon, 2 Nov 2020 15:37:57 +0100 (CET) Received: from szxga06-in.huawei.com (szxga06-in.huawei.com [45.249.212.32]) by dpdk.org (Postfix) with ESMTP id 143DDC8D6 for ; Mon, 2 Nov 2020 15:37:55 +0100 (CET) Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga06-in.huawei.com (SkyGuard) with ESMTP id 4CPwW516TYzhfm4 for ; Mon, 2 Nov 2020 22:37:53 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS403-HUB.china.huawei.com (10.3.19.203) with Microsoft SMTP Server id 14.3.487.0; Mon, 2 Nov 2020 22:37:45 +0800 From: Lijun Ou To: CC: , Date: Mon, 2 Nov 2020 22:38:11 +0800 Message-ID: <1604327899-60126-1-git-send-email-oulijun@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 Subject: [dpdk-dev] [PATCH 0/8] misc fixes for hns3 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch series includes three Tx checksum bugs and two static check warnings fixes. The remaining includes two features fixes. Chengchang Tang (4): net/hns3: add limit promisc mode to VF net/hns3: fix Tx cksum outer header prepare net/hns3: fix Tx checksum with fix header length net/hns3: add VXLAN-GPE packets TSO and checksum support Hongbo Zheng (2): net/hns3: fix visit unsupported QL register error net/hns3: fix some static check errors by coverity Huisong Li (1): net/hns3: fix configurations of port-level scheduling rate Lijun Ou (1): net/hns3: adjust some header files location drivers/net/hns3/hns3_cmd.c | 15 -- drivers/net/hns3/hns3_cmd.h | 2 + drivers/net/hns3/hns3_dcb.c | 19 +- drivers/net/hns3/hns3_dcb.h | 5 + drivers/net/hns3/hns3_ethdev.c | 71 +++---- drivers/net/hns3/hns3_ethdev.h | 50 +++-- drivers/net/hns3/hns3_ethdev_vf.c | 51 ++--- drivers/net/hns3/hns3_fdir.c | 17 +- drivers/net/hns3/hns3_flow.c | 6 +- drivers/net/hns3/hns3_intr.c | 4 - drivers/net/hns3/hns3_intr.h | 4 + drivers/net/hns3/hns3_mbx.c | 30 +-- drivers/net/hns3/hns3_mp.c | 4 +- drivers/net/hns3/hns3_regs.c | 16 -- drivers/net/hns3/hns3_rss.c | 3 - drivers/net/hns3/hns3_rxtx.c | 386 ++++++++++++++++------------------ drivers/net/hns3/hns3_rxtx.h | 11 +- drivers/net/hns3/hns3_rxtx_vec_neon.h | 11 +- drivers/net/hns3/hns3_stats.c | 16 +- 19 files changed, 315 insertions(+), 406 deletions(-)