From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 091502B99 for ; Fri, 11 Mar 2016 01:45:52 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP; 10 Mar 2016 16:45:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,318,1455004800"; d="scan'208";a="667399104" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by FMSMGA003.fm.intel.com with ESMTP; 10 Mar 2016 16:45:52 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.13]) by IRSMSX102.ger.corp.intel.com ([169.254.2.19]) with mapi id 14.03.0248.002; Fri, 11 Mar 2016 00:45:50 +0000 From: "De Lara Guarch, Pablo" To: "De Lara Guarch, Pablo" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v3] null_crypto_pmd: PMD to support null crypto operations Thread-Index: AQHRey8VtE3R/Bi8v0O5wBEPE4rYz59TaB7Q Date: Fri, 11 Mar 2016 00:45:50 +0000 Message-ID: References: <1457628391-29996-1-git-send-email-pablo.de.lara.guarch@intel.com> <1457656984-154437-1-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1457656984-154437-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: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNWRkYjFiNGMtMWI4Zi00ZTcxLTkxYWEtYjIwOGQ3ZDY0ZjcxIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlhDNFgrVTFPTFp0Z0VPZGhtc3Rsdlppaytra1YxMW4yclV2Y1NxdHVkYWM9In0= 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 v3] null_crypto_pmd: PMD to support null crypto operations X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Mar 2016 00:45:53 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara > Sent: Friday, March 11, 2016 12:43 AM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v3] null_crypto_pmd: PMD to support null crypt= o > operations >=20 > From: Declan Doherty >=20 > This patch provides the implementation of a NULL crypto PMD, which > supports > NULL cipher and NULL authentication operations, which can be chained > together > as follows: >=20 > - Authentication Only > - Cipher Only > - Authentication then Cipher > - Cipher then Authentication >=20 > As this is a NULL operation device the crypto operations which are submit= ted > for > processing are not actually modified and are stored in a queue pairs > processed > packets ring ready for collection when rte_cryptodev_burst_dequeue() is > called. >=20 > The patch also contains the related unit tests function to test the PMDs > supported operations. >=20 > Signed-off-by: Declan Doherty > Acked-by: Deepak Kumar JAIN > --- >=20 > This patch depends on "AES GCM, AES CMAC fixes and addition of GCM > tests for QAT" patchset > (http://dpdk.org/ml/archives/dev/2016-March/034974.html) >=20 > Changes in v2: > - Rebased to include Cryptodev API changes >=20 > Changes in v3: >=20 > - Added missing doc reference in MAINTAINERS > - Removed attempt to remove a reference already delated >=20 >=20 > MAINTAINERS | 4 + > app/test/test_cryptodev.c | 402 > ++++++++++++++++++++++++++++++++- > config/common_base | 5 + > doc/guides/cryptodevs/index.rst | 3 +- > doc/guides/rel_notes/release_16_04.rst | 3 + > drivers/crypto/Makefile | 1 + > mk/rte.app.mk | 1 + > 7 files changed, 417 insertions(+), 2 deletions(-) Self-NACK again, actual driver was not included...