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 24FEDA04B5; Wed, 13 Jan 2021 14:15:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9A39B140D1E; Wed, 13 Jan 2021 14:15:57 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 2F7AA140D1B for ; Wed, 13 Jan 2021 14:15:54 +0100 (CET) IronPort-SDR: V5Z4cJYS6Ig91vFePMtbgfCF9+YlCz8o82nxt3dd8sbK+vZtYPwtAPmxmo4MexpUV8ny82zs4s SA5gW9CSD4lA== X-IronPort-AV: E=McAfee;i="6000,8403,9862"; a="178346138" X-IronPort-AV: E=Sophos;i="5.79,344,1602572400"; d="scan'208";a="178346138" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jan 2021 05:15:51 -0800 IronPort-SDR: 4eVN0fTVOkeOiTRdVKL6H1SIuhwM/ujw+snsm54bxYnIj5qWi1YVft9W/YHZt+1fCchyMY+wwP 3eOWawwtKepQ== X-IronPort-AV: E=Sophos;i="5.79,344,1602572400"; d="scan'208";a="363880702" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.253.194]) ([10.213.253.194]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Jan 2021 05:15:50 -0800 To: Jiawen Wu Cc: dev@dpdk.org References: <20201218093702.3651867-1-jiawenwu@trustnetic.com> <017401d6e973$83048270$890d8750$@trustnetic.com> From: Ferruh Yigit Message-ID: <47b4e710-d035-cf56-04c0-52423ba5ab98@intel.com> Date: Wed, 13 Jan 2021 13:15:46 +0000 MIME-Version: 1.0 In-Reply-To: <017401d6e973$83048270$890d8750$@trustnetic.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v3 00/33] net: add txgbe PMD part 2 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 1/13/2021 6:15 AM, Jiawen Wu wrote: > Hi Ferruh, > >> -----Original Message----- >> From: Jiawen Wu >> Sent: Friday, December 18, 2020 5:36 PM >> To: dev@dpdk.org >> Cc: Jiawen Wu >> Subject: [PATCH v3 00/33] net: add txgbe PMD part 2 >> >> This patch adds the rest of txgbe PMD for its PF part. >> Support include flow API, traffic mirror, traffic manager, and ipsec. >> >> v3: >> - Delete macsec, add traffic mirror >> - Re-order patches for the part of flow filter >> - Fix to parse L2 tunnel filter >> - Fix build errors and spelling mistake >> >> v2: >> - Rebase on next-net >> >> Jiawen Wu (33): >> net/txgbe: add generic flow API >> net/txgbe: add ntuple filter init and uninit >> net/txgbe: support ntuple filter add and delete >> net/txgbe: parse n-tuple filter >> net/txgbe: support ethertype filter add and delete >> net/txgbe: parse ethertype filter >> net/txgbe: support syn filter add and delete >> net/txgbe: parse syn filter >> net/txgbe: add L2 tunnel filter init and uninit >> net/txgbe: config L2 tunnel filter with e-tag >> net/txgbe: support L2 tunnel filter add and delete >> net/txgbe: parse L2 tunnel filter >> net/txgbe: add flow director filter init and uninit >> net/txgbe: configure flow director filter >> net/txgbe: support flow director filter add and delete >> net/txgbe: parse flow director filter >> net/txgbe: restore RSS filter >> net/txgbe: parse RSS filter >> net/txgbe: support to create consistent filter >> net/txgbe: support to destroy consistent filter >> net/txgbe: flush all the filters >> net/txgbe: support UDP tunnel port add and delete >> net/txgbe: add TM configuration init and uninit >> net/txgbe: add TM capabilities get operation >> net/txgbe: support TM shaper profile add and delete >> net/txgbe: support TM node add and delete >> net/txgbe: add TM hierarchy commit >> net/txgbe: support to add traffic mirror rules >> net/txgbe: add IPsec context creation >> net/txgbe: add security session create operation >> net/txgbe: destroy security session >> net/txgbe: add security offload in Rx and Tx process >> net/txgbe: add security type in flow action Hi Jiawen, Can you please send a release notes update for the added support? Some short PMD documentation on how to use new added rte_flow support and tm support can be good. Since some of the names of the filtering is not very clear, documentation and samples may help there. It would be better to send proper documentation update with the code changes, but for this case I will continue with the set, please send the doc updates as separate patches. Also "Traffic mirroring" feature is deprecated, it is dropped while merging. Except from 28/33 (traffic mirroring) Series applied to dpdk-next-net/main, thanks.