From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 68DDB5946 for ; Wed, 11 Feb 2015 09:09:43 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP; 11 Feb 2015 00:05:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,557,1418112000"; d="scan'208";a="664719077" Received: from pgsmsx103.gar.corp.intel.com ([10.221.44.82]) by fmsmga001.fm.intel.com with ESMTP; 11 Feb 2015 00:09:37 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by PGSMSX103.gar.corp.intel.com (10.221.44.82) with Microsoft SMTP Server (TLS) id 14.3.195.1; Wed, 11 Feb 2015 16:09:36 +0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.161]) by shsmsx102.ccr.corp.intel.com ([169.254.2.62]) with mapi id 14.03.0195.001; Wed, 11 Feb 2015 16:09:36 +0800 From: "Zhang, Helin" To: "Wu, Jingjing" , "dev@dpdk.org" Thread-Topic: [PATCH 00/15] migrate flow director in ixgbe driver to new API Thread-Index: AQHQO4SUbiomZByvCUuXn7kxmReyU5zrLExw Date: Wed, 11 Feb 2015 08:09:34 +0000 Message-ID: References: <1422509365-13596-1-git-send-email-jingjing.wu@intel.com> In-Reply-To: <1422509365-13596-1-git-send-email-jingjing.wu@intel.com> 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 00/15] migrate flow director in ixgbe driver to new API 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: Wed, 11 Feb 2015 08:09:43 -0000 > -----Original Message----- > From: Wu, Jingjing > Sent: Thursday, January 29, 2015 1:29 PM > To: dev@dpdk.org > Cc: Wu, Jingjing; Zhang, Helin; Liu, Jijiang; Mcnamara, John; Cao, Min; X= u, > HuilongX > Subject: [PATCH 00/15] migrate flow director in ixgbe driver to new API >=20 > The patch set uses new filter_ctrl API to replace old flow director filte= r APIs. > It uses new functions and structure to replace old ones in ixgbe driver, = updates > commands to replace old ones in testpmd, and removes the old APIs >=20 > Jingjing Wu (15): > ixgbe: migrate flow director filter operations (add/delete/update) to > new API > ethdev: extend flow type and flexible payload type definition for flow > director > ixgbe: implement the flexpayload configuration of flow director filter > app/test: remove the flexbytes_offset setting in test_link_bonding > testpmd: remove the flexbytes_offset setting > ethdev: remove flexbytes_offset from rte_fdir_conf > ethdev: structures definition for flow director masks > ixgbe: implement the mask configuration of flow director filter > ixgbe: implement the get info and statistic operations of flow > director > ixgbe: implement the flush operation of flow director > testpmd: add and update commands for flow director > testpmd: update function to show flow director information > testpmd: set the default value of flow director's mask > testpmd: remove old commands for flow director > doc: commands changed in testpmd_funcs.rst for flow director >=20 > app/test-pmd/cmdline.c | 755 ++++------------- > app/test-pmd/config.c | 197 +---- > app/test-pmd/parameters.c | 16 - > app/test-pmd/testpmd.c | 14 +- > app/test-pmd/testpmd.h | 16 - > app/test/test_link_bonding.c | 1 - > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 287 +++---- > lib/librte_ether/rte_eth_ctrl.h | 15 + > lib/librte_ether/rte_ethdev.h | 3 +- > lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 11 +- > lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 43 +- > lib/librte_pmd_ixgbe/ixgbe_fdir.c | 1169 > ++++++++++++++++----------- > 12 files changed, 1054 insertions(+), 1473 deletions(-) >=20 > -- > 1.9.3 Acked-by: Helin Zhang Note that there is dependency on "[PATCH v2 0/7] unified flow types and RSS= offload types". That unified flow types and rss offload types should be merged first, and t= hen rework is needed.