From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id C4C615A44 for ; Thu, 12 Jan 2017 12:38:46 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP; 12 Jan 2017 03:38:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,349,1477983600"; d="scan'208";a="1093148867" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by fmsmga001.fm.intel.com with ESMTP; 12 Jan 2017 03:38:45 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 12 Jan 2017 03:38:45 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.177]) by shsmsx102.ccr.corp.intel.com ([169.254.2.88]) with mapi id 14.03.0248.002; Thu, 12 Jan 2017 19:38:41 +0800 From: "Xing, Beilei" To: "Zhao1, Wei" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v5 00/18] net/ixgbe: Consistent filter API Thread-Index: AQHSbLXKgcbZx8iS902yqlyT0MQKMaE0t0Zw Date: Thu, 12 Jan 2017 11:38:41 +0000 Message-ID: <94479800C636CB44BD422CB454846E0131590B00@SHSMSX101.ccr.corp.intel.com> References: <1484210439-61746-1-git-send-email-wei.zhao1@intel.com> <1484212665-1635-1-git-send-email-wei.zhao1@intel.com> In-Reply-To: <1484212665-1635-1-git-send-email-wei.zhao1@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNTg3YWIyYzgtMTQ1Ny00MTdjLTkyOTQtN2JhNDQzY2NhNmVjIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkpISUt2SlpNbDV6TnQxXC9yYVlRUTk2NFwvYnl6TFdOK1pTdktvMkhlVG5uMD0ifQ== x-ctpclassification: CTP_IC 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 v5 00/18] net/ixgbe: Consistent filter API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jan 2017 11:38:47 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Wei Zhao > Sent: Thursday, January 12, 2017 5:17 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v5 00/18] net/ixgbe: Consistent filter API >=20 > The patches mainly finish following functions: > 1) Store and restore all kinds of filters. > 2) Parse all kinds of filters. > 3) Add flow validate function. > 4) Add flow create function. > 5) Add flow destroy function. > 6) Add flow flush function. >=20 > v2 changes: > fix git log error > Modify some function call relationship > Change return value type of all parse flow functions Update error info = for all > flow ops Add ixgbe_filterlist_flush to flush flows and rules created >=20 > v3 change: > add new file ixgbe_flow.c to store generic API parser related functions = add > more comment about pattern and action rules add attr check in parser > functions change struct name ixgbe_flow to rte_flow change SYN to TCP > SYN change to use memset initizlize struct ixgbe_filter_info break down > filter uninit process to 3 indepedent functions in eth_ixgbe_dev_uninit() > change struct rte_flow_item_nvgre definition change struct > rte_flow_item_e_tag definition fix one bug in function ixgbe_dev_filter_= ctrl > add goto in function ixgbe_flow_create delete some useless initializatio= n > eliminate some git log check warning >=20 > v4 change: > fix some check patch warning >=20 > v5 change: > fix some git log warning >=20 > zhao wei (18): > net/ixgbe: store TCP SYN filter > net/ixgbe: store flow director filter > net/ixgbe: store L2 tunnel filter > net/ixgbe: restore n-tuple filter > net/ixgbe: restore ether type filter > net/ixgbe: restore TCP SYN filter > net/ixgbe: restore flow director filter > net/ixgbe: restore L2 tunnel filter > net/ixgbe: store and restore L2 tunnel configuration > net/ixgbe: flush all the filters > net/ixgbe: parse n-tuple filter > net/ixgbe: parse ethertype filter > net/ixgbe: parse TCP SYN filter > net/ixgbe: parse L2 tunnel filter > net/ixgbe: parse flow director filter > net/ixgbe: create consistent filter > net/ixgbe: destroy consistent filter > net/ixgbe: flush all the filter list >=20 > drivers/net/ixgbe/Makefile | 2 + > drivers/net/ixgbe/ixgbe_ethdev.c | 667 +++++++-- > drivers/net/ixgbe/ixgbe_ethdev.h | 203 ++- > drivers/net/ixgbe/ixgbe_fdir.c | 407 ++++-- > drivers/net/ixgbe/ixgbe_flow.c | 2808 > ++++++++++++++++++++++++++++++++++++++ > drivers/net/ixgbe/ixgbe_pf.c | 26 +- > lib/librte_ether/rte_flow.h | 48 + > 7 files changed, 3950 insertions(+), 211 deletions(-) create mode 10064= 4 > drivers/net/ixgbe/ixgbe_flow.c >=20 Acked-by: Beilei Xing