From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4F85AA0093; Sun, 17 May 2020 16:34:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CFB7A1D590; Sun, 17 May 2020 16:34:16 +0200 (CEST) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by dpdk.org (Postfix) with ESMTP id 2374E1D58E for ; Sun, 17 May 2020 16:34:15 +0200 (CEST) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id A783A1A09B9; Sun, 17 May 2020 16:34:14 +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 5DF1E1A09B3; Sun, 17 May 2020 16:34:13 +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 A9A01402BB; Sun, 17 May 2020 22:34:11 +0800 (SGT) From: Akhil Goyal To: thomas@monjalon.net Cc: dev@dpdk.org Date: Sun, 17 May 2020 19:42:57 +0530 Message-Id: <20200517141257.3995-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 20.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 2e9088556613ed03a15fc08e866bc96475269c0f: test/graph: fix memory leaks in performance tests (2020-05-15 11:00:55 +0200) are available in the Git repository at: http://dpdk.org/git/next/dpdk-next-crypto for you to fetch changes up to 05b4c45694c5b2056aa09fd53522d910d73c58b8: crypto/virtio: enable OOP feature flag (2020-05-17 19:40:44 +0530) ---------------------------------------------------------------- Akhil Goyal (1): drivers/crypto: fix gcc 10 no-common errors Ankur Dwivedi (2): crypto/octeontx2: enable non-byte aligned data feature crypto/octeontx: enable non-byte aligned data feature Anoob Joseph (4): test/crypto: remove tests for unsupported descriptors common/octeontx2: fix out of bounds access crypto/octeontx2: improve error handling crypto/octeontx: improve sym sessionless code path Apeksha Gupta (1): test/crypto: fix statistics case Jay Zhou (1): crypto/virtio: enable OOP feature flag Mairtin o Loingsigh (1): doc: fix missing release notes for QAT Tejasree Kondoj (1): net/octeontx2: update max pkt length for Inline IPsec Yunjian Wang (2): crypto/caam_jr: fix wrong check of fd crypto/caam_jr: fix the functions to use the correct type app/test/test_cryptodev.c | 58 +----- doc/guides/cryptodevs/features/octeontx.ini | 1 + doc/guides/cryptodevs/features/octeontx2.ini | 1 + doc/guides/cryptodevs/features/virtio.ini | 1 + doc/guides/rel_notes/release_20_05.rst | 4 + drivers/common/cpt/cpt_ucode.h | 75 -------- drivers/common/dpaax/Makefile | 3 +- drivers/common/dpaax/caamflib.c | 16 ++ drivers/common/dpaax/meson.build | 4 +- drivers/common/dpaax/rte_common_dpaax_version.map | 4 + drivers/common/octeontx2/otx2_sec_idev.c | 4 +- drivers/crypto/caam_jr/Makefile | 7 - drivers/crypto/caam_jr/caam_jr.c | 25 ++- drivers/crypto/caam_jr/caam_jr_hw_specific.h | 2 +- drivers/crypto/caam_jr/caam_jr_pvt.h | 9 +- drivers/crypto/caam_jr/caam_jr_uio.c | 34 ++-- drivers/crypto/caam_jr/meson.build | 5 - drivers/crypto/dpaa2_sec/Makefile | 7 - drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 4 +- drivers/crypto/dpaa2_sec/meson.build | 5 - drivers/crypto/dpaa_sec/Makefile | 7 - drivers/crypto/dpaa_sec/dpaa_sec.c | 2 - drivers/crypto/dpaa_sec/meson.build | 5 - drivers/crypto/octeontx/otx_cryptodev_ops.c | 210 ++++++++++++---------- drivers/crypto/octeontx2/otx2_cryptodev.c | 1 + drivers/crypto/octeontx2/otx2_cryptodev_ops.c | 43 ++++- drivers/crypto/virtio/virtio_cryptodev.c | 3 +- drivers/net/octeontx2/otx2_ethdev_sec.c | 4 +- 28 files changed, 245 insertions(+), 299 deletions(-) create mode 100644 drivers/common/dpaax/caamflib.c