patch 'test/pcapng: skip test if null driver missing' has been queued to stable release 24.11.5
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Fri Feb 20 15:56:58 CET 2026
Hi,
FYI, your patch has been queued to stable release 24.11.5
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 02/22/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/bluca/dpdk-stable
This queued commit can be viewed at:
https://github.com/bluca/dpdk-stable/commit/59ab31c3b7d49ccb363e087954ed75736cfd8d01
Thanks.
Luca Boccassi
---
>From 59ab31c3b7d49ccb363e087954ed75736cfd8d01 Mon Sep 17 00:00:00 2001
From: Stephen Hemminger <stephen at networkplumber.org>
Date: Mon, 16 Feb 2026 13:38:04 -0800
Subject: [PATCH] test/pcapng: skip test if null driver missing
[ upstream commit 86641ef2845b59a0ecd8cf367ee326f76e74fddc ]
The pcapng test requires the net_null driver to create a virtual
device. If the null driver is excluded from the build, the test
fails with:
RTE>>pcapng_autotest
+ ------------------------------------------------------- +
+ Test Suite : Test Pcapng Unit Test Suite
Failed to create vdev 'net_null0'
Add net_null to the meson build dependency list for the test so
that it is automatically skipped when the driver is not available.
Fixes: 0c614a0fa6c6 ("test/pcapng: cleanup")
Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
---
app/test/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/test/meson.build b/app/test/meson.build
index d5cb6a7f7a..3c7e53d0bc 100644
--- a/app/test/meson.build
+++ b/app/test/meson.build
@@ -133,7 +133,7 @@ source_file_deps = {
'test_mp_secondary.c': ['hash'],
'test_net_ether.c': ['net'],
'test_net_ip6.c': ['net'],
- 'test_pcapng.c': ['ethdev', 'net', 'pcapng', 'bus_vdev'],
+ 'test_pcapng.c': ['net_null', 'net', 'ethdev', 'pcapng', 'bus_vdev'],
'test_pdcp.c': ['eventdev', 'pdcp', 'net', 'timer', 'security'],
'test_pdump.c': ['pdump'] + sample_packet_forward_deps,
'test_per_lcore.c': [],
--
2.47.3
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-02-20 14:55:47.612073015 +0000
+++ 0116-test-pcapng-skip-test-if-null-driver-missing.patch 2026-02-20 14:55:43.376193990 +0000
@@ -1 +1 @@
-From 86641ef2845b59a0ecd8cf367ee326f76e74fddc Mon Sep 17 00:00:00 2001
+From 59ab31c3b7d49ccb363e087954ed75736cfd8d01 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 86641ef2845b59a0ecd8cf367ee326f76e74fddc ]
+
@@ -19 +20,0 @@
-Cc: stable at dpdk.org
@@ -27 +28 @@
-index 48874037eb..4fd8670e05 100644
+index d5cb6a7f7a..3c7e53d0bc 100644
@@ -30 +31 @@
-@@ -135,7 +135,7 @@ source_file_deps = {
+@@ -133,7 +133,7 @@ source_file_deps = {
More information about the stable
mailing list