From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 706EBC32792 for ; Mon, 30 Sep 2019 19:43:04 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 1F6DD224EF for ; Mon, 30 Sep 2019 19:43:04 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1F6DD224EF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=nxp.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F2ECF1BE92; Mon, 30 Sep 2019 21:43:02 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by dpdk.org (Postfix) with ESMTP id 4FC261BE92 for ; Mon, 30 Sep 2019 21:43:01 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id D0439200106; Mon, 30 Sep 2019 21:43:00 +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 45740200090; Mon, 30 Sep 2019 21:42:58 +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 AFCEF402B7; Tue, 1 Oct 2019 03:42:54 +0800 (SGT) From: Akhil Goyal To: dev@dpdk.org Cc: hemant.agrawal@nxp.com, anoobj@marvell.com, konstantin.ananyev@intel.com, Akhil Goyal Date: Tue, 1 Oct 2019 00:57:39 +0530 Message-Id: <20190930192746.16815-1-akhil.goyal@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190905144754.10188-1-akhil.goyal@nxp.com> References: <20190905144754.10188-1-akhil.goyal@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-dev] [PATCH v2 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. Changes in v2: fix checkpatch warnings Further this patchset is dependent on [2] [1] http://patches.dpdk.org/patch/58554/ [2] http://patches.dpdk.org/project/dpdk/list/?series=6623 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 | 715 +- 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, 7671 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