patches for DPDK stable branches
 help / color / mirror / Atom feed
* [PATCH] net/intel: fix igb tx queue offloads capability
@ 2025-04-14  8:53 Kaiwen Deng
  0 siblings, 0 replies; only message in thread
From: Kaiwen Deng @ 2025-04-14  8:53 UTC (permalink / raw)
  To: dev; +Cc: stable, Kaiwen Deng, Qi Zhang, Yaroslav Brustinov

The igb driver assigns the tx port offload capability to the
tx queue offload capability.

This commit will fix this issue.

Fixes: daa3b0833f08 ("net/e1000: fix Tx offload capability typos")
Cc: stable@dpdk.org

Signed-off-by: Kaiwen Deng <kaiwenx.deng@intel.com>
---
 drivers/net/intel/e1000/igb_rxtx.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/net/intel/e1000/igb_rxtx.c b/drivers/net/intel/e1000/igb_rxtx.c
index 4276bb6d31..b63de2354f 100644
--- a/drivers/net/intel/e1000/igb_rxtx.c
+++ b/drivers/net/intel/e1000/igb_rxtx.c
@@ -1490,11 +1490,9 @@ igb_get_tx_port_offloads_capa(struct rte_eth_dev *dev)
 uint64_t
 igb_get_tx_queue_offloads_capa(struct rte_eth_dev *dev)
 {
-	uint64_t tx_queue_offload_capa;
-
-	tx_queue_offload_capa = igb_get_tx_port_offloads_capa(dev);
+	RTE_SET_USED(dev);
 
-	return tx_queue_offload_capa;
+	return 0;
 }
 
 int
-- 
2.34.1


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2025-04-14  9:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-14  8:53 [PATCH] net/intel: fix igb tx queue offloads capability Kaiwen Deng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).