From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 798D246364 for ; Fri, 7 Mar 2025 13:49:05 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 74BF140E40; Fri, 7 Mar 2025 13:49:05 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id ABFBA402C3 for ; Fri, 7 Mar 2025 13:49:02 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1741351742; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7pKDq+sQI9HVeH8pYH/CT8Usg/UdiRV+9I+QHrUCznQ=; b=ZmSG8XemRd0yEHnXgjlUocHHsbbGuXfvDJpI7qgA6+KgMhLDiMj8Skcw0IyS1s3rd2s7Cr RsAz+dUK7sClGSnx7j6QdaLEGigdEBRy24P+VqSxyEfKwEU/6bhWkdK3Legc5ILfp/qQrS thSzvecCSltuj68nkR/DhXERRlzTYEo= Received: from mx-prod-mc-08.mail-002.prod.us-west-2.aws.redhat.com (ec2-35-165-154-97.us-west-2.compute.amazonaws.com [35.165.154.97]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-126-GwjYk45FNVqETIDt48EuRQ-1; Fri, 07 Mar 2025 07:49:01 -0500 X-MC-Unique: GwjYk45FNVqETIDt48EuRQ-1 X-Mimecast-MFC-AGG-ID: GwjYk45FNVqETIDt48EuRQ_1741351740 Received: from mx-prod-int-02.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-02.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.15]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-08.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 24AF61800EC5; Fri, 7 Mar 2025 12:49:00 +0000 (UTC) Received: from rh.Home (unknown [10.45.226.25]) by mx-prod-int-02.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id D4E2F1956095; Fri, 7 Mar 2025 12:48:58 +0000 (UTC) From: Kevin Traynor To: Arkadiusz Kusztal Cc: dpdk stable Subject: patch 'crypto/qat: fix SM3 state size' has been queued to stable release 24.11.2 Date: Fri, 7 Mar 2025 12:47:12 +0000 Message-ID: <20250307124726.475001-39-ktraynor@redhat.com> In-Reply-To: <20250307124726.475001-1-ktraynor@redhat.com> References: <20250307124726.475001-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.0 on 10.30.177.15 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: nlmTUOkb5gao-tjNZgeqQCsAI-Xz23E6-HUeXy3qbXI_1741351740 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit content-type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org 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 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 --- 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@dpdk.org @@ -18 +19 @@ -index 9b26f8a89b..7f370f03fb 100644 +index 50d687fd37..3279deb325 100644