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 073A54612D; Fri, 24 Jan 2025 17:31:12 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3375D42D89; Fri, 24 Jan 2025 17:30:00 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.9]) by mails.dpdk.org (Postfix) with ESMTP id 9C64A427B3 for ; Fri, 24 Jan 2025 17:29:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1737736197; x=1769272197; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ctdd+pisGpsAcDVtiyKP7hDqW9aux2GCdyxvc0NVaUg=; b=B1JNqGZSpSIL3pJdgcl+pUzQIc7vvMklPxYby3PNsMBygdxxzTTgdSiM 1+6Vl4SoFV7Zgsi8mEGAVj8AfXXBDgwY0clOlaDLi/zhocY4/tHTH8dtC Ng+/Y67viF9zV9PYmxFMY4zBo62dF3O8gJBmCtnDldcOQU0SMDTnz/c6M aj/OfVBmXTjng/j77HGD05CqEKzSBsJeXYyr1JAJ+RxrnXStla9swCeCi x7UgOXb/GJPQkNTy4s1uXW9JslOEAphOveb8R1M4AoweAIy7e6fMaC+oB brsa1NTEYzaOoeAKaiQRpUfN+Kej4I07MlAr0wTmtFFuZFysfIBgNAspD Q==; X-CSE-ConnectionGUID: gvkgWW0pQom4e7Nn1cZx/A== X-CSE-MsgGUID: r9wFqp25S8GOUKtWgB9I7Q== X-IronPort-AV: E=McAfee;i="6700,10204,11325"; a="60740244" X-IronPort-AV: E=Sophos;i="6.13,231,1732608000"; d="scan'208";a="60740244" Received: from fmviesa010.fm.intel.com ([10.60.135.150]) by orvoesa101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jan 2025 08:29:57 -0800 X-CSE-ConnectionGUID: 953KqF93QbeVyG9feldf4g== X-CSE-MsgGUID: v5acwNH3RlOwhpT2bsv2kg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.13,231,1732608000"; d="scan'208";a="108352535" Received: from silpixa00401197coob.ir.intel.com (HELO silpixa00401385.ir.intel.com) ([10.237.214.45]) by fmviesa010.fm.intel.com with ESMTP; 24 Jan 2025 08:29:55 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: david.marchand@redhat.com, anatoly.burakov@intel.com, vladimir.medvedkin@intel.com, ian.stokes@intel.com, praveen.shetty@intel.com, Bruce Richardson Subject: [PATCH v6 11/25] net/intel: pack Tx queue structure Date: Fri, 24 Jan 2025 16:29:06 +0000 Message-ID: <20250124162921.1406103-12-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250124162921.1406103-1-bruce.richardson@intel.com> References: <20241122125418.2857301-1-bruce.richardson@intel.com> <20250124162921.1406103-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 Move some fields about to better pack the Tx queue structure and make sure all data used by the vector codepaths is on the first cacheline of the structure. Checking with "pahole" on 64-bit build, only one 6-byte hole is left in the structure - on second cacheline - after this patch. As part of the reordering, move the p/h/wthresh values to the ixgbe-specific part of the union. That is the only driver which actually uses those values. i40e and ice drivers just record the values for later return, so we can drop them from the Tx queue structure for those drivers and just report the defaults in all cases. Signed-off-by: Bruce Richardson --- drivers/net/intel/common/tx.h | 12 +++++------- drivers/net/intel/i40e/i40e_rxtx.c | 9 +++------ drivers/net/intel/ice/ice_rxtx.c | 9 +++------ 3 files changed, 11 insertions(+), 19 deletions(-) diff --git a/drivers/net/intel/common/tx.h b/drivers/net/intel/common/tx.h index 51ae3b051d..c372d2838b 100644 --- a/drivers/net/intel/common/tx.h +++ b/drivers/net/intel/common/tx.h @@ -41,7 +41,6 @@ struct ci_tx_queue { struct ci_tx_entry *sw_ring; /* virtual address of SW ring */ struct ci_tx_entry_vec *sw_ring_vec; }; - rte_iova_t tx_ring_dma; /* TX ring DMA address */ uint16_t nb_tx_desc; /* number of TX descriptors */ uint16_t tx_tail; /* current value of tail register */ uint16_t nb_tx_used; /* number of TX desc used since RS bit set */ @@ -55,16 +54,14 @@ struct ci_tx_queue { uint16_t tx_free_thresh; /* Number of TX descriptors to use before RS bit is set. */ uint16_t tx_rs_thresh; - uint8_t pthresh; /**< Prefetch threshold register. */ - uint8_t hthresh; /**< Host threshold register. */ - uint8_t wthresh; /**< Write-back threshold reg. */ uint16_t port_id; /* Device port identifier. */ uint16_t queue_id; /* TX queue index. */ uint16_t reg_idx; - uint64_t offloads; uint16_t tx_next_dd; uint16_t tx_next_rs; + uint64_t offloads; uint64_t mbuf_errors; + rte_iova_t tx_ring_dma; /* TX ring DMA address */ bool tx_deferred_start; /* don't start this queue in dev start */ bool q_set; /* indicate if tx queue has been configured */ union { /* the VSI this queue belongs to */ @@ -95,9 +92,10 @@ struct ci_tx_queue { const struct ixgbe_txq_ops *ops; struct ixgbe_advctx_info *ctx_cache; uint32_t ctx_curr; -#ifdef RTE_LIB_SECURITY + uint8_t pthresh; /**< Prefetch threshold register. */ + uint8_t hthresh; /**< Host threshold register. */ + uint8_t wthresh; /**< Write-back threshold reg. */ uint8_t using_ipsec; /**< indicates that IPsec TX feature is in use */ -#endif }; }; }; diff --git a/drivers/net/intel/i40e/i40e_rxtx.c b/drivers/net/intel/i40e/i40e_rxtx.c index 305bc53480..539b170266 100644 --- a/drivers/net/intel/i40e/i40e_rxtx.c +++ b/drivers/net/intel/i40e/i40e_rxtx.c @@ -2539,9 +2539,6 @@ i40e_dev_tx_queue_setup(struct rte_eth_dev *dev, txq->nb_tx_desc = nb_desc; txq->tx_rs_thresh = tx_rs_thresh; txq->tx_free_thresh = tx_free_thresh; - txq->pthresh = tx_conf->tx_thresh.pthresh; - txq->hthresh = tx_conf->tx_thresh.hthresh; - txq->wthresh = tx_conf->tx_thresh.wthresh; txq->queue_id = queue_idx; txq->reg_idx = reg_idx; txq->port_id = dev->data->port_id; @@ -3310,9 +3307,9 @@ i40e_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id, qinfo->nb_desc = txq->nb_tx_desc; - qinfo->conf.tx_thresh.pthresh = txq->pthresh; - qinfo->conf.tx_thresh.hthresh = txq->hthresh; - qinfo->conf.tx_thresh.wthresh = txq->wthresh; + qinfo->conf.tx_thresh.pthresh = I40E_DEFAULT_TX_PTHRESH; + qinfo->conf.tx_thresh.hthresh = I40E_DEFAULT_TX_HTHRESH; + qinfo->conf.tx_thresh.wthresh = I40E_DEFAULT_TX_WTHRESH; qinfo->conf.tx_free_thresh = txq->tx_free_thresh; qinfo->conf.tx_rs_thresh = txq->tx_rs_thresh; diff --git a/drivers/net/intel/ice/ice_rxtx.c b/drivers/net/intel/ice/ice_rxtx.c index 395cf46565..8d2dd5074e 100644 --- a/drivers/net/intel/ice/ice_rxtx.c +++ b/drivers/net/intel/ice/ice_rxtx.c @@ -1493,9 +1493,6 @@ ice_tx_queue_setup(struct rte_eth_dev *dev, txq->nb_tx_desc = nb_desc; txq->tx_rs_thresh = tx_rs_thresh; txq->tx_free_thresh = tx_free_thresh; - txq->pthresh = tx_conf->tx_thresh.pthresh; - txq->hthresh = tx_conf->tx_thresh.hthresh; - txq->wthresh = tx_conf->tx_thresh.wthresh; txq->queue_id = queue_idx; txq->reg_idx = vsi->base_queue + queue_idx; @@ -1584,9 +1581,9 @@ ice_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id, qinfo->nb_desc = txq->nb_tx_desc; - qinfo->conf.tx_thresh.pthresh = txq->pthresh; - qinfo->conf.tx_thresh.hthresh = txq->hthresh; - qinfo->conf.tx_thresh.wthresh = txq->wthresh; + qinfo->conf.tx_thresh.pthresh = ICE_DEFAULT_TX_PTHRESH; + qinfo->conf.tx_thresh.hthresh = ICE_DEFAULT_TX_HTHRESH; + qinfo->conf.tx_thresh.wthresh = ICE_DEFAULT_TX_WTHRESH; qinfo->conf.tx_free_thresh = txq->tx_free_thresh; qinfo->conf.tx_rs_thresh = txq->tx_rs_thresh; -- 2.43.0