From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9B0B0A04B5; Tue, 27 Oct 2020 03:40:16 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2EE811E2B; Tue, 27 Oct 2020 03:40:14 +0100 (CET) Received: from qq.com (smtpbg467.qq.com [59.36.132.50]) by dpdk.org (Postfix) with ESMTP id A04381D9E for ; Tue, 27 Oct 2020 03:40:11 +0100 (CET) X-QQ-mid: bizesmtp6t1603766354tuoe5ykdg Received: from jiawenwu (unknown [183.129.236.74]) by esmtp6.qq.com (ESMTP) with id ; Tue, 27 Oct 2020 10:39:13 +0800 (CST) X-QQ-SSF: 01400000002000C0C000B00A0000000 X-QQ-FEAT: CCUDtG+dhcDNfnTd7n+TS2sGfElMOdNLIyuERON3zpeni2KryRlsSvrW4piZG g22mJBTXKVLIgYmaBW/rTPC6+CdKEnTnlAVhVWfq01kalMzecvjd8UDWPdMIifyYWRxk1WQ Fiu66Z+F2jwyDLLjH4s8xx3xplGDqdJQLKEhWLMJdZ4aELoPshvK0agf4Ye+rhC8zrcMolL nlAFfPJDYlv5jff1SUU7hyuj/3YGg+jOuddzYSdR+0QIHrIliMDX3jvXnPy50aonB4iAZrb scqvKgVcAJXO0iRHQZDUz/GLCNgNSSdXx96LgFTt/0VyYvz275LuA9CETas9OIBDpyE/NWQ WU+NnRi X-QQ-GoodBg: 2 From: "Jiawen Wu" To: "'Ferruh Yigit'" , References: <20201019085415.82207-1-jiawenwu@trustnetic.com> In-Reply-To: Date: Tue, 27 Oct 2020 10:39:13 +0800 Message-ID: <000301d6ac0a$5be17140$13a453c0$@trustnetic.com>+5645F2A484570742 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQHa8hVbTdzNZG5niZylkY0c60fr5gERUqQfqZme50A= Content-Language: zh-cn X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:trustnetic.com:qybgforeign:qybgforeign6 X-QQ-Bgrelay: 1 Subject: Re: [dpdk-dev] [PATCH v4 00/58] net: txgbe PMD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" On Monday, October 26, 2020 10:56 PM, Ferruh Yigit wrote: > On 10/19/2020 9:53 AM, Jiawen Wu wrote: > > v4: Add log type introduction, > > add txgbe support in release note. > > v3: Merge some recent changes in the main repo, > > fix the checkpatch warnings. > > v2: Re-order patches and fix some known problems. > > v1: Introduce txgbe PMD. > > > > > > Jiawen Wu (58): > > net/txgbe: add build and doc infrastructure > > net/txgbe: add ethdev probe and remove > > net/txgbe: add device init and uninit > > net/txgbe: add error types and registers > > net/txgbe: add MAC type and bus lan id > > net/txgbe: add HW infrastructure and dummy function > > net/txgbe: add EEPROM functions > > net/txgbe: add HW init and reset operation > > net/txgbe: add PHY init > > net/txgbe: add module identify > > net/txgbe: add PHY reset > > net/txgbe: add info get operation > > net/txgbe: add interrupt operation > > net/txgbe: add device configure operation > > net/txgbe: add link status change > > net/txgbe: add multi-speed link setup > > net/txgbe: add autoc read and write > > net/txgbe: add MAC address operations > > net/txgbe: add unicast hash bitmap > > net/txgbe: add Rx and Tx init > > net/txgbe: add Rx and Tx queues setup and release > > net/txgbe: add Rx and Tx start and stop > > net/txgbe: add packet type > > net/txgbe: fill simple transmit function > > net/txgbe: fill transmit function with hardware offload > > net/txgbe: fill Tx prepare function > > net/txgbe: fill receive functions > > net/txgbe: add device start operation > > net/txgbe: add Rx and Tx data path start and stop > > net/txgbe: add device stop and close operations > > net/txgbe: support Rx interrupt > > net/txgbe: add Rx and Tx queue info get > > net/txgbe: add device stats get > > net/txgbe: add device xstats get > > net/txgbe: add queue stats mapping > > net/txgbe: add VLAN handle support > > net/txgbe: add SWFW semaphore and lock > > net/txgbe: add PF module init and uninit for SRIOV > > net/txgbe: add process mailbox operation > > net/txgbe: add PF module configure for SRIOV > > net/txgbe: add VMDq configure > > net/txgbe: add RSS support > > net/txgbe: add DCB support > > net/txgbe: add flow control support > > net/txgbe: add FC auto negotiation support > > net/txgbe: add priority flow control support > > net/txgbe: add device promiscuous and allmulticast mode > > net/txgbe: add MTU set operation > > net/txgbe: add FW version get operation > > net/txgbe: add EEPROM info get operation > > net/txgbe: add register dump support > > net/txgbe: support device LED on and off > > net/txgbe: add mirror rule operations > > net/txgbe: add PTP support > > net/txgbe: add DCB info get operation > > net/txgbe: add Rx and Tx descriptor status > > net/txgbe: change stop operation callback to return int > > net/txgbe: introduce log type in the driver documentation >=20 > For series, > Reviewed-by: Ferruh Yigit >=20 > Series applied to dpdk-next-net/main, thanks. >=20 Thanks Ferruh, I want to know when should I send the web patch for NICs support. Will I be notified after the patch is merged? Or after the release of rc2? >=20 > 57/58 & 58/58 has been distributed to the relevant commits while = merging, > please double check them in the upstream repo. >=20 > 56/58 & 53/58 has been dropped while merging. > 56/58 needs a new version which can be send individually, > 53/58 is adding a deprecated feature, it can't go in as it is. >=20 > Also can you please send a patch for the comment mentioned in 38/58? I will send two additional patches, one as a new version for 56/58, the = other one to fix 'rte_panic()'.