From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 30A821B17D for ; Fri, 28 Sep 2018 12:36:16 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Sep 2018 03:36:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,314,1534834800"; d="scan'208";a="73801574" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by fmsmga007.fm.intel.com with ESMTP; 28 Sep 2018 03:36:01 -0700 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.56]) by IRSMSX106.ger.corp.intel.com ([169.254.8.45]) with mapi id 14.03.0319.002; Fri, 28 Sep 2018 11:36:01 +0100 From: "Dumitrescu, Cristian" To: "Pattan, Reshma" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2 00/15] add flow API support to softnic Thread-Index: AQHUSdqx0ufbJmMEq0yWnjIiK7llOqUFmlAg Date: Fri, 28 Sep 2018 10:36:00 +0000 Message-ID: <3EB4FA525960D640B5BDFFD6A3D891268E7CC4F6@IRSMSX107.ger.corp.intel.com> References: <1536251222-17275-1-git-send-email-reshma.pattan@intel.com> <1536675645-10105-1-git-send-email-reshma.pattan@intel.com> In-Reply-To: <1536675645-10105-1-git-send-email-reshma.pattan@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiY2MzYjA3YTgtYjFhYy00ZGM3LTg5MzctNzM3NTc2OGI3NGM5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiYXhYZmFNb0NEYkZwZExKdVlWRlhJaitydG5MeXZiTUM4bUtqRVI4QWhGQ1FMeGMyWTExTkV3ZGFTbXdkVThEdiJ9 x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 00/15] add flow API support to softnic 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, 28 Sep 2018 10:36:16 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Reshma Pattan > Sent: Tuesday, September 11, 2018 3:21 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 00/15] add flow API support to softnic >=20 > This patch series adds the flow API support > for the softnic. >=20 > This patch set also introduce a new cli command > to provide mapping of flow group and direction > to softnic pipeline and table. >=20 > v2: added missing code to patch #9/10 > reworded commit titles. >=20 > Reshma Pattan (15): > net/softnic: add infrastructure for flow API > net/softnic: map flow attributes to pipeline table > net/softnic: add new cli for flow attribute map > net/softnic: replace some pointers with arrays > net/softnic: add free table and find out port functions > net/softnic: add function to get eth device from softnic > net/softnic: implement flow validate API > net/softnic: validate and map flow rule with acl table match > net/softnic: parse flow protocol for acl table match > net/softnic: validate and map flow with hash table match > net/softnic: validate and map flow action with table action > net/softnic: add flow create API > net/softnic: add flow destroy API > net/softnic: add flow query API > net/softnic: add parsing for raw flow item >=20 > drivers/net/softnic/Makefile | 1 + > drivers/net/softnic/meson.build | 1 + > drivers/net/softnic/rte_eth_softnic.c | 16 + > drivers/net/softnic/rte_eth_softnic_cli.c | 115 +- > drivers/net/softnic/rte_eth_softnic_flow.c | 1824 > +++++++++++++++++++++++ > drivers/net/softnic/rte_eth_softnic_internals.h | 98 +- > drivers/net/softnic/rte_eth_softnic_pipeline.c | 61 +- > 7 files changed, 2086 insertions(+), 30 deletions(-) > create mode 100644 drivers/net/softnic/rte_eth_softnic_flow.c >=20 > -- > 2.14.4 Series applied to next-pipeline tree, thanks!