patch 'crypto/qat: fix SM3 state size' has been queued to stable release 24.11.2
Kevin Traynor
ktraynor at redhat.com
Fri Mar 7 13:47:12 CET 2025
Hi,
FYI, your patch has been queued to stable release 24.11.2
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/12/25. 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/035db014b8d2185114de8b6e4d70f0626fc86243
Thanks.
Kevin
---
>From 035db014b8d2185114de8b6e4d70f0626fc86243 Mon Sep 17 00:00:00 2001
From: Arkadiusz Kusztal <arkadiuszx.kusztal at intel.com>
Date: Wed, 26 Feb 2025 09:30:19 +0000
Subject: [PATCH] crypto/qat: fix SM3 state size
[ upstream commit 873577fac7e4bce6d6ae9bacfae8eebd08acfce7 ]
This commit fixes incorrectly set state size within
the QAT PMD.
Fixes: 75fd4bbc94ab ("crypto/qat: support SM3 hash algorithm")
Signed-off-by: Arkadiusz Kusztal <arkadiuszx.kusztal at intel.com>
---
drivers/crypto/qat/qat_sym_session.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/crypto/qat/qat_sym_session.c b/drivers/crypto/qat/qat_sym_session.c
index 50d687fd37..3279deb325 100644
--- a/drivers/crypto/qat/qat_sym_session.c
+++ b/drivers/crypto/qat/qat_sym_session.c
@@ -2474,5 +2474,6 @@ int qat_sym_cd_auth_set(struct qat_sym_session *cdesc,
auth_param->u2.inner_prefix_sz =
qat_hash_get_block_size(cdesc->qat_hash_alg);
- auth_param->hash_state_sz = digestsize;
+ auth_param->hash_state_sz = (hash_cd_ctrl->outer_prefix_sz +
+ auth_param->u2.inner_prefix_sz) >> 3;
if (qat_dev_gen == QAT_GEN4 || qat_dev_gen == QAT_GEN5 ||
qat_dev_gen == QAT_VQAT) {
--
2.48.1
---
Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- - 2025-03-07 11:02:58.332933881 +0000
+++ 0039-crypto-qat-fix-SM3-state-size.patch 2025-03-07 11:02:56.920335915 +0000
@@ -1 +1 @@
-From 873577fac7e4bce6d6ae9bacfae8eebd08acfce7 Mon Sep 17 00:00:00 2001
+From 035db014b8d2185114de8b6e4d70f0626fc86243 Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit 873577fac7e4bce6d6ae9bacfae8eebd08acfce7 ]
+
@@ -10 +11,0 @@
-Cc: stable at dpdk.org
@@ -18 +19 @@
-index 9b26f8a89b..7f370f03fb 100644
+index 50d687fd37..3279deb325 100644
More information about the stable
mailing list