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 54EC2A0093; Fri, 17 Jun 2022 12:02:39 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8C45D4280B; Fri, 17 Jun 2022 12:02:32 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 5ED9D427F3 for ; Fri, 17 Jun 2022 12:02:31 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 25H3v4ma006661 for ; Fri, 17 Jun 2022 03:02:30 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=WWx7NHL0IPUdY3qru0cF5HGf3ryN0zHmLC/DM/pKDes=; b=F0D1wU5FdEM6CrfcpLs0v2dkheeSxr65Z3AgFPd7HjbnSQy9oO/SI1IYyx7t6+RxYnWr FogAQDY2IBLURKUjN7nXp6hUp0Cx3BOODsC6+oN3Q8NPBW5MAGEsqGM6MfI8AcqisER2 ipeehBDKfpn1zlvkwxFI0KCkZSHXQMsV8gTwxq85yoM8abORbBTIRmkmYHL4LZV3qqnS 3yJY+L+IUbg68QQOdOYEzKpwpb58BXsx5nOqj6+rAQCI7hNFhLB4a7/CgpHwitwtzgEm AW08rihszUw4n4CCSVB7DgXd/BAyB+4pOr7hQgKW56KuNcpmpQLa/IFrZYprbZNJF0c6 WQ== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3grj5h98rh-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Fri, 17 Jun 2022 03:02:30 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Fri, 17 Jun 2022 03:02:29 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Fri, 17 Jun 2022 03:02:29 -0700 Received: from localhost.localdomain (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id 630853F7057; Fri, 17 Jun 2022 03:02:27 -0700 (PDT) From: Volodymyr Fialko To: , Jerin Jacob CC: , Volodymyr Fialko Subject: [PATCH 2/2] app/eventdev: increase number of qp descriptors Date: Fri, 17 Jun 2022 12:02:17 +0200 Message-ID: <20220617100217.3356870-3-vfialko@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617100217.3356870-1-vfialko@marvell.com> References: <20220617100217.3356870-1-vfialko@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: Yh6bHWlZs6Ve17uOJq-c1PqzN7SUMdQE X-Proofpoint-ORIG-GUID: Yh6bHWlZs6Ve17uOJq-c1PqzN7SUMdQE X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.883,Hydra:6.0.517,FMLib:17.11.64.514 definitions=2022-06-17_08,2022-06-16_01,2022-02-23_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Increase number of cryptodev queue pair descriptors by default. Signed-off-by: Volodymyr Fialko --- app/test-eventdev/test_perf_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-eventdev/test_perf_common.c b/app/test-eventdev/test_perf_common.c index a5e031873d..81420be73a 100644 --- a/app/test-eventdev/test_perf_common.c +++ b/app/test-eventdev/test_perf_common.c @@ -6,7 +6,7 @@ #include "test_perf_common.h" -#define NB_CRYPTODEV_DESCRIPTORS 128 +#define NB_CRYPTODEV_DESCRIPTORS 1024 #define DATA_SIZE 512 struct modex_test_data { enum rte_crypto_asym_xform_type xform_type; -- 2.25.1