patch 'net/idpf: fix queue setup with TSO offload' has been queued to stable release 24.11.4
Kevin Traynor
ktraynor at redhat.com
Fri Nov 21 12:20:56 CET 2025
Hi,
FYI, your patch has been queued to stable release 24.11.4
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 11/26/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/kevintraynor/dpdk-stable
This queued commit can be viewed at:
https://github.com/kevintraynor/dpdk-stable/commit/7c5bc6304361d65912d521558c7c3689be0d9642
Thanks.
Kevin
---
>From 7c5bc6304361d65912d521558c7c3689be0d9642 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 858bbefe3b..b53f642902 100644
--- a/drivers/net/idpf/idpf_rxtx.c
+++ b/drivers/net/idpf/idpf_rxtx.c
@@ -43,4 +43,6 @@ idpf_tx_offload_convert(uint64_t offload)
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;
--
2.51.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2025-11-21 11:05:11.817246918 +0000
+++ 0072-net-idpf-fix-queue-setup-with-TSO-offload.patch 2025-11-21 11:05:09.551003309 +0000
@@ -1 +1 @@
-From f36df6a25569102afa911b74d8613a5e7267f038 Mon Sep 17 00:00:00 2001
+From 7c5bc6304361d65912d521558c7c3689be0d9642 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 858bbefe3b..b53f642902 100644
+--- a/drivers/net/idpf/idpf_rxtx.c
++++ b/drivers/net/idpf/idpf_rxtx.c
More information about the stable
mailing list