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 C0C8D454A5; Wed, 19 Jun 2024 08:32:56 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AF2A74021D; Wed, 19 Jun 2024 08:32:56 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id E8E954014F for ; Wed, 19 Jun 2024 08:32:54 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 45J2mJiW013967; Tue, 18 Jun 2024 23:32:54 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to; s=pfpt0220; bh=lju6jltwDQFgB32EV/cP0SK BvhTKGAR5p+RTMr+trNw=; b=WFogqOSbTEwh9uvxGGCFtokl8SB9qc8jcITN6RJ aF2NYhXE2JoS7uSCZUFATzbs7bWe1dl0MwH8BhuEPwTsYk89heWD9oJs2z91DDW2 eueLoY/oUpUjWXhd0XRi62NX2lSu915WC3oaQy6w+3JNhmCKDT5KXZ+bdc19076Y YM5++v43Gw0Y1HVKSB0G7luQPpBZ9cM2kVZaSXwLhDEihG5ZaSLz+CDBLVmW99ZH 5jQeQQv1SI6AiqxqFR9crUa3L4Me0S/5UMNm1E2cMEcXfeP0rKEfRVCPy4rE/uJO DHvQs3RaBnc4tGzycSsAYkm7KALx6qwAgUWTbjocsMlLCAQ== Received: from dc6wp-exch02.marvell.com ([4.21.29.225]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3yujajhays-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 18 Jun 2024 23:32:54 -0700 (PDT) Received: from DC6WP-EXCH02.marvell.com (10.76.176.209) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Tue, 18 Jun 2024 23:32:53 -0700 Received: from maili.marvell.com (10.69.176.80) by DC6WP-EXCH02.marvell.com (10.76.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Tue, 18 Jun 2024 23:32:53 -0700 Received: from anoobj2204.marvell.com (unknown [10.28.34.118]) by maili.marvell.com (Postfix) with ESMTP id 926333F7078; Tue, 18 Jun 2024 23:32:51 -0700 (PDT) From: Anoob Joseph To: Abhinandan Gujjar , Akhil Goyal CC: Jerin Jacob , Subject: [PATCH] test/event: increase default queue depth for tests Date: Wed, 19 Jun 2024 06:32:47 +0000 Message-ID: <20240619063250.304825-1-anoobj@marvell.com> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: T-EANwVlzlEBivGzkAO6shNeS9YheOcg X-Proofpoint-ORIG-GUID: T-EANwVlzlEBivGzkAO6shNeS9YheOcg X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.28.16 definitions=2024-06-19_02,2024-06-17_01,2024-05-17_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 With crypto adapter, larger queue depths are desirable since same queue could be used from multiple cores at the same time. With devices that are capable of doing large bursts, larger queues would help in multi core management of same queue. Increase default queue depth in crypto adapter tests to cater to such use cases. Signed-off-by: Anoob Joseph --- app/test/test_event_crypto_adapter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_event_crypto_adapter.c b/app/test/test_event_crypto_adapter.c index 0c56744ba0..9d38a66bfa 100644 --- a/app/test/test_event_crypto_adapter.c +++ b/app/test/test_event_crypto_adapter.c @@ -32,7 +32,7 @@ test_event_crypto_adapter(void) #define NUM_MBUFS (8191) #define MBUF_CACHE_SIZE (256) #define MAXIMUM_IV_LENGTH (16) -#define DEFAULT_NUM_OPS_INFLIGHT (128) +#define DEFAULT_NUM_OPS_INFLIGHT 1024 #define MAX_NB_SESSIONS 4 #define TEST_APP_PORT_ID 0 #define TEST_APP_EV_QUEUE_ID 0 -- 2.45.2