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 9FC39A0546; Fri, 30 Apr 2021 08:29:05 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CA0084113B; Fri, 30 Apr 2021 08:28:51 +0200 (CEST) Received: from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35]) by mails.dpdk.org (Postfix) with ESMTP id 2CAA84069E for ; Fri, 30 Apr 2021 08:28:47 +0200 (CEST) Received: from DGGEMS402-HUB.china.huawei.com (unknown [172.30.72.58]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4FWj7B4XBQzBt79 for ; Fri, 30 Apr 2021 14:26:14 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS402-HUB.china.huawei.com (10.3.19.202) with Microsoft SMTP Server id 14.3.498.0; Fri, 30 Apr 2021 14:28:43 +0800 From: "Min Hu (Connor)" To: CC: Date: Fri, 30 Apr 2021 14:28:44 +0800 Message-ID: <1619764130-57208-1-git-send-email-humin29@huawei.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1619408092-54050-1-git-send-email-humin29@huawei.com> References: <1619408092-54050-1-git-send-email-humin29@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.69.192.56] X-CFilter-Loop: Reflected Subject: [dpdk-dev] [PATCH v3 0/6] optimization and bugfix for hns3 PMD 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 Sender: "dev" This patch set contains one patch for performance optimization, this is: 'net/hns3: improve IO path data cache usage'. The others are bugfixes for hns3 PMD. Chengwen Feng (6): net/hns3: delete some unused capabilities net/hns3: modify write reg opt API impl net/hns3: use RTE DIM instead of ARRAY SIZE net/hns3: improve IO path data cache usage net/hns3: log FDIR configuration net/hns3: fix vector Rx burst can't exceed 32 --- v3: * put the packet judgment error into the subfunction. v2: * fixed commit info. * changed hns3_info to hns3_dbg. * deleted tx push, simple bd capa. drivers/net/hns3/hns3_cmd.c | 15 +--- drivers/net/hns3/hns3_cmd.h | 17 ++--- drivers/net/hns3/hns3_ethdev.h | 43 +++++------- drivers/net/hns3/hns3_fdir.c | 13 ++++ drivers/net/hns3/hns3_flow.c | 18 ++--- drivers/net/hns3/hns3_intr.c | 4 +- drivers/net/hns3/hns3_rxtx.h | 128 +++++++++++++++++++++-------------- drivers/net/hns3/hns3_rxtx_vec.c | 36 +++++++--- drivers/net/hns3/hns3_rxtx_vec.h | 3 + drivers/net/hns3/hns3_rxtx_vec_sve.c | 32 +++++++-- 10 files changed, 183 insertions(+), 126 deletions(-) -- 2.7.4