patch 'test/security: skip inline protocol test if no HW support' has been queued to stable release 24.11.5
luca.boccassi at gmail.com
luca.boccassi at gmail.com
Thu Mar 19 23:02:19 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 03/21/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/a9bdcfb55efcc6367d4aa12eb90f426243441f45
Thanks.
Luca Boccassi
---
>From a9bdcfb55efcc6367d4aa12eb90f426243441f45 Mon Sep 17 00:00:00 2001
From: Bruce Richardson <bruce.richardson at intel.com>
Date: Mon, 2 Mar 2026 16:07:40 +0000
Subject: [PATCH] test/security: skip inline protocol test if no HW support
[ upstream commit a4911f7b1085c033cb2f063908fec70e0dd91efb ]
If the underlying ethdev HW does not support the security offload,
return back the TEST_SKIPPED return value to immediately skip the tests
rather than continuing to fail later.
Fixes: 108646569579 ("test/security: add event inline IPsec cases")
Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
Acked-by: Akhil Goyal <gakhil at marvell.com>
---
app/test/test_security_inline_proto.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/app/test/test_security_inline_proto.c b/app/test/test_security_inline_proto.c
index 480469f672..b9f3a9d923 100644
--- a/app/test/test_security_inline_proto.c
+++ b/app/test/test_security_inline_proto.c
@@ -2099,7 +2099,9 @@ event_inline_ipsec_testsuite_setup(void)
return TEST_SKIPPED;
}
- init_mempools(NB_MBUF);
+ ret = init_mempools(NB_MBUF);
+ if (ret != 0)
+ return ret;
if (tx_pkts_burst == NULL) {
tx_pkts_burst = (struct rte_mbuf **)rte_calloc("tx_buff",
--
2.47.3
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2026-03-19 22:00:48.797781668 +0000
+++ 0027-test-security-skip-inline-protocol-test-if-no-HW-sup.patch 2026-03-19 22:00:47.802359368 +0000
@@ -1 +1 @@
-From a4911f7b1085c033cb2f063908fec70e0dd91efb Mon Sep 17 00:00:00 2001
+From a9bdcfb55efcc6367d4aa12eb90f426243441f45 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit a4911f7b1085c033cb2f063908fec70e0dd91efb ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org
@@ -20 +21 @@
-index 8b88fce3e9..b0cce5ebd9 100644
+index 480469f672..b9f3a9d923 100644
@@ -23 +24 @@
-@@ -2147,7 +2147,9 @@ event_inline_ipsec_testsuite_setup(void)
+@@ -2099,7 +2099,9 @@ event_inline_ipsec_testsuite_setup(void)
More information about the stable
mailing list