patch 'net/txgbe: enable Tx descriptor check per queue' has been queued to stable release 25.11.3
Kevin Traynor
ktraynor at redhat.com
Thu Jul 30 11:15:58 CEST 2026
Hi,
FYI, your patch has been queued to stable release 25.11.3
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 08/04/26. 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/3f0f5a42388c4cf502f6964781151c043229e196
Thanks.
Kevin
---
>From 3f0f5a42388c4cf502f6964781151c043229e196 Mon Sep 17 00:00:00 2001
From: Zaiyu Wang <zaiyuwang at trustnetic.com>
Date: Wed, 24 Jun 2026 19:52:52 +0800
Subject: [PATCH] net/txgbe: enable Tx descriptor check per queue
[ upstream commit af2a849b0a12139ca098ca314546674e3ae8ac7e ]
Now lib security is enabled by default, and cannot be disabled if the
driver is intended to be used. So Tdm_desc_chk is always unable to enable.
Remove this restriction, and just enable the corresponding queue check.
Fixes: 0eabdfcd4af4 ("net/txgbe: enable Tx descriptor error interrupt")
Signed-off-by: Zaiyu Wang <zaiyuwang at trustnetic.com>
---
drivers/net/txgbe/txgbe_rxtx.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/net/txgbe/txgbe_rxtx.c b/drivers/net/txgbe/txgbe_rxtx.c
index 0003fa3a3a..6c25cf639a 100644
--- a/drivers/net/txgbe/txgbe_rxtx.c
+++ b/drivers/net/txgbe/txgbe_rxtx.c
@@ -4758,4 +4758,10 @@ txgbe_dev_tx_init(struct rte_eth_dev *dev)
wr32(hw, TXGBE_TXWP(txq->reg_idx), 0);
+#ifdef RTE_LIB_SECURITY
+ if (!txq->using_ipsec)
+#endif
+ wr32m(hw, TXGBE_TDM_DESC_CHK(txq->reg_idx / 32),
+ RTE_BIT32(txq->reg_idx % 32), RTE_BIT32(txq->reg_idx % 32));
+
if (txq->headwb_mem) {
uint32_t txdctl;
@@ -4775,9 +4781,4 @@ txgbe_dev_tx_init(struct rte_eth_dev *dev)
}
-#ifndef RTE_LIB_SECURITY
- for (i = 0; i < 4; i++)
- wr32(hw, TXGBE_TDM_DESC_CHK(i), 0xFFFFFFFF);
-#endif
-
/* Device configured with multiple TX queues. */
txgbe_dev_mq_tx_configure(dev);
--
2.55.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-07-30 10:16:02.077137215 +0100
+++ 0019-net-txgbe-enable-Tx-descriptor-check-per-queue.patch 2026-07-30 10:16:01.457990795 +0100
@@ -1 +1 @@
-From af2a849b0a12139ca098ca314546674e3ae8ac7e Mon Sep 17 00:00:00 2001
+From 3f0f5a42388c4cf502f6964781151c043229e196 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit af2a849b0a12139ca098ca314546674e3ae8ac7e ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -19 +20 @@
-index 22a80e5553..14e395eebe 100644
+index 0003fa3a3a..6c25cf639a 100644
@@ -22 +23 @@
-@@ -4762,4 +4762,10 @@ txgbe_dev_tx_init(struct rte_eth_dev *dev)
+@@ -4758,4 +4758,10 @@ txgbe_dev_tx_init(struct rte_eth_dev *dev)
@@ -33 +34 @@
-@@ -4779,9 +4785,4 @@ txgbe_dev_tx_init(struct rte_eth_dev *dev)
+@@ -4775,9 +4781,4 @@ txgbe_dev_tx_init(struct rte_eth_dev *dev)
More information about the stable
mailing list