From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 0B72E6904 for ; Mon, 1 Oct 2018 19:29:57 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Oct 2018 10:29:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,328,1534834800"; d="scan'208";a="268510828" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by fmsmga006.fm.intel.com with ESMTP; 01 Oct 2018 10:26:56 -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; Mon, 1 Oct 2018 18:26:55 +0100 From: "Dumitrescu, Cristian" To: "Zhang, Roy Fan" , "dev@dpdk.org" Thread-Topic: [PATCH v2 0/7] pipeline: add symmetric crypto to action Thread-Index: AQHUVyiZ/AUs+Ayv3kCqoLTVdFz/HqUKqXcA Date: Mon, 1 Oct 2018 17:26:54 +0000 Message-ID: <3EB4FA525960D640B5BDFFD6A3D891268E7D0862@IRSMSX107.ger.corp.intel.com> References: <20180828081929.34085-1-roy.fan.zhang@intel.com> <20180928122615.48390-1-roy.fan.zhang@intel.com> In-Reply-To: <20180928122615.48390-1-roy.fan.zhang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNmRkNTViNmEtNzBiYy00ZmY1LTgzZGQtOGMxZTMzZjkyYmFmIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiK0srSW5kQTlWUXFNUDhlNTd1WmJLb1FwM3hMUExSRHl2U3I3SUNoaHFsa2hWb3N3c2F0SEZ4QUM3OFA0MGExZCJ9 x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 0/7] pipeline: add symmetric crypto to action 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: Mon, 01 Oct 2018 17:29:59 -0000 > -----Original Message----- > From: Zhang, Roy Fan > Sent: Friday, September 28, 2018 1:26 PM > To: dev@dpdk.org > Cc: Dumitrescu, Cristian > Subject: [PATCH v2 0/7] pipeline: add symmetric crypto to action >=20 > This patchset creates an abstraction layer of DPDK Cryptodev to the pipel= ine > library to enable its symmetric cryptographic capability. The ip_pipeline > sample application is updated accordingly. >=20 > v2: > - Fixed bugs. > - Updated data structure. > - Updated IP-pipeline sample application. >=20 > Zhang, Roy Fan (7): > pipeline: add symmetric crypto to action > examples/ip_pipeline: add cryptodev > examples/ip_pipeline: configure crypto port > examples/ip_pipeline: add symmetric crypto action > examples/ip_pipeline: update cli parsing > examples/ip_pipeline: add script > doc: update action documentation >=20 > doc/guides/prog_guide/packet_framework.rst | 11 +- > doc/guides/sample_app_ug/ip_pipeline.rst | 23 + > examples/ip_pipeline/Makefile | 1 + > examples/ip_pipeline/action.c | 11 + > examples/ip_pipeline/action.h | 1 + > examples/ip_pipeline/cli.c | 577 ++++++++++++++++++++= +++++- > examples/ip_pipeline/cryptodev.c | 117 ++++++ > examples/ip_pipeline/cryptodev.h | 43 ++ > examples/ip_pipeline/examples/flow_crypto.cli | 58 +++ > examples/ip_pipeline/main.c | 9 + > examples/ip_pipeline/meson.build | 3 +- > examples/ip_pipeline/pipeline.c | 60 +++ > examples/ip_pipeline/pipeline.h | 14 + > examples/ip_pipeline/thread.c | 10 + > lib/librte_pipeline/Makefile | 2 +- > lib/librte_pipeline/meson.build | 2 +- > lib/librte_pipeline/rte_pipeline_version.map | 1 + > lib/librte_pipeline/rte_table_action.c | 503 ++++++++++++++++++++= +- > lib/librte_pipeline/rte_table_action.h | 104 +++++ > 19 files changed, 1543 insertions(+), 7 deletions(-) > create mode 100644 examples/ip_pipeline/cryptodev.c > create mode 100644 examples/ip_pipeline/cryptodev.h > create mode 100644 examples/ip_pipeline/examples/flow_crypto.cli >=20 > -- > 2.13.6 Series applied to next-pipeline tree, thanks!