From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 1FB695424 for ; Thu, 22 Jan 2015 01:28:42 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP; 21 Jan 2015 16:28:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,862,1389772800"; d="scan'208";a="443424567" Received: from kmsmsx151.gar.corp.intel.com ([172.21.73.86]) by FMSMGA003.fm.intel.com with ESMTP; 21 Jan 2015 16:15:15 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by KMSMSX151.gar.corp.intel.com (172.21.73.86) with Microsoft SMTP Server (TLS) id 14.3.195.1; Thu, 22 Jan 2015 08:28:36 +0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.231]) by shsmsx102.ccr.corp.intel.com ([169.254.2.238]) with mapi id 14.03.0195.001; Thu, 22 Jan 2015 08:28:35 +0800 From: "Wu, Jingjing" To: "De Lara Guarch, Pablo" , "dev@dpdk.org" Thread-Topic: [PATCH 0/5] new ntuple filter replaces 2tuple and 5tuple filters Thread-Index: AQHQMGUPeAN+4jEHakimGJB2hm0B2JzKAbeAgAFR4LA= Date: Thu, 22 Jan 2015 00:28:34 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F8B83EF1@SHSMSX104.ccr.corp.intel.com> References: <1421286361-11504-1-git-send-email-jingjing.wu@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH 0/5] new ntuple filter replaces 2tuple and 5tuple filters X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jan 2015 00:28:43 -0000 Hi, Pablo Yes, sure. I will send it soon. Thanks for your attention. > -----Original Message----- > From: De Lara Guarch, Pablo > Sent: Wednesday, January 21, 2015 8:18 PM > To: Wu, Jingjing; dev@dpdk.org > Cc: Cao, Min > Subject: RE: [PATCH 0/5] new ntuple filter replaces 2tuple and 5tuple fil= ters >=20 >=20 >=20 > > -----Original Message----- > > From: Wu, Jingjing > > Sent: Thursday, January 15, 2015 1:46 AM > > To: dev@dpdk.org > > Cc: Wu, Jingjing; De Lara Guarch, Pablo; Cao, Min > > Subject: [PATCH 0/5] new ntuple filter replaces 2tuple and 5tuple > > filters > > > > The patch set uses new filter_ctrl API to replace old 2tuple and > > 5tuple filter APIs. > > It defines ntuple filter to combine 2tuple and 5tuple types. > > It uses new functions and structure to replace old ones in igb/ixgbe > > driver, new commands to replace old ones in testpmd, and removes the > old APIs. > > It removes the filter's index parameters from user interface, only the > > filter's key and assigned queue are visible to user. > > > > Jingjing Wu (5): > > ethdev: define ntuple filter type and its structure > > ixgbe: ntuple filter functions replace old ones for 5tuple filter > > e1000: ntuple filter functions replace old ones for 2tuple and 5tuple > > filter > > testpmd: new commands for ntuple filter > > ethdev: remove old APIs and structures of 5tuple and 2tuple filters > > > > app/test-pmd/cmdline.c | 406 ++++++++-------- > > app/test-pmd/config.c | 65 --- > > lib/librte_ether/rte_eth_ctrl.h | 57 +++ > > lib/librte_ether/rte_ethdev.c | 116 ----- > > lib/librte_ether/rte_ethdev.h | 193 -------- > > lib/librte_pmd_e1000/e1000_ethdev.h | 79 +++- > > lib/librte_pmd_e1000/igb_ethdev.c | 892 > +++++++++++++++++++++++++- > > ---------- > > lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 489 +++++++++++++++----- > > lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 62 ++- > > 9 files changed, 1344 insertions(+), 1015 deletions(-) > > > > -- > > 1.9.3 >=20 > Could you send a v2 of this patchset? Your previous patchset "Integrate > ethertype filter in igb/ixgbe driver to new API" > (which has been applied yesterday) contains already some of the code that > this patchset has. >=20 > Thanks, > Pablo