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 B38A642630; Mon, 25 Sep 2023 04:33:51 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 36D8040274; Mon, 25 Sep 2023 04:33:51 +0200 (CEST) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com [45.249.212.188]) by mails.dpdk.org (Postfix) with ESMTP id 6BD3C4026F; Mon, 25 Sep 2023 04:33:49 +0200 (CEST) Received: from kwepemi500020.china.huawei.com (unknown [172.30.72.54]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4Rv6KL3tYHzNns8; Mon, 25 Sep 2023 10:29:58 +0800 (CST) Received: from [10.67.121.175] (10.67.121.175) by kwepemi500020.china.huawei.com (7.221.188.8) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.31; Mon, 25 Sep 2023 10:33:46 +0800 Message-ID: Date: Mon, 25 Sep 2023 10:33:46 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 Subject: Re: [PATCH 0/5] net/hns3: some performance optimizations To: Dongdong Liu , , , , CC: References: <20230711102448.11627-1-liudongdong3@huawei.com> From: Jie Hai In-Reply-To: <20230711102448.11627-1-liudongdong3@huawei.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.121.175] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To kwepemi500020.china.huawei.com (7.221.188.8) 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 Hi, all maintainers, Kindly ping for patch 2/5-5/5. Best regards, Jie Hai On 2023/7/11 18:24, Dongdong Liu wrote: > This patchset is to do some performance optimizations for hns3. > > Huisong Li (5): > net/hns3: fix incorrect index to look up table in NEON Rx > net/hns3: fix the order of NEON Rx code > net/hns3: optimize free mbuf code for SVE Tx > net/hns3: optimize the rearm mbuf function for SVE Rx > net/hns3: optimize SVE Rx performance > > drivers/net/hns3/hns3_rxtx_vec.c | 51 ------ > drivers/net/hns3/hns3_rxtx_vec.h | 51 ++++++ > drivers/net/hns3/hns3_rxtx_vec_neon.h | 82 ++++----- > drivers/net/hns3/hns3_rxtx_vec_sve.c | 230 ++++---------------------- > 4 files changed, 114 insertions(+), 300 deletions(-) > > -- > 2.22.0 > > > .