From patchwork Mon Oct 26 16:01:08 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Timothy McDaniel X-Patchwork-Id: 82202 X-Patchwork-Delegate: jerinj@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 723B2A04DD; Mon, 26 Oct 2020 16:59:26 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C3F0129C6; Mon, 26 Oct 2020 16:59:23 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 532981D9E for ; Mon, 26 Oct 2020 16:59:21 +0100 (CET) IronPort-SDR: HXQ0R9PSMGEBhlfkOHzyP4+FdMuHbNeVr0os+pnNUjKpQfKh3s6jgFn+9jp7P+gw87+13pXFzM kPka5hwZvXfA== X-IronPort-AV: E=McAfee;i="6000,8403,9786"; a="164445867" X-IronPort-AV: E=Sophos;i="5.77,420,1596524400"; d="scan'208";a="164445867" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2020 08:59:19 -0700 IronPort-SDR: krZIlytmR2pm15MUtjFR7X+/KI3IiZ5iMtx62wi0/CWOLMdeQNQiHyrbmjaIGF58/9kT+TqV+W tkS51fC1DhIQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,420,1596524400"; d="scan'208";a="350162018" Received: from txasoft-yocto.an.intel.com ([10.123.72.192]) by fmsmga004.fm.intel.com with ESMTP; 26 Oct 2020 08:59:18 -0700 From: Timothy McDaniel To: Bruce Richardson Cc: dev@dpdk.org, erik.g.carrillo@intel.com, gage.eads@intel.com, harry.van.haaren@intel.com, jerinj@marvell.com Date: Mon, 26 Oct 2020 11:01:08 -0500 Message-Id: <1603728068-1617-1-git-send-email-timothy.mcdaniel@intel.com> X-Mailer: git-send-email 1.7.10 Subject: [dpdk-dev] [PATCH 1/1] eventdev: increase MAX QUEUES PER DEV to 255 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" DLB supports a total of 256 queues, 128 load balanced queues and 128 directed queues. Signed-off-by: Timothy McDaniel Reviewed-by: Gage Eads Acked-by: Jerin Jacob --- config/rte_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/rte_config.h b/config/rte_config.h index 8aa46a1..b78c6aa 100644 --- a/config/rte_config.h +++ b/config/rte_config.h @@ -71,7 +71,7 @@ /* eventdev defines */ #define RTE_EVENT_MAX_DEVS 16 -#define RTE_EVENT_MAX_QUEUES_PER_DEV 64 +#define RTE_EVENT_MAX_QUEUES_PER_DEV 255 #define RTE_EVENT_TIMER_ADAPTER_NUM_MAX 32 #define RTE_EVENT_ETH_INTR_RING_SIZE 1024 #define RTE_EVENT_CRYPTO_ADAPTER_MAX_INSTANCE 32