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 1D3A9A034F; Wed, 31 Mar 2021 04:38:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 977244069E; Wed, 31 Mar 2021 04:38:40 +0200 (CEST) Received: from szxga05-in.huawei.com (szxga05-in.huawei.com [45.249.212.191]) by mails.dpdk.org (Postfix) with ESMTP id 12D1940141 for ; Wed, 31 Mar 2021 04:38:39 +0200 (CEST) Received: from DGGEMS414-HUB.china.huawei.com (unknown [172.30.72.58]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4F99RM20t4zPmbb for ; Wed, 31 Mar 2021 10:35:59 +0800 (CST) Received: from [10.67.103.128] (10.67.103.128) by DGGEMS414-HUB.china.huawei.com (10.3.19.214) with Microsoft SMTP Server id 14.3.498.0; Wed, 31 Mar 2021 10:38:34 +0800 To: Ferruh Yigit , References: <1616748961-11239-1-git-send-email-humin29@huawei.com> <1616748961-11239-3-git-send-email-humin29@huawei.com> <28027b9e-7db8-5c4f-e289-27308a33911a@intel.com> From: "Min Hu (Connor)" Message-ID: Date: Wed, 31 Mar 2021 10:38:34 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.3.1 MIME-Version: 1.0 In-Reply-To: <28027b9e-7db8-5c4f-e289-27308a33911a@intel.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.67.103.128] X-CFilter-Loop: Reflected Subject: Re: [dpdk-dev] [PATCH 2/2] net/hns3: support IEEE 1588 PTP 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" 在 2021/3/30 22:12, Ferruh Yigit 写道: > On 3/26/2021 8:56 AM, Min Hu (Connor) wrote: >> Add hns3 support for new ethdev APIs to enable and read IEEE1588/ >> 802.1AS PTP timestamps. >> >> Signed-off-by: Min Hu (Connor) >> --- >>   doc/guides/nics/features/hns3.ini |   2 + >>   doc/guides/nics/hns3.rst          |   1 + >>   drivers/net/hns3/hns3_cmd.h       |  33 +++++ >>   drivers/net/hns3/hns3_ethdev.c    |  59 +++++++- >>   drivers/net/hns3/hns3_ethdev.h    |  25 ++++ >>   drivers/net/hns3/hns3_ptp.c       | 294 >> ++++++++++++++++++++++++++++++++++++++ >>   drivers/net/hns3/hns3_regs.h      |  25 ++++ >>   drivers/net/hns3/hns3_rxtx.c      |  56 +++++++- >>   drivers/net/hns3/hns3_rxtx.h      |  12 ++ >>   drivers/net/hns3/hns3_rxtx_vec.c  |  19 ++- >>   drivers/net/hns3/meson.build      |   3 +- > > Can you please update release notes too? > Will update doc/guides/rel_notes/release_21_05.rst in v2 Thanks > .