patch 'dts: show missing NIC capabilities in logs' has been queued to stable release 25.11.1

Kevin Traynor ktraynor at redhat.com
Thu Feb 26 14:10:22 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/ec6a45f16a7646b89120d9a1bfaed532bcdd3097

Thanks.

Kevin

---
>From ec6a45f16a7646b89120d9a1bfaed532bcdd3097 Mon Sep 17 00:00:00 2001
From: Andrew Bailey <abailey at iol.unh.edu>
Date: Mon, 15 Dec 2025 16:40:49 -0500
Subject: [PATCH] dts: show missing NIC capabilities in logs

[ upstream commit 174cca478df912b14d8cf35dc33e68e247e7a4a1 ]

When a test was skipped due to a missing NIC capability, the logs should
print the name of the missing capability. This has since changed to show
only the integer representation of the missing capability. This patch
restores the previous behavior of printing the name of the missing
capability to the user.

Bugzilla ID: 1803
Fixes: eba657ae3c3c ("dts: move testpmd module from framework to API directory")

Signed-off-by: Andrew Bailey <abailey at iol.unh.edu>
Reviewed-by: Patrick Robb <probb at iol.unh.edu>
---
 dts/api/capabilities.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dts/api/capabilities.py b/dts/api/capabilities.py
index 243759668f..2d0cd65854 100644
--- a/dts/api/capabilities.py
+++ b/dts/api/capabilities.py
@@ -220,4 +220,8 @@ class NicCapability(IntEnum):
     QUEUE_TX_OFFLOAD_SEND_ON_TIMESTAMP = auto()
 
+    def __str__(self):
+        """Override the default string representation to return the name of the capability."""
+        return self.name
+
 
 def requires_link_topology(
-- 
2.53.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-02-26 10:16:52.502139202 +0000
+++ 0140-dts-show-missing-NIC-capabilities-in-logs.patch	2026-02-26 10:16:47.211291025 +0000
@@ -1 +1 @@
-From 174cca478df912b14d8cf35dc33e68e247e7a4a1 Mon Sep 17 00:00:00 2001
+From ec6a45f16a7646b89120d9a1bfaed532bcdd3097 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 174cca478df912b14d8cf35dc33e68e247e7a4a1 ]
+
@@ -14 +15,0 @@
-Cc: stable at dpdk.org



More information about the stable mailing list