From patchwork Wed May 1 14:26:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Akhil Goyal X-Patchwork-Id: 53185 X-Patchwork-Delegate: thomas@monjalon.net 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 662262C55; Wed, 1 May 2019 16:36:37 +0200 (CEST) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by dpdk.org (Postfix) with ESMTP id 5A6962BAE for ; Wed, 1 May 2019 16:36:36 +0200 (CEST) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id D246A1A0077; Wed, 1 May 2019 16:36:35 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 6EB3D1A006A; Wed, 1 May 2019 16:36:34 +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 4A147402C0; Wed, 1 May 2019 22:36:32 +0800 (SGT) From: Akhil Goyal To: thomas@monjalon.net Cc: dev@dpdk.org Date: Wed, 1 May 2019 19:56:20 +0530 Message-Id: <20190501142620.12061-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 rc3 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 7f251bcf22c5729792f9243480af1b3c072876a5: version: 19.05-rc2 (2019-04-23 00:43:52 +0200) are available in the Git repository at: http://dpdk.org/git/next/dpdk-next-crypto for you to fetch changes up to 035c9fb61cb3d1053bdb291d45a0ca13a69230f6: doc/crypto: add release notes and updates for qat PMD (2019-05-01 19:42:47 +0530) ---------------------------------------------------------------- Akhil Goyal (1): examples/ipsec-secgw: fix pool usage for security session Anoob Joseph (1): crypto/octeontx: use distinct metabuf pool for each queue Arek Kusztal (1): doc/crypto: add release notes and updates for qat PMD Ayuj Verma (1): crypto: include dependency in asym header Bruce Richardson (3): crypto/aesni_gcm: add dependency version check crypto/aesni_mb: cleanup of version check code crypto/aesni_gcm: add check for build dependency Fiona Trahe (1): crypto/qat: fix NULL cipher algo for non 8-byte multiple Konstantin Ananyev (1): examples/ipsec-secgw: fix SPD no-match is misinterpreted doc/guides/cryptodevs/features/qat.ini | 2 + doc/guides/cryptodevs/qat.rst | 81 ++++++++++++----- doc/guides/rel_notes/release_19_05.rst | 6 ++ drivers/common/cpt/cpt_common.h | 10 ++- drivers/common/cpt/cpt_ucode.h | 24 +++-- drivers/crypto/aesni_gcm/Makefile | 19 +++- drivers/crypto/aesni_gcm/meson.build | 11 +++ drivers/crypto/aesni_mb/meson.build | 18 ++-- drivers/crypto/octeontx/otx_cryptodev.c | 3 - drivers/crypto/octeontx/otx_cryptodev_hw_access.c | 105 ++++++++++++++++++++-- drivers/crypto/octeontx/otx_cryptodev_hw_access.h | 7 +- drivers/crypto/octeontx/otx_cryptodev_ops.c | 98 ++------------------ drivers/crypto/octeontx/otx_cryptodev_ops.h | 3 - drivers/crypto/qat/qat_sym_session.c | 3 +- examples/ipsec-secgw/ipsec-secgw.c | 25 +++--- examples/ipsec-secgw/ipsec.c | 4 +- examples/ipsec-secgw/ipsec.h | 14 ++- examples/ipsec-secgw/sa.c | 35 ++++++-- examples/ipsec-secgw/sp4.c | 49 +++++++++- examples/ipsec-secgw/sp6.c | 49 +++++++++- lib/librte_cryptodev/rte_crypto_asym.h | 2 + 21 files changed, 380 insertions(+), 188 deletions(-)