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 5FE19457BB; Wed, 14 Aug 2024 09:50:24 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4EDED4279B; Wed, 14 Aug 2024 09:49:02 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) by mails.dpdk.org (Postfix) with ESMTP id 77C1F40650 for ; Tue, 13 Aug 2024 18:00:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1723564838; x=1755100838; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vAnkbV8h1KLVNBLVoLmiGWXNBlOPXdmY+R9t+Y3AOGg=; b=YCLwykI3kPLed4xUJ3PZg4RRC8Wvz7hhOgzcbwMibyFeCc9Gz7dbjiby L72fMbGdz0DxcPCchqaDj+89cwBIe9C2qKFgTCM1iEsK+5k9D1lwSYue+ olaSR7O0kJAAQGhlzVFvseN1OmXXo/ZVFGTvGVe1ZomNsg19Yqj0Aemlj fxPUANARuTCKXOT8GbyM0pIMBvlec7/U6lHwX8ra4NN36SpiCm0utQSyC 2YFJc7JiKhr+NSdd4Gti9fXZBrhdJeVefkSNh6r4gyn/18ZjDnrULVYp6 cGP8onBlMQth5sms94UOQ6Dr+Y/cMK2QGbqF/Pn1RnLM09fF4siLlDAb0 Q==; X-CSE-ConnectionGUID: SFa+X4PyTkO2dbwgGtDszQ== X-CSE-MsgGUID: zAOlJfDATYKhMSwCxDQHwg== X-IronPort-AV: E=McAfee;i="6700,10204,11163"; a="12987869" X-IronPort-AV: E=Sophos;i="6.09,286,1716274800"; d="scan'208";a="12987869" Received: from fmviesa007.fm.intel.com ([10.60.135.147]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Aug 2024 09:00:37 -0700 X-CSE-ConnectionGUID: EmIi0toPQ/i427EQSEpQzw== X-CSE-MsgGUID: o4GLq1MAT86JLP/A51UNIw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,286,1716274800"; d="scan'208";a="58406554" Received: from unknown (HELO silpixa00401385.ir.intel.com) ([10.237.214.25]) by fmviesa007.fm.intel.com with ESMTP; 13 Aug 2024 09:00:35 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: ferruh.yigit@amd.com, thomas@monjalon.net, mb@smartsharesystems.com, Bruce Richardson , Bruce Richardson Subject: [RFC PATCH v2 17/26] net/thunderx: use separate Rx and Tx queue limits Date: Tue, 13 Aug 2024 16:59:54 +0100 Message-ID: <20240813160003.423935-18-bruce.richards@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240813160003.423935-1-bruce.richards@intel.com> References: <20240812132910.162252-1-bruce.richardson@intel.com> <20240813160003.423935-1-bruce.richards@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Wed, 14 Aug 2024 09:48:35 +0200 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 Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/thunderx/nicvf_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/thunderx/nicvf_ethdev.c b/drivers/net/thunderx/nicvf_ethdev.c index 609d95dcfa..8c8bec885f 100644 --- a/drivers/net/thunderx/nicvf_ethdev.c +++ b/drivers/net/thunderx/nicvf_ethdev.c @@ -907,7 +907,7 @@ nicvf_configure_rss_reta(struct rte_eth_dev *dev) { struct nicvf *nic = nicvf_pmd_priv(dev); unsigned int idx, qmap_size; - uint8_t qmap[RTE_MAX_QUEUES_PER_PORT]; + uint8_t qmap[RTE_MAX_ETHPORT_RX_QUEUES]; uint8_t default_reta[NIC_MAX_RSS_IDR_TBL_SIZE]; if (nic->cpi_alg != CPI_ALG_NONE) -- 2.43.0