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 8809AA0093; Fri, 17 Jun 2022 14:38:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1732D427F3; Fri, 17 Jun 2022 14:38:47 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 928EC427F3 for ; Fri, 17 Jun 2022 14:38:45 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 25H3jsJu020379 for ; Fri, 17 Jun 2022 05:38:45 -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=Iz/3VrZKOrSX9oVBCkIkDX1jD5f5PWJf1bor7xT9z/M=; b=a3+40ZlNTCI9fL8w3q99EQ4y+M4pKF+rExVjFNudgIzA+D46OY3BBb5Qo0bnnoFpsZkd nlLFDv3eUY1Er0QdUCZGmZsghnaSG/Ky0PYYUlB8G9jhsdHuQC9/l+eu5uBMP6d/NXbf krMtnZg/ei7SjDRHlk7Skti59LCBKTB9LyAn2V3dPXWkS2FNcuSgyozvn0cNCbbIIF8x YDYLI6JzfFg43gnWym4jRvyzc04K8gNcF2ZCob74UFer4/wFnQ4xKxX+3Lk0oR6l129N 5ncHz3a6pk/T1Kix+9nYfmrtYlyf0efG6KaCbQWO47d1pzsIyqvIZV3gq+QBIQ3UNatS VQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3grj05ssbd-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Fri, 17 Jun 2022 05:38:44 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Fri, 17 Jun 2022 05:38:43 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Fri, 17 Jun 2022 05:38:42 -0700 Received: from localhost.localdomain (unknown [10.28.34.39]) by maili.marvell.com (Postfix) with ESMTP id 7A7A53F7084; Fri, 17 Jun 2022 05:38:41 -0700 (PDT) From: Volodymyr Fialko To: , Jerin Jacob CC: , Volodymyr Fialko Subject: [PATCH v2 2/2] app/eventdev: increase number of qp descriptors Date: Fri, 17 Jun 2022 14:38:18 +0200 Message-ID: <20220617123818.3359117-3-vfialko@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617123818.3359117-1-vfialko@marvell.com> References: <20220617123818.3359117-1-vfialko@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: jot0tegiDZXdifJlmSOLD4v9wJTdJ-Fv X-Proofpoint-ORIG-GUID: jot0tegiDZXdifJlmSOLD4v9wJTdJ-Fv 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. Current size of 128 descriptors does not satisfying minimal requirements of crypto drivers. 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