patch 'dts: fix doc generation for testpmd shell' has been queued to stable release 25.11.1
Kevin Traynor
ktraynor at redhat.com
Thu Feb 26 14:08:29 CET 2026
Hi,
FYI, your patch has been queued to stable release 25.11.1
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 03/02/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/54a242272990e766637de551d27827110e26f94e
Thanks.
Kevin
---
>From 54a242272990e766637de551d27827110e26f94e Mon Sep 17 00:00:00 2001
From: Lukas Sismis <sismis at dyna-nic.com>
Date: Wed, 21 Jan 2026 00:16:38 +0100
Subject: [PATCH] dts: fix doc generation for testpmd shell
[ upstream commit d953ee3de067005729de0056b00acaac2096445e ]
Fix f-string syntax errors where double quotes were nested inside
f-strings that also use double quotes as delimiters.
Fixes: 9db52910a8aa ("dts: add mbuf fast free in testpmd shell")
Fixes: 554192dbe9e9 ("dts: add start Tx first method to testpmd shell")
Fixes: cfd851f264d8 ("dts: add QinQ strip and VLAN extend to testpmd shell")
Signed-off-by: Lukas Sismis <sismis at dyna-nic.com>
Reviewed-by: Dean Marx <dmarx at iol.unh.edu>
Reviewed-by: Patrick Robb <probb at iol.unh.edu>
Tested-by: David Marchand <david.marchand at redhat.com>
Acked-by: Marat Khalili <marat.khalili at huawei.com>
---
.mailmap | 2 +-
dts/api/testpmd/__init__.py | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.mailmap b/.mailmap
index 2f089326ff..d838ffb4db 100644
--- a/.mailmap
+++ b/.mailmap
@@ -934,5 +934,5 @@ Luca Boccassi <luca.boccassi at microsoft.com> <luca.boccassi at intl.att.com>
Luca Vizzarro <luca.vizzarro at arm.com>
Luka Jankovic <luka.jankovic at ericsson.com>
-Lukas Sismis <sismis at cesnet.cz>
+Lukas Sismis <sismis at dyna-nic.com> <sismis at cesnet.cz>
Lukasz Bartosik <lbartosik at marvell.com>
Lukasz Cieplicki <lukaszx.cieplicki at intel.com>
diff --git a/dts/api/testpmd/__init__.py b/dts/api/testpmd/__init__.py
index a20dedc25a..703cae487e 100644
--- a/dts/api/testpmd/__init__.py
+++ b/dts/api/testpmd/__init__.py
@@ -228,5 +228,5 @@ class TestPmd(DPDKShell):
start or ports fail to come up.
"""
- self.send_command(f"start tx_first {burst_num if burst_num is not None else ""}")
+ self.send_command(f"start tx_first {burst_num if burst_num is not None else ''}")
if verify:
# If forwarding was already started, sending "start" again should tell us
@@ -899,9 +899,9 @@ class TestPmd(DPDKShell):
if enable ^ (vlan_settings is not None and VLANOffloadFlag.QINQ_STRIP in vlan_settings):
self._logger.debug(
- f"Failed to {"enable" if enable else "disable"}"
+ f"Failed to {'enable' if enable else 'disable'}"
f"QinQ strip on port {port}: \n{qinq_cmd_output}"
)
raise InteractiveCommandExecutionError(
- f"Failed to {"enable" if enable else "disable"} QinQ strip on port {port}"
+ f"Failed to {'enable' if enable else 'disable'} QinQ strip on port {port}"
)
@@ -1536,5 +1536,5 @@ class TestPmd(DPDKShell):
"""
mbuf_output = self.send_command(
- f"port config {port_id} tx_offload mbuf_fast_free {"on" if on else "off"}"
+ f"port config {port_id} tx_offload mbuf_fast_free {'on' if on else 'off'}"
)
--
2.53.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-02-26 10:16:48.183025322 +0000
+++ 0027-dts-fix-doc-generation-for-testpmd-shell.patch 2026-02-26 10:16:46.929459142 +0000
@@ -1 +1 @@
-From d953ee3de067005729de0056b00acaac2096445e Mon Sep 17 00:00:00 2001
+From 54a242272990e766637de551d27827110e26f94e Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit d953ee3de067005729de0056b00acaac2096445e ]
+
@@ -12 +13,0 @@
-Cc: stable at dpdk.org
More information about the stable
mailing list