From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id ED818A0350; Sat, 22 Jan 2022 02:51:29 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 985A04277F; Sat, 22 Jan 2022 02:51:28 +0100 (CET) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by mails.dpdk.org (Postfix) with ESMTP id 71C9840040 for ; Sat, 22 Jan 2022 02:51:27 +0100 (CET) Received: from dggeme756-chm.china.huawei.com (unknown [172.30.72.54]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4JgfMy2z8JzccwJ; Sat, 22 Jan 2022 09:50:38 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by dggeme756-chm.china.huawei.com (10.3.19.102) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.21; Sat, 22 Jan 2022 09:51:24 +0800 From: "Min Hu (Connor)" To: CC: , , Subject: [PATCH v2 00/15] fix and feature for hns3 PMD Date: Sat, 22 Jan 2022 09:51:27 +0800 Message-ID: <20220122015142.9516-1-humin29@huawei.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20220107101558.39219-1-humin29@huawei.com> References: <20220107101558.39219-1-humin29@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.69.192.56] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggeme756-chm.china.huawei.com (10.3.19.102) X-CFilter-Loop: Reflected X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This patch contains 15 patches, which include fixing codecheck warning ,code refactor and indirect counter action support. Chengwen Feng (4): net/hns3: remove invalid encapsulation function net/hns3: delete strerror invoke net/hns3: rename function net/hns3: support indirect counter action Huisong Li (10): net/hns3: remove unnecessary assignment net/hns3: fix a misjudgment expression net/hns3: extract a common API to initialize MAC addrs net/hns3: remove unnecessary black lines net/hns3: extract a function to handle reset fail net/hns3: remove unused variables net/hns3: remove the number of queue descriptors net/hns3: remove the printing of memory addresses net/hns3: extract a common interface to obtain revision ID net/hns3: extract functions to create RSS and FDIR flow rule Jie Hai (1): net/hns3: remove unnecessary 'inline' V2: * fix compiling errors. drivers/net/hns3/hns3_cmd.c | 12 +- drivers/net/hns3/hns3_common.c | 76 ++++++ drivers/net/hns3/hns3_common.h | 3 + drivers/net/hns3/hns3_dcb.c | 12 +- drivers/net/hns3/hns3_ethdev.c | 85 ++----- drivers/net/hns3/hns3_ethdev.h | 5 - drivers/net/hns3/hns3_ethdev_vf.c | 93 +------ drivers/net/hns3/hns3_fdir.c | 3 +- drivers/net/hns3/hns3_fdir.h | 1 + drivers/net/hns3/hns3_flow.c | 399 ++++++++++++++++++++++++------ drivers/net/hns3/hns3_flow.h | 11 +- drivers/net/hns3/hns3_intr.c | 54 ++-- drivers/net/hns3/hns3_rxtx.c | 6 - drivers/net/hns3/hns3_rxtx.h | 2 - 14 files changed, 476 insertions(+), 286 deletions(-) -- 2.33.0