patch 'test/crypto: fix RSA sign data length' has been queued to stable release 25.11.1

Kevin Traynor ktraynor at redhat.com
Thu Feb 26 14:09:42 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/5c6dcb671e9fcf69c06b7ea253f81baf878564d5

Thanks.

Kevin

---
>From 5c6dcb671e9fcf69c06b7ea253f81baf878564d5 Mon Sep 17 00:00:00 2001
From: Nithinsen Kaithakadan <nkaithakadan at marvell.com>
Date: Fri, 23 Jan 2026 10:56:50 +0000
Subject: [PATCH] test/crypto: fix RSA sign data length

[ upstream commit 318d45aeb52d041309db3f387bfde44e29da2e6f ]

This patch fixes RSA sign data length assignment to correct value.
The length was previously altered during a test scenario and is
now restored to the proper value.

Fixes: 9682e8246ae2 ("test/crypto: add negative case for RSA verification")

Signed-off-by: Nithinsen Kaithakadan <nkaithakadan at marvell.com>
Acked-by: Akhil Goyal <gakhil at marvell.com>
---
 app/test/test_cryptodev_asym.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c
index 111f675c94..34c15e26bc 100644
--- a/app/test/test_cryptodev_asym.c
+++ b/app/test/test_cryptodev_asym.c
@@ -140,4 +140,5 @@ queue_ops_rsa_sign_verify(void *sess)
 	/* Negative test */
 	result_op->asym->rsa.sign.data[0] ^= 0xff;
+	result_op->asym->rsa.sign.length = RTE_DIM(rsa_n);
 	if (rte_cryptodev_enqueue_burst(dev_id, 0, &result_op, 1) != 1) {
 		RTE_LOG(ERR, USER1, "Error sending packet for verify\n");
-- 
2.53.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2026-02-26 10:16:50.963500165 +0000
+++ 0100-test-crypto-fix-RSA-sign-data-length.patch	2026-02-26 10:16:47.054459688 +0000
@@ -1 +1 @@
-From 318d45aeb52d041309db3f387bfde44e29da2e6f Mon Sep 17 00:00:00 2001
+From 5c6dcb671e9fcf69c06b7ea253f81baf878564d5 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 318d45aeb52d041309db3f387bfde44e29da2e6f ]
+
@@ -11 +12,0 @@
-Cc: stable at dpdk.org



More information about the stable mailing list