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 2404F2B86 for ; Tue, 28 Feb 2017 15:18:43 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Feb 2017 06:18:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,219,1484035200"; d="scan'208";a="938987337" Received: from irsmsx109.ger.corp.intel.com ([163.33.3.23]) by orsmga003.jf.intel.com with ESMTP; 28 Feb 2017 06:18:41 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.173]) by IRSMSX109.ger.corp.intel.com ([169.254.13.44]) with mapi id 14.03.0248.002; Tue, 28 Feb 2017 14:18:40 +0000 From: "De Lara Guarch, Pablo" To: "Doherty, Declan" CC: "dev@dpdk.org" Thread-Topic: [PATCH v2 0/4] New crypto algorithm string parser API Thread-Index: AQHSkQbwo0PQgQ66+E27wzd8x+/znqF+eNKw Date: Tue, 28 Feb 2017 14:18:40 +0000 Message-ID: References: <1487853218-113232-1-git-send-email-pablo.de.lara.guarch@intel.com> <1488206326-70385-1-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1488206326-70385-1-git-send-email-pablo.de.lara.guarch@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiOGE2NjMxMDctMDJiNC00ZTg1LTlkYzEtNzY2NmFkZjg3ZjFlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlRENFdQb0VhdlRiUGtydzZSXC9mV21tWWRIRHNUS05PbUV1bVdtMDRqZDNJPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 0/4] New crypto algorithm string parser 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: Tue, 28 Feb 2017 14:18:44 -0000 > -----Original Message----- > From: De Lara Guarch, Pablo > Sent: Monday, February 27, 2017 2:39 PM > To: Doherty, Declan > Cc: dev@dpdk.org; De Lara Guarch, Pablo > Subject: [PATCH v2 0/4] New crypto algorithm string parser API >=20 > Last release, an array with strings for the supported algorithms > by the cryptodev library was added and used in the crypto-perf app. >=20 > This patchset creates a new API to parse strings from the user, > to select the desired algorithm (using the array above), > which can be used by any application, making it consistent across > all the applications (now, L2fwd-crypto and crypto-perf apps are > using different strings). >=20 > Changes in v2: >=20 > - Modified L2fwd-crypto document to reflect the changes >=20 > Pablo de Lara (4): > cryptodev: add missing algorithm strings > cryptodev: add algorithm string parsers > app/crypto-perf: use cryptodev algorithm parser > examples/l2fwd-crypto: use cryptodev algorithm parser >=20 > app/test-crypto-perf/cperf_options_parsing.c | 206 ++-----------------= ------ > doc/guides/sample_app_ug/l2_forward_crypto.rst | 10 +- > examples/l2fwd-crypto/main.c | 85 ++-------- > lib/librte_cryptodev/rte_cryptodev.c | 38 +++++ > lib/librte_cryptodev/rte_cryptodev.h | 30 ++++ > lib/librte_cryptodev/rte_cryptodev_version.map | 8 + > 6 files changed, 105 insertions(+), 272 deletions(-) >=20 > -- > 2.7.4 Applied to dpdk-next-crypto. Pablo