From patchwork Thu Apr 18 14:03:31 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Akhil Goyal X-Patchwork-Id: 52942 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5D7351B10C; Thu, 18 Apr 2019 16:13:27 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by dpdk.org (Postfix) with ESMTP id 3A0447CB0 for ; Thu, 18 Apr 2019 16:13:23 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 98DDA200153; Thu, 18 Apr 2019 16:13:22 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id D78DC200158; Thu, 18 Apr 2019 16:13:20 +0200 (CEST) Received: from GDB1.ap.freescale.net (GDB1.ap.freescale.net [10.232.132.179]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id 8D630402C1; Thu, 18 Apr 2019 22:13:18 +0800 (SGT) From: Akhil Goyal To: thomas@monjalon.net Cc: dev@dpdk.org Date: Thu, 18 Apr 2019 19:33:31 +0530 Message-Id: <20190418140331.18221-1-akhil.goyal@nxp.com> X-Mailer: git-send-email 2.17.1 X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [pull-request] next-crypto 19.05 rc2 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The following changes since commit 380154406dc8ce6f46a1c3e4e9fced5ba67644a1: build: use default flags for default Arm machine (2019-04-17 22:28:39 +0200) are available in the Git repository at: http://dpdk.org/git/next/dpdk-next-crypto for you to fetch changes up to 44bf56300e3f3ed81b6ac2b72fc9a0ac70984446: drivers/crypto: fix session destroy for dpaa and dpaa2 (2019-04-18 19:31:28 +0530) ---------------------------------------------------------------- Akhil Goyal (1): drivers/crypto: fix session destroy for dpaa and dpaa2 Bernard Iremonger (2): app/test/ipsec: fix test initialisation app/test/ipsec: fix logic around dequeue burst Bruce Richardson (1): app/test-crypto-perf: fix missing bounds check on socket id Fiona Trahe (2): compress/qat: fixed data-plane return from QAT PMD doc/crypto: fix missing asymmetric algo table Gagandeep Singh (3): crypto/caam_jr: fix the shared desc endianness crypto/caam_jr: fix total length in AUTH only sg case crypto/caam_jr: fix memory leak and illegal memory access Marko Kovacevic (3): examples/fips_validation: fix hmac test failure examples/fips_validation: fix cmac test failure cryptodev: fix uninitialized session clear Pablo de Lara (2): doc: add missing algorithms for AESNI MB PMD crypto/aesni_gcm: use architecture independent API Tomasz Jozwiak (1): test/compress: add max mbuf size test case .gitignore | 1 + app/test-crypto-perf/main.c | 5 + app/test/test_compressdev.c | 158 +++++++++++++++++++---- app/test/test_ipsec.c | 80 ++++++------ doc/guides/conf.py | 5 + doc/guides/cryptodevs/aesni_gcm.rst | 9 +- doc/guides/cryptodevs/features/aesni_gcm.ini | 6 + doc/guides/cryptodevs/features/aesni_mb.ini | 14 ++ doc/guides/cryptodevs/features/armv8.ini | 5 + doc/guides/cryptodevs/features/caam_jr.ini | 5 + doc/guides/cryptodevs/features/ccp.ini | 5 + doc/guides/cryptodevs/features/default.ini | 9 ++ doc/guides/cryptodevs/features/dpaa2_sec.ini | 5 + doc/guides/cryptodevs/features/dpaa_sec.ini | 5 + doc/guides/cryptodevs/features/kasumi.ini | 5 + doc/guides/cryptodevs/features/mvsam.ini | 5 + doc/guides/cryptodevs/features/null.ini | 5 + doc/guides/cryptodevs/features/octeontx.ini | 5 + doc/guides/cryptodevs/features/qat.ini | 5 + doc/guides/cryptodevs/features/snow3g.ini | 5 + doc/guides/cryptodevs/features/virtio.ini | 5 + doc/guides/cryptodevs/features/zuc.ini | 5 + doc/guides/cryptodevs/openssl.rst | 8 ++ doc/guides/cryptodevs/overview.rst | 7 + drivers/compress/qat/qat_comp.c | 6 +- drivers/crypto/aesni_gcm/aesni_gcm_ops.h | 66 ++-------- drivers/crypto/aesni_gcm/aesni_gcm_pmd.c | 77 +++++++++-- drivers/crypto/aesni_gcm/aesni_gcm_pmd_ops.c | 4 +- drivers/crypto/aesni_gcm/aesni_gcm_pmd_private.h | 6 +- drivers/crypto/caam_jr/caam_jr.c | 4 +- drivers/crypto/caam_jr/caam_jr_uio.c | 10 +- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 2 +- drivers/crypto/dpaa_sec/dpaa_sec.c | 2 +- examples/fips_validation/fips_validation.c | 80 +++++++----- examples/fips_validation/main.c | 8 +- lib/librte_cryptodev/rte_cryptodev.c | 2 + 36 files changed, 454 insertions(+), 180 deletions(-)