From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH v2 1/2] ethdev: add tunnel and port RSS offload types Date: Thu, 31 Mar 2016 02:17:37 +0530 Message-ID: <20160330204735.GA7112@localhost.localdomain> References: <1459014937-852-1-git-send-email-jerin.jacob@caviumnetworks.com> <1459250409-5123-1-git-send-email-jerin.jacob@caviumnetworks.com> <1459250409-5123-2-git-send-email-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: "dev@dpdk.org" , "thomas.monjalon@6wind.com" , "Richardson, Bruce" To: "De Lara Guarch, Pablo" Return-path: Received: from na01-by2-obe.outbound.protection.outlook.com (mail-by2on0058.outbound.protection.outlook.com [207.46.100.58]) by dpdk.org (Postfix) with ESMTP id EC2312C49 for ; Wed, 30 Mar 2016 22:48:02 +0200 (CEST) Content-Disposition: inline In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, Mar 29, 2016 at 11:58:47AM +0000, De Lara Guarch, Pablo wrote: > Hi Jerin, > > > -----Original Message----- > > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Jerin Jacob > > Sent: Tuesday, March 29, 2016 12:20 PM > > To: dev@dpdk.org > > Cc: thomas.monjalon@6wind.com; Richardson, Bruce; Jerin Jacob > > Subject: [dpdk-dev] [PATCH v2 1/2] ethdev: add tunnel and port RSS offload > > types > > > > - added VXLAN, GENEVE and NVGRE tunnel flow types > > - added PORT flow type for accounting physical/virtual > > port or channel number in flow creation > > > > Signed-off-by: Jerin Jacob > > --- > > app/test-pmd/cmdline.c | 18 +++++++++++++++--- > > app/test-pmd/config.c | 9 +++++++++ > > lib/librte_ether/rte_eth_ctrl.h | 6 +++++- > > lib/librte_ether/rte_ethdev.h | 16 +++++++++++++++- > > 4 files changed, 44 insertions(+), 5 deletions(-) > > > > diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c > > index 93203f4..5fe8239 100644 > > --- a/app/test-pmd/cmdline.c > > +++ b/app/test-pmd/cmdline.c > > @@ -565,7 +565,7 @@ static void cmd_help_long_parsed(void > > *parsed_result, > > " Set crc-strip/rx-checksum/hardware- > > vlan/drop_en" > > " for ports.\n\n" > > > > - "port config all rss > > (all|ip|tcp|udp|sctp|ether|none)\n" > > + "port config all rss > > (all|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|none)\n" > > Could you update the testpmd document and extend the options in the command line help? Hi John and Pablo, I will send the V3 with testpmd document update. Command line help is already part of V2 > > Thanks, > Pablo > >