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 8B159A0551; Thu, 9 Jun 2022 12:57:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 40D6240689; Thu, 9 Jun 2022 12:57:50 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 7B19A40220 for ; Thu, 9 Jun 2022 12:57:48 +0200 (CEST) Received: from [192.168.1.40] (unknown [188.170.81.145]) (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 C01C22CC; Thu, 9 Jun 2022 13:57:47 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru C01C22CC DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1654772267; bh=2xwC4yeOyoCXlEflSdgZK5anvntPzA/byJdGlEWfJ6g=; h=Date:Subject:To:References:From:In-Reply-To:From; b=QnYdTzPDJvD+1c3es4LNgo16JPIkVR+VwYPpPgyxIhvBkjqh5XQapSL9wQnLgV8LB 7PbKHBoEJAtUMPPftWoFveO8yyHT8Ewxeqv6j+9dFjZqpr6HwHVO6XY34IzahS2dpp ZKgUBRUfMYVBPiqo8X31bHYc5eOEvcZ/1EhK4Iao= Message-ID: Date: Thu, 9 Jun 2022 13:57:41 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0 Subject: Re: [PATCH v2 00/11] bugfix for hns3 PMD Content-Language: en-US To: "Min Hu (Connor)" , dev@dpdk.org References: <20220519122917.2334-1-humin29@huawei.com> <20220601035251.16408-1-humin29@huawei.com> From: Andrew Rybchenko In-Reply-To: <20220601035251.16408-1-humin29@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 6/1/22 06:52, Min Hu (Connor) wrote: > This patch set contains 11 bugfix for hns3 PMD. > > Chengwen Feng (1): > net/hns3: fix TM capability incorrectly defined > > Huisong Li (9): > net/hns3: add check for deferred start queue when rollback > net/hns3: remove redundant parentheses > net/hns3: adjust the data type of some variables > net/hns3: fix an unreasonable memset > net/hns3: remove duplicate definition > net/hns3: fix return value for unsupported tuple > net/hns3: modify a function name > net/hns3: unify the code wrap style > net/hns3: fix a segfault from secondary process > > Min Hu (Connor) (1): > net/hns3: fix coverity codecheck > > drivers/net/hns3/hns3_cmd.c | 2 +- > drivers/net/hns3/hns3_cmd.h | 2 +- > drivers/net/hns3/hns3_common.c | 14 +++---- > drivers/net/hns3/hns3_dcb.c | 7 ++-- > drivers/net/hns3/hns3_ethdev.c | 20 +++++----- > drivers/net/hns3/hns3_ethdev_vf.c | 23 ++++++------ > drivers/net/hns3/hns3_fdir.c | 30 +++++++-------- > drivers/net/hns3/hns3_fdir.h | 2 +- > drivers/net/hns3/hns3_flow.c | 25 ++++--------- > drivers/net/hns3/hns3_ptp.c | 2 +- > drivers/net/hns3/hns3_regs.c | 2 +- > drivers/net/hns3/hns3_rss.c | 8 ++-- > drivers/net/hns3/hns3_rss.h | 2 + > drivers/net/hns3/hns3_rxtx.c | 62 ++++++++++++++++--------------- > drivers/net/hns3/hns3_rxtx_vec.h | 4 +- > drivers/net/hns3/hns3_stats.c | 28 +++++++------- > 16 files changed, 111 insertions(+), 122 deletions(-) > --- > v2: > * delete one patch which is fixed by others. > refer to: > https://patches.dpdk.org/project/dpdk/cover/20220112072808.59713-1-jsoref@gmail.com/ Applied to dpdk-next-net/main, thanks.