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 F10A84321C; Sat, 28 Oct 2023 03:57:34 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CD71F4029E; Sat, 28 Oct 2023 03:57:34 +0200 (CEST) Received: from szxga08-in.huawei.com (szxga08-in.huawei.com [45.249.212.255]) by mails.dpdk.org (Postfix) with ESMTP id BC6D240291 for ; Sat, 28 Oct 2023 03:57:32 +0200 (CEST) Received: from kwepemi500020.china.huawei.com (unknown [172.30.72.56]) by szxga08-in.huawei.com (SkyGuard) with ESMTP id 4SHMzF6mBHz1L9Jy; Sat, 28 Oct 2023 09:54:33 +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; Sat, 28 Oct 2023 09:57:29 +0800 Message-ID: <1227a718-1e89-c884-7de4-685c35e44f36@huawei.com> Date: Sat, 28 Oct 2023 09:57:28 +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/8] net/hns3: add some bugfix for hns3 To: Ferruh Yigit , CC: , , , References: <20231027060947.3183983-1-haijie1@huawei.com> <5fc381bd-1b6a-4320-903c-fb586efbb912@amd.com> From: Jie Hai In-Reply-To: <5fc381bd-1b6a-4320-903c-fb586efbb912@amd.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.67.121.175] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) 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 On 2023/10/28 3:29, Ferruh Yigit wrote: > On 10/27/2023 7:09 AM, Jie Hai wrote: >> This patchset contains some bugfix for hns3 pmd. >> >> Dengdui Huang (6): >> net/hns3: fix unchecked Rx free threshold >> net/hns3: fix double stats for IMP and global reset >> net/hns3: remove reset log in secondary >> net/hns3: fix multiple reset detected log >> net/hns3: fix the imp/global reset interrupted possibly >> net/hns3: refactor interrupt state query >> >> Huisong Li (1): >> net/hns3: fix segmentfault for NEON and SVE >> >> Jie Hai (1): >> net/hns3: fix a typo >> > > There is a checkpatch warning related to the atomics: > > ### [PATCH] net/hns3: fix multiple reset detected log > > Warning in drivers/net/hns3/hns3_ethdev.c: > Using __atomic_xxx built-ins, prefer rte_atomic_xxx > > This is about update in the preferred atomic APIs, but as far as I can > see patch doesn't add new atomic API but just changes the logic in the > code, so I think we can ignore this warning for now, > But please be aware of the guidance of the new atomic APIs, and take > this into account for new code. > Thanks, and we will pay attention to it. > > Series applied to dpdk-next-net/main, thanks. > .