From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 340FEA0A0C for ; Tue, 29 Jun 2021 09:01:44 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 20F3041170; Tue, 29 Jun 2021 09:01:44 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 03C204068A; Mon, 28 Jun 2021 18:16:04 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10029"; a="229606575" X-IronPort-AV: E=Sophos;i="5.83,306,1616482800"; d="scan'208";a="229606575" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jun 2021 09:16:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,306,1616482800"; d="scan'208";a="408123066" Received: from silpixa00400904.ir.intel.com ([10.243.23.83]) by orsmga003.jf.intel.com with ESMTP; 28 Jun 2021 09:16:00 -0700 From: Rebecca Troy To: dev@dpdk.org Cc: ciara.power@intel.com, Rebecca Troy , declan.doherty@intel.com, jianjay.zhou@huawei.com, pablo.de.lara.guarch@intel.com, roy.fan.zhang@intel.com, akhil.goyal@nxp.com, hemant.agrawal@nxp.com, stable@dpdk.org Date: Mon, 28 Jun 2021 16:15:29 +0000 Message-Id: <20210628161529.386889-1-rebecca.troy@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Tue, 29 Jun 2021 09:01:43 +0200 Subject: [dpdk-stable] [PATCH] test/crypto: fix autotest function parameters X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Fixed parameters on autotest functions by removing comments. Fixes: 202d375c60bc ("app/test: add cryptodev unit and performance tests") Fixes: 4ed1e79e7819 ("test/crypto: add tests for virtio-crypto") Fixes: 3aafc423cf4d ("snow3g: add driver for SNOW 3G library") Fixes: 27a1c4714d54 ("app/test: add KASUMI crypto") Fixes: 4c99481f49c4 ("app/test: add ZUC") Fixes: c8e69fce7046 ("crypto/scheduler: add unit test") Fixes: ae002048bbea ("test/crypto: add DPAA2 crypto functional test") Fixes: b674d6d0381a ("test/crypto: add dpaa crypto test cases") Fixes: a8dbd44d6b4c ("test/crypto: add CAAM JR validation cases") Fixes: 4868f6591c6f ("test/crypto: add cases for raw datapath API") Cc: declan.doherty@intel.com Cc: jianjay.zhou@huawei.com Cc: pablo.de.lara.guarch@intel.com Cc: roy.fan.zhang@intel.com Cc: akhil.goyal@nxp.com Cc: hemant.agrawal@nxp.com Cc: stable@dpdk.org Signed-off-by: Rebecca Troy --- app/test/test_cryptodev.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 39db52b17a..c18730f138 100644 --- a/app/test/test_cryptodev.c +++ b/app/test/test_cryptodev.c @@ -14521,19 +14521,19 @@ run_cryptodev_testsuite(const char *pmd_name) } static int -test_cryptodev_qat(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_qat(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_QAT_SYM_PMD)); } static int -test_cryptodev_virtio(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_virtio(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_VIRTIO_PMD)); } static int -test_cryptodev_aesni_mb(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_aesni_mb(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_AESNI_MB_PMD)); } @@ -14579,19 +14579,19 @@ test_cryptodev_null(void) } static int -test_cryptodev_sw_snow3g(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_sw_snow3g(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_SNOW3G_PMD)); } static int -test_cryptodev_sw_kasumi(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_sw_kasumi(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_KASUMI_PMD)); } static int -test_cryptodev_sw_zuc(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_sw_zuc(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_ZUC_PMD)); } @@ -14611,7 +14611,7 @@ test_cryptodev_mrvl(void) #ifdef RTE_CRYPTO_SCHEDULER static int -test_cryptodev_scheduler(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_scheduler(void) { uint8_t ret, sched_i, j, i = 0, blk_start_idx = 0; const enum blockcipher_test_type blk_suites[] = { @@ -14719,13 +14719,13 @@ REGISTER_TEST_COMMAND(cryptodev_scheduler_autotest, test_cryptodev_scheduler); #endif static int -test_cryptodev_dpaa2_sec(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_dpaa2_sec(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_DPAA2_SEC_PMD)); } static int -test_cryptodev_dpaa_sec(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_dpaa_sec(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_DPAA_SEC_PMD)); } @@ -14749,7 +14749,7 @@ test_cryptodev_octeontx2(void) } static int -test_cryptodev_caam_jr(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_caam_jr(void) { return run_cryptodev_testsuite(RTE_STR(CRYPTODEV_NAME_CAAM_JR_PMD)); } @@ -14767,7 +14767,7 @@ test_cryptodev_bcmfs(void) } static int -test_cryptodev_qat_raw_api(void /*argv __rte_unused, int argc __rte_unused*/) +test_cryptodev_qat_raw_api(void) { int ret; -- 2.25.1