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 8A902A00C4; Tue, 4 Oct 2022 18:00:57 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 37CF540DDC; Tue, 4 Oct 2022 18:00:57 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id EAE7140A79; Tue, 4 Oct 2022 18:00:54 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 72B7574; Tue, 4 Oct 2022 19:00:54 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 72B7574 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1664899254; bh=UKMppnRDVgYxNf48Ngnp6q0DpxmbKK5VhCbohqFK7iI=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=c06ylgcjG0NofrPWnTaoVOppYGaS2gbpypqs8EnmzhdQu4Nqy+4+uea9FZFWPJRY8 NDH2PUicPGq5c0y6stwzOP2tT97xgkjO8+qCQYV4BRfKCn2Lha5PQLxPm9ltMvlIkC Civn41TYG7cOKebglFoq6EoVhHZ7/UR/WpurqPVw= Message-ID: <13420e89-ead0-03a5-c5ab-1911933753d7@oktetlabs.ru> Date: Tue, 4 Oct 2022 19:00:53 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.0 Subject: Re: [PATCH RESEND 00/13] some bugfixes and clean code for hns3 Content-Language: en-US To: Dongdong Liu , dev@dpdk.org, ferruh.yigit@xilinx.com, thomas@monjalon.net, lihuisong@huawei.com, haijie1@huawei.com Cc: stable@dpdk.org, fengchengwen@huawei.com, yisen.zhuang@huawei.com, humin29@huawei.com References: <20220905085939.22236-1-liudongdong3@huawei.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20220905085939.22236-1-liudongdong3@huawei.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 On 9/5/22 11:59, Dongdong Liu wrote: > This patchset consists of two parts that have been sent out before. > 1. [PATCH 0/5] some bugfixes and clean code for hns3 > https://lore.kernel.org/all/20220713115002.8959-2-liudongdong3@huawei.com/T/ > 2. [PATCH 0/8] some bugfixes for hns3 > https://lore.kernel.org/all/20220727103616.18596-1-liudongdong3@huawei.com/ > > Rebased on the latest dpdk-net-next (branch main) to avoid merge confict. > > Chengwen Feng (6): > net/hns3: fix segment fault when using SVE xmit > net/hns3: fix next-to-use overflow when using SVE xmit > net/hns3: fix next-to-use overflow when using simple xmit > net/hns3: optimize SVE xmit performance > net/hns3: fix segment fault when secondary process access FW > net/hns3: revert optimize Tx performance > > Dongdong Liu (1): > net/hns3: adjust code for dump file > > Huisong Li (3): > net/hns3: fix fail to receive PTP packet > net/hns3: delete rte unused tag > net/hns3: fix uncleared hardware MAC statistics > > Jie Hai (1): > net/hns3: add dump of VF vlan filter modify capability > > Min Hu (Connor) (2): > net/hns3: rename hns3 dump file > net/hns3: fix code check warning > > drivers/net/hns3/hns3_common.c | 4 +- > .../hns3/{hns3_ethdev_dump.c => hns3_dump.c} | 292 ++++++++++-------- > drivers/net/hns3/hns3_dump.h | 13 + > drivers/net/hns3/hns3_ethdev.c | 11 +- > drivers/net/hns3/hns3_ethdev.h | 15 +- > drivers/net/hns3/hns3_ethdev_vf.c | 12 +- > drivers/net/hns3/hns3_flow.c | 4 +- > drivers/net/hns3/hns3_intr.c | 27 +- > drivers/net/hns3/hns3_intr.h | 4 +- > drivers/net/hns3/hns3_ptp.c | 1 - > drivers/net/hns3/hns3_regs.c | 4 +- > drivers/net/hns3/hns3_rss.c | 2 +- > drivers/net/hns3/hns3_rss.h | 2 +- > drivers/net/hns3/hns3_rxtx.c | 127 ++++---- > drivers/net/hns3/hns3_rxtx.h | 14 +- > drivers/net/hns3/hns3_rxtx_vec.c | 20 +- > drivers/net/hns3/hns3_rxtx_vec_sve.c | 32 +- > drivers/net/hns3/hns3_stats.c | 26 +- > drivers/net/hns3/hns3_stats.h | 5 +- > drivers/net/hns3/meson.build | 2 +- > 20 files changed, 333 insertions(+), 284 deletions(-) > rename drivers/net/hns3/{hns3_ethdev_dump.c => hns3_dump.c} (73%) > create mode 100644 drivers/net/hns3/hns3_dump.h > > -- > 2.22.0 > Applied to dpdk-next-net/main, thanks.