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 176D3A2E8C for ; Thu, 5 Sep 2019 17:02:21 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CC9711BF12; Thu, 5 Sep 2019 17:02:20 +0200 (CEST) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by dpdk.org (Postfix) with ESMTP id B3CD71BEDB for ; Thu, 5 Sep 2019 17:02:19 +0200 (CEST) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 50F0B1A0411; Thu, 5 Sep 2019 17:02:19 +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 840181A0291; Thu, 5 Sep 2019 17:02:15 +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 CC94D402CF; Thu, 5 Sep 2019 23:02:10 +0800 (SGT) From: Akhil Goyal To: dev@dpdk.org Cc: hemant.agrawal@nxp.com, anoobj@marvell.com, jerinj@marvell.com, declan.doherty@intel.com, konstantin.ananyev@intel.com, vakul.garg@nxp.com, Akhil Goyal Date: Thu, 5 Sep 2019 20:17:47 +0530 Message-Id: <20190905144754.10188-1-akhil.goyal@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190903164911.32091-1-akhil.goyal@nxp.com> References: <20190903164911.32091-1-akhil.goyal@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH 0/7] Add PDCP test cases 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" This patch add test vectors and a test framework for PDCP cplane and uplane protocol processing based on various sequence number sizes(5/7/12/15/18). These test cases and test vectors are validated over NXP DPAA_SEC and DPAA2_SEC platforms. This patchset is a split to the patch [1] which was sent as RFC. Further this patchset is dependent on [2] [1] http://patches.dpdk.org/patch/58554/ [2] http://patches.dpdk.org/project/dpdk/list/?series=6199 Akhil Goyal (7): test/crypto: Add PDCP cplane encap cases test/crypto: Add PDCP cplane decap cases test/crypto: Add PDCP uplane encap cases test/crypto: Add PDCP uplane encap with integrity cases test/crypto: Add PDCP uplane decap cases test/crypto: Add PDCP cases for scatter gather bufs test/crypto: support wireless algos for dpaa2_sec app/test/Makefile | 1 + app/test/meson.build | 1 + app/test/test_cryptodev.c | 713 +- app/test/test_cryptodev_security_pdcp.c | 590 ++ .../test_cryptodev_security_pdcp_test_func.h | 48 + ...est_cryptodev_security_pdcp_test_vectors.h | 6323 +++++++++++++++++ 6 files changed, 7669 insertions(+), 7 deletions(-) create mode 100644 app/test/test_cryptodev_security_pdcp.c create mode 100644 app/test/test_cryptodev_security_pdcp_test_func.h create mode 100644 app/test/test_cryptodev_security_pdcp_test_vectors.h -- 2.17.1