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 E6DBEA0548; Mon, 1 Nov 2021 03:08:45 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6F4CC40E28; Mon, 1 Nov 2021 03:08:45 +0100 (CET) Received: from smtpbgsg2.qq.com (smtpbgsg2.qq.com [54.254.200.128]) by mails.dpdk.org (Postfix) with ESMTP id 9BF3740DF6 for ; Mon, 1 Nov 2021 03:08:42 +0100 (CET) X-QQ-mid: bizesmtp40t1635732516taz3pznb Received: from jiawenwu (unknown [183.129.236.74]) by esmtp6.qq.com (ESMTP) with id ; Mon, 01 Nov 2021 10:08:35 +0800 (CST) X-QQ-SSF: 01400000002000E0I000B00A0000000 X-QQ-FEAT: jfdGVjI73+Rkt7LNYum3uDjHMJ4p9mnfDf9rBpc38LoufvY9mwmEsk5RFmxpK j1DoOFBPg3NCI42jY/Uz+cvNFqPprxUFfLYBiyH8aL+2JcdJV5HZ3V9t0Biu04aQIBjuFaj 3twNJ4E7oF57VCI/H59uSbd8vsMwuKHQZKcptutqRJJvBs4uxcg9ED29UTnOIGv4KH3cIuQ e0qqvPfC0hyYS/ByoSeGX/SKZ5RrrQZ1/2k4oIBGgHo0oZoj7CtbceJciT0+UgRgpwznlB5 oKNWBt3yqf0s/IBAwqLPw9mqreb1moNxdGLse626ptycGJpu1nLvFW2laoKYQ3im/qjOWKt +yd8g5Eff1twNIU6FA= X-QQ-GoodBg: 2 From: "Jiawen Wu" To: "'Ferruh Yigit'" Cc: References: <20211021095023.18288-1-jiawenwu@trustnetic.com> <8e94c861-8ab8-074e-1de7-52da7503da01@intel.com> In-Reply-To: <8e94c861-8ab8-074e-1de7-52da7503da01@intel.com> Date: Mon, 1 Nov 2021 10:08:35 +0800 Message-ID: <010501d7cec5$60eea250$22cbe6f0$@trustnetic.com>+396DF51DCA423AAC MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQMd6vfGj9gbc4Tg1BZNdQLsJuL5zQH3mgFaqVH3rJA= Content-Language: zh-cn X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:trustnetic.com:qybgforeign:qybgforeign7 X-QQ-Bgrelay: 1 Subject: Re: [dpdk-dev] [PATCH v2 00/26] net/ngbe: add many features 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" On October 30, 2021 6:15 AM, Ferruh Yigit wrote: > On 10/21/2021 10:49 AM, Jiawen Wu wrote: > > This patch adds a number of major features to complete ngbe PMD. > > > > v2: > > - Add support to get Rx/Tx burst mode info. > > - Drop Rx interrupt support. > > - Minor code tweaks. > > > > Jiawen Wu (26): > > net/ngbe: add packet type > > net/ngbe: support scattered Rx > > net/ngbe: support Rx checksum offload > > net/ngbe: support TSO > > net/ngbe: support Rx/Tx burst mode info > > net/ngbe: support CRC offload > > net/ngbe: support jumbo frame > > net/ngbe: support VLAN offload and VLAN filter > > net/ngbe: support basic statistics > > net/ngbe: support device xstats > > net/ngbe: support MTU set > > net/ngbe: add device promiscuous and allmulticast mode > > net/ngbe: support getting FW version > > net/ngbe: add loopback mode > > net/ngbe: support MAC filters > > net/ngbe: support RSS hash > > net/ngbe: support SRIOV > > net/ngbe: add mailbox process operations > > net/ngbe: support flow control > > net/ngbe: support device LED on and off > > net/ngbe: support EEPROM dump > > net/ngbe: support register dump > > net/ngbe: support timesync > > net/ngbe: add Rx and Tx queue info get > > net/ngbe: add Rx and Tx descriptor status > > net/ngbe: add Tx done cleanup > > >=20 > The ethdev macros/enums are changed to have the RTE_ prefix, driver = was > using old versions, they are updated in next-net. >=20 > The mbuf library PKT_ macros are updated to have RTE_MBUF_ prefix, = drier > was using old versions, they are updated in next-net. >=20 > 'rx_queue_count' dev_ops function parameter are updated, > 'ngbe_dev_rx_queue_count()' updated accordingly in next-net. >=20 >=20 > Overall there was bunch of updates, since they are straightforward I = did myself > to reduce overhead of sending new version of the set, but please = confirm the > latest version of the set in next-net. Thanks Ferruh, I'll check it.