patch 'net/idpf: fix queue setup with TSO offload' has been queued to stable release 23.11.6

Shani Peretz shperetz at nvidia.com
Thu Dec 25 10:18:39 CET 2025


Hi,

FYI, your patch has been queued to stable release 23.11.6

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 12/30/25. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/shanipr/dpdk-stable

This queued commit can be viewed at:
https://github.com/shanipr/dpdk-stable/commit/64a5497ea6a8f61b894d8a6318e915c8a4a41353

Thanks.

Shani

---
>From 64a5497ea6a8f61b894d8a6318e915c8a4a41353 Mon Sep 17 00:00:00 2001
From: Ciara Loftus <ciara.loftus at intel.com>
Date: Thu, 13 Nov 2025 14:50:21 +0000
Subject: [PATCH] net/idpf: fix queue setup with TSO offload

[ upstream commit f36df6a25569102afa911b74d8613a5e7267f038 ]

The TCP_TSO Tx offload was missing from the conversion function. This
was effectively taking the request for that offload out of consideration
when selecting the Tx function. As a result a vector path which does not
support TSO could be chosen when that offload was requested, when
instead the scalar path should be chosen which does support that
offload. Fix this by adding the TSO offload to the conversion function.

Fixes: c008a5e740bd ("common/idpf: add queue setup/release")

Signed-off-by: Ciara Loftus <ciara.loftus at intel.com>
Acked-by: Praveen Shetty <praveen.shetty at intel.com>
---
 drivers/net/idpf/idpf_rxtx.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/idpf/idpf_rxtx.c b/drivers/net/idpf/idpf_rxtx.c
index 64f2235580..5dff445a3c 100644
--- a/drivers/net/idpf/idpf_rxtx.c
+++ b/drivers/net/idpf/idpf_rxtx.c
@@ -42,6 +42,8 @@ idpf_tx_offload_convert(uint64_t offload)
 		ol |= IDPF_TX_OFFLOAD_TCP_CKSUM;
 	if ((offload & RTE_ETH_TX_OFFLOAD_SCTP_CKSUM) != 0)
 		ol |= IDPF_TX_OFFLOAD_SCTP_CKSUM;
+	if ((offload & RTE_ETH_TX_OFFLOAD_TCP_TSO) != 0)
+		ol |= IDPF_TX_OFFLOAD_TCP_TSO;
 	if ((offload & RTE_ETH_TX_OFFLOAD_MULTI_SEGS) != 0)
 		ol |= IDPF_TX_OFFLOAD_MULTI_SEGS;
 	if ((offload & RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE) != 0)
-- 
2.43.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2025-12-25 11:16:40.224317637 +0200
+++ 0078-net-idpf-fix-queue-setup-with-TSO-offload.patch	2025-12-25 11:16:36.129951000 +0200
@@ -1 +1 @@
-From f36df6a25569102afa911b74d8613a5e7267f038 Mon Sep 17 00:00:00 2001
+From 64a5497ea6a8f61b894d8a6318e915c8a4a41353 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit f36df6a25569102afa911b74d8613a5e7267f038 ]
+
@@ -14 +15,0 @@
-Cc: stable at dpdk.org
@@ -19 +20 @@
- drivers/net/intel/idpf/idpf_rxtx.c | 2 ++
+ drivers/net/idpf/idpf_rxtx.c | 2 ++
@@ -22,4 +23,4 @@
-diff --git a/drivers/net/intel/idpf/idpf_rxtx.c b/drivers/net/intel/idpf/idpf_rxtx.c
-index 1c725065df..4796d8b862 100644
---- a/drivers/net/intel/idpf/idpf_rxtx.c
-+++ b/drivers/net/intel/idpf/idpf_rxtx.c
+diff --git a/drivers/net/idpf/idpf_rxtx.c b/drivers/net/idpf/idpf_rxtx.c
+index 64f2235580..5dff445a3c 100644
+--- a/drivers/net/idpf/idpf_rxtx.c
++++ b/drivers/net/idpf/idpf_rxtx.c


More information about the stable mailing list