From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sergio Gonzalez Monroy Subject: Re: [PATCH v2 0/4] AESNI GCM PMD: Migration from ISA-L to Multi-buffer library Date: Fri, 30 Jun 2017 15:16:52 +0100 Message-ID: <95fadf2f-b4f5-d86b-b8de-7666fb420334@intel.com> References: <1495793766-200890-1-git-send-email-pablo.de.lara.guarch@intel.com> <20170628113230.83808-1-pablo.de.lara.guarch@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Pablo de Lara , declan.doherty@intel.com Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 8E5DD5323 for ; Fri, 30 Jun 2017 16:17:26 +0200 (CEST) In-Reply-To: <20170628113230.83808-1-pablo.de.lara.guarch@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 28/06/2017 12:32, Pablo de Lara wrote: > AES-NI GCM PMD migrated previously from Multi-buffer Crypto library to ISA-L Crypto library, > to support several features that were not supported by that time, such as GMAC algorithm > and Scatter-gather list. > > Since version 0.45, Multi-buffer library (https://github.com/01org/intel-ipsec-mb) > supports all these features, the PMD can link against this library again (version 0.46 now). > > This will improve maintainability, as now AESNI GCM PMD will share the same library as > AESNI MB PMD, having one less library to link against. It also adds support for 192-bit keys. > > In terms of performance, it has been improved, especially for some architectures. > > This patchset is migrating the PMD to link against Multi-buffer library v0.46. > > Changes in v2: > > - Supported Multi-buffer 0.46 library > - Added new tests to other PMD testsuites > - Rebased against latest dpdk-next-crypto code > > Pablo de Lara (4): > crypto/aesni_gcm: migrate to Multi-buffer library > test/crypto: rename some tests > test/crypto: add AES GCM 192 tests > test/crypto: extend AES-GCM 192/256 to other PMDs > > devtools/test-build.sh | 4 +- > doc/guides/cryptodevs/aesni_gcm.rst | 18 +- > doc/guides/cryptodevs/features/aesni_gcm.ini | 4 +- > doc/guides/rel_notes/release_17_08.rst | 8 + > drivers/crypto/aesni_gcm/Makefile | 9 +- > drivers/crypto/aesni_gcm/aesni_gcm_ops.h | 97 ++++- > drivers/crypto/aesni_gcm/aesni_gcm_pmd.c | 98 +++-- > drivers/crypto/aesni_gcm/aesni_gcm_pmd_ops.c | 18 +- > drivers/crypto/aesni_gcm/aesni_gcm_pmd_private.h | 32 +- > mk/rte.app.mk | 3 +- > test/test/test_cryptodev.c | 497 +++++++++++++++++------ > test/test/test_cryptodev_gcm_test_vectors.h | 357 ++++++++++++++++ > 12 files changed, 922 insertions(+), 223 deletions(-) > Series Acked-by: Sergio Gonzalez Monroy