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 2A1F1A046B for ; Wed, 24 Jul 2019 11:04:47 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E70DA1C19C; Wed, 24 Jul 2019 11:04:45 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id B53621C19B for ; Wed, 24 Jul 2019 11:04:44 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x6O909x8015906; Wed, 24 Jul 2019 02:04:43 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=KL2MYP9TxOn7cVhWs/VYRXeGeDuJRdq5iLjOIGJ5fVM=; b=Wafv6vt5cN7vSCcZGeBd3dK2a/buoxMLoyIjrdomD+1gGTpSqqC7HfinbVXw7J/eNf34 48QFCcOsCEW9lN/tv/vQLGbqUVZWKnp1+HSmjLHPzf6MFfZAfFKTyMXqllYV+2KKIpcg gEFbpzNY1om3bTuHkgdt1nBeHEPRnmK+6aT6wcGF06jcv6s4xSmJj0fgWoRkXqbJVqkv fKXC4F92cNdgWy9ZQA5S/FynDLfMXlcO4+2Qe+EviZhRYCR7DwYvorlU71vWuhTeiGv2 atD1ENpUsjqW3vomerrFnTQImxaalS0HSyGn9cahq4cBtmsFge3MYtemKSbr+tm0cToe rw== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 2tx61rbba9-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 24 Jul 2019 02:04:43 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Wed, 24 Jul 2019 02:04:42 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Wed, 24 Jul 2019 02:04:42 -0700 Received: from ajoseph83.caveonetworks.com.com (unknown [10.29.45.56]) by maili.marvell.com (Postfix) with ESMTP id 609A43F7040; Wed, 24 Jul 2019 02:04:39 -0700 (PDT) From: Anoob Joseph To: Akhil Goyal , Declan Doherty , Pablo de Lara CC: Anoob Joseph , Jerin Jacob , Narayana Prasad , Shally Verma , Date: Wed, 24 Jul 2019 14:34:19 +0530 Message-ID: <1563959059-29754-1-git-send-email-anoobj@marvell.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:5.22.84,1.0.8 definitions=2019-07-24_03:2019-07-23,2019-07-24 signatures=0 Subject: [dpdk-dev] [PATCH] app/crypto-perf: disable asymmetric crypto 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" Asymmetric crypto is not required for test-crypto-perf application. Disabling the feature using 'ff_disable' field. Signed-off-by: Anoob Joseph --- app/test-crypto-perf/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/test-crypto-perf/main.c b/app/test-crypto-perf/main.c index ce92a96..2109e70 100644 --- a/app/test-crypto-perf/main.c +++ b/app/test-crypto-perf/main.c @@ -201,7 +201,8 @@ cperf_initialize_cryptodev(struct cperf_options *opts, uint8_t *enabled_cdevs) struct rte_cryptodev_config conf = { .nb_queue_pairs = opts->nb_qps, .socket_id = socket_id, - .ff_disable = RTE_CRYPTODEV_FF_SECURITY, + .ff_disable = RTE_CRYPTODEV_FF_SECURITY | + RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO, }; struct rte_cryptodev_qp_conf qp_conf = { -- 2.7.4