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 C8C8E2C6D for ; Fri, 13 Jan 2017 07:27:16 +0100 (CET) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP; 12 Jan 2017 22:27:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,220,1477983600"; d="scan'208";a="52743047" Received: from pgsmsx103.gar.corp.intel.com ([10.221.44.82]) by fmsmga005.fm.intel.com with ESMTP; 12 Jan 2017 22:27:14 -0800 Received: from pgsmsx106.gar.corp.intel.com ([169.254.9.2]) by PGSMSX103.gar.corp.intel.com ([169.254.2.52]) with mapi id 14.03.0248.002; Fri, 13 Jan 2017 14:27:13 +0800 From: "Dai, Wei" To: "Xing, Beilei" , "Zhao1, Wei" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v5 00/18] net/ixgbe: Consistent filter API Thread-Index: AQHSbLXS4S6rGEY25ECa8pb9s7jGGaE0MVCAgAHBQoA= Date: Fri, 13 Jan 2017 06:27:12 +0000 Message-ID: <49759EB36A64CF4892C1AFEC9231E8D63A327911@PGSMSX106.gar.corp.intel.com> References: <1484210439-61746-1-git-send-email-wei.zhao1@intel.com> <1484212665-1635-1-git-send-email-wei.zhao1@intel.com> <94479800C636CB44BD422CB454846E0131590B00@SHSMSX101.ccr.corp.intel.com> In-Reply-To: <94479800C636CB44BD422CB454846E0131590B00@SHSMSX101.ccr.corp.intel.com> Accept-Language: zh-CN, 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: [172.30.20.206] 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: Fri, 13 Jan 2017 06:27:17 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Xing, Beilei > Sent: Thursday, January 12, 2017 7:39 PM > To: Zhao1, Wei ; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v5 00/18] net/ixgbe: Consistent filter API >=20 >=20 > > -----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 > > > > 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. > > > > 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 > > > > 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 initialization eliminate some > > git log check warning > > > > v4 change: > > fix some check patch warning > > > > v5 change: > > fix some git log warning > > > > 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 > > > > 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 > > 100644 drivers/net/ixgbe/ixgbe_flow.c > > > Acked-by: Beilei Xing Acked-by: Wei Dai