patch 'test/bpf: fix payload size for Rx/Tx load tests' has been queued to stable release 25.11.1
Kevin Traynor
ktraynor at redhat.com
Thu Mar 19 11:03:20 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/23/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/9985f54a68bc232eaad70e3296f1d4a10ccc8870
Thanks.
Kevin
---
>From 9985f54a68bc232eaad70e3296f1d4a10ccc8870 Mon Sep 17 00:00:00 2001
From: Stephen Hemminger <stephen at networkplumber.org>
Date: Thu, 5 Mar 2026 09:51:05 -0800
Subject: [PATCH] test/bpf: fix payload size for Rx/Tx load tests
[ upstream commit e8f7ffd2cc10da83ffa456da9f63da19c1137893 ]
Use the correct size in bpf_prm to help with validation.
Fixes: 81038845c90b ("test/bpf: add Rx and Tx filtering")
Suggested-by: Marat Khalili <marat.khalili at huawei.com>
Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
Acked-by: Marat Khalili <marat.khalili at huawei.com>
---
app/test/test_bpf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app/test/test_bpf.c b/app/test/test_bpf.c
index ab3e5650f8..c95efed299 100644
--- a/app/test/test_bpf.c
+++ b/app/test/test_bpf.c
@@ -4173,5 +4173,5 @@ static int bpf_tx_test(uint16_t port, const char *tmpfile, struct rte_mempool *p
.prog_arg = {
.type = RTE_BPF_ARG_PTR,
- .size = sizeof(struct rte_mbuf),
+ .size = sizeof(struct dummy_net),
},
};
@@ -4272,5 +4272,5 @@ static int bpf_rx_test(uint16_t port, const char *tmpfile, struct rte_mempool *p
.prog_arg = {
.type = RTE_BPF_ARG_PTR,
- .size = sizeof(struct rte_mbuf),
+ .size = sizeof(struct dummy_net),
},
};
--
2.53.0
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-19 10:01:09.420808046 +0000
+++ 0082-test-bpf-fix-payload-size-for-Rx-Tx-load-tests.patch 2026-03-19 10:01:07.133799424 +0000
@@ -1 +1 @@
-From e8f7ffd2cc10da83ffa456da9f63da19c1137893 Mon Sep 17 00:00:00 2001
+From 9985f54a68bc232eaad70e3296f1d4a10ccc8870 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit e8f7ffd2cc10da83ffa456da9f63da19c1137893 ]
+
@@ -9 +10,0 @@
-Cc: stable at dpdk.org
@@ -19 +20 @@
-index 144121ac79..dd24722450 100644
+index ab3e5650f8..c95efed299 100644
@@ -22 +23 @@
-@@ -4181,5 +4181,5 @@ static int bpf_tx_test(uint16_t port, const char *tmpfile, struct rte_mempool *p
+@@ -4173,5 +4173,5 @@ static int bpf_tx_test(uint16_t port, const char *tmpfile, struct rte_mempool *p
@@ -29 +30 @@
-@@ -4280,5 +4280,5 @@ static int bpf_rx_test(uint16_t port, const char *tmpfile, struct rte_mempool *p
+@@ -4272,5 +4272,5 @@ static int bpf_rx_test(uint16_t port, const char *tmpfile, struct rte_mempool *p
More information about the stable
mailing list