patch 'crypto/qat: fix SM3 state size' has been queued to stable release 23.11.4

Xueming Li xuemingl at nvidia.com
Tue Apr 8 10:01:54 CEST 2025


Hi,

FYI, your patch has been queued to stable release 23.11.4

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 04/10/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://git.dpdk.org/dpdk-stable/log/?h=23.11-staging

This queued commit can be viewed at:
https://git.dpdk.org/dpdk-stable/commit/?h=23.11-staging&id=aaef87c762874bcaaf2db0d7d32f3f1258e77330

Thanks.

Xueming Li <xuemingl at nvidia.com>

---
>From aaef87c762874bcaaf2db0d7d32f3f1258e77330 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
Cc: Xueming Li <xuemingl at nvidia.com>

[ 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 224cc0ab50..f6dd96497c 100644
--- a/drivers/crypto/qat/qat_sym_session.c
+++ b/drivers/crypto/qat/qat_sym_session.c
@@ -2297,7 +2297,8 @@ int qat_sym_cd_auth_set(struct qat_sym_session *cdesc,
 			qat_hash_get_block_size(cdesc->qat_hash_alg) >> 3;
 		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) {
 			ICP_QAT_FW_HASH_FLAG_MODE2_SET(
 				hash_cd_ctrl->hash_flags,
-- 
2.34.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2025-04-08 15:39:06.843381485 +0800
+++ 0030-crypto-qat-fix-SM3-state-size.patch	2025-04-08 15:39:05.966436568 +0800
@@ -1 +1 @@
-From 873577fac7e4bce6d6ae9bacfae8eebd08acfce7 Mon Sep 17 00:00:00 2001
+From aaef87c762874bcaaf2db0d7d32f3f1258e77330 Mon Sep 17 00:00:00 2001
@@ -4,0 +5,3 @@
+Cc: Xueming Li <xuemingl at nvidia.com>
+
+[ upstream commit 873577fac7e4bce6d6ae9bacfae8eebd08acfce7 ]
@@ -10 +12,0 @@
-Cc: stable at dpdk.org
@@ -18 +20 @@
-index 9b26f8a89b..7f370f03fb 100644
+index 224cc0ab50..f6dd96497c 100644
@@ -21 +23 @@
-@@ -2473,7 +2473,8 @@ int qat_sym_cd_auth_set(struct qat_sym_session *cdesc,
+@@ -2297,7 +2297,8 @@ int qat_sym_cd_auth_set(struct qat_sym_session *cdesc,
@@ -28,2 +30 @@
- 		if (qat_dev_gen == QAT_GEN4 || qat_dev_gen == QAT_GEN5 ||
- 				qat_dev_gen == QAT_VQAT) {
+ 		if (qat_dev_gen == QAT_GEN4) {
@@ -30,0 +32 @@
+ 				hash_cd_ctrl->hash_flags,


More information about the stable mailing list