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 CE0152952 for ; Mon, 26 Dec 2016 17:29:43 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP; 26 Dec 2016 08:29:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,411,1477983600"; d="scan'208";a="802437641" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by FMSMGA003.fm.intel.com with ESMTP; 26 Dec 2016 08:29:42 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.173]) by IRSMSX102.ger.corp.intel.com ([169.254.2.230]) with mapi id 14.03.0248.002; Mon, 26 Dec 2016 16:29:41 +0000 From: "De Lara Guarch, Pablo" To: "Doherty, Declan" CC: "dev@dpdk.org" Thread-Topic: [PATCH v3 0/4] AESNI MB PMD updates Thread-Index: AQHSWh0ovpNgy/jkn0uZ/Gxq/Iz5YaEadj3Q Date: Mon, 26 Dec 2016 16:29:41 +0000 Message-ID: References: <1481817632-183082-1-git-send-email-pablo.de.lara.guarch@intel.com> <1482168543-40289-1-git-send-email-pablo.de.lara.guarch@intel.com> In-Reply-To: <1482168543-40289-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: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiOThmM2IwMGYtZmJlOS00NmRhLThjYmYtNDJjNTI5NjE3Y2YyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6InFFVUNZWFo0SmZcL1M3ZG16UjFHNlNSdEM5OEFCS0RMMk11Smc5aFFjbkJNPSJ9 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 0/4] AESNI MB PMD updates 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, 26 Dec 2016 16:29:44 -0000 > -----Original Message----- > From: De Lara Guarch, Pablo > Sent: Monday, December 19, 2016 5:29 PM > To: Doherty, Declan > Cc: dev@dpdk.org; De Lara Guarch, Pablo > Subject: [PATCH v3 0/4] AESNI MB PMD updates >=20 > The library used in AESNI MB PMD, Intel Multi Buffer Crypto for IPsec, > has been migrated to a new location, in github (see documentation patch > for the link). >=20 > The library has also been updated, so single crypto operations > are supported (cipher and authentication only). Therefore, the PMD > has been updated to support these operations. >=20 > This patchset depends on patchset "Add scatter-gather list capability to > Intel QuickAssist Technology driver" > (http://dpdk.org/ml/archives/dev/2016-November/050947.html) >=20 > Changes in v3: > - Included authentication operation in private session, > since digest only has to be trimmed from buffer when digest is verified > - Fixed missing crypto session save in crypto operation when it is > sessionless > - Made operation mode setting more clear (CIPHER_HASH, HASH_CIPHER) >=20 > Changes in v2: > - Fixed hash only tests, including truncated digest length >=20 > Pablo de Lara (4): > crypto/aesni_mb: fix incorrect crypto session > doc: update AESNI MB PMD guide > crypto/aesni_mb: add single operation functionality > doc: add missing supported algos for AESNI MB PMD >=20 > app/test/test_cryptodev.c | 34 ++++++++ > app/test/test_cryptodev_aes_test_vectors.h | 36 +++++--- > app/test/test_cryptodev_hash_test_vectors.h | 54 ++++++++---- > doc/guides/cryptodevs/aesni_mb.rst | 14 ++-- > doc/guides/rel_notes/release_17_02.rst | 8 ++ > drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c | 96 > ++++++++++++++++------ > drivers/crypto/aesni_mb/rte_aesni_mb_pmd_private.h | 9 ++ > 7 files changed, 185 insertions(+), 66 deletions(-) >=20 > -- > 2.7.4 Applied to dpdk-next-crypto. Pablo