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 E26BF46211 for ; Thu, 13 Feb 2025 11:01:05 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DEBB640287; Thu, 13 Feb 2025 11:01: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 585B440287 for ; Thu, 13 Feb 2025 11:01:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1739440864; 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=Jv6e0yxwVi6g22wH2sDcmh2VpKT48QS0rBG8u80bVAQ=; b=AlyOjUjacG0REPBw8wi02KPMEFJ/QVo6pmwt8zr33KdcwhnFWdNa2EB40RanD4TIxiH4LU 0LIsUZslszkQDIuOOmiERPm1+wnJvDq6D7n+Qp6z6WBBGQa4x/uW5aoy54MwBI86Bk8hmy uRqQiiOs8W3DICnRqy0fi/gM6BTYBJE= Received: from mx-prod-mc-03.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-596-ro4RCksIOQK2j8LvRh6IMg-1; Thu, 13 Feb 2025 05:01:03 -0500 X-MC-Unique: ro4RCksIOQK2j8LvRh6IMg-1 X-Mimecast-MFC-AGG-ID: ro4RCksIOQK2j8LvRh6IMg Received: from mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.93]) (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-03.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 00ED619373D8; Thu, 13 Feb 2025 10:01:02 +0000 (UTC) Received: from rh.Home (unknown [10.45.224.21]) by mx-prod-int-06.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 1BA071800365; Thu, 13 Feb 2025 10:00:59 +0000 (UTC) From: Kevin Traynor To: Wathsala Vithanage Cc: Jack Bond-Preston , Hemant Agrawal , dpdk stable Subject: patch 'crypto/openssl: fix CMAC auth context update' has been queued to stable release 24.11.2 Date: Thu, 13 Feb 2025 09:58:01 +0000 Message-ID: <20250213095933.362078-34-ktraynor@redhat.com> In-Reply-To: <20250213095933.362078-1-ktraynor@redhat.com> References: <20250213095933.362078-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.93 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: KiPg7hFm2buoUmnKyjBZdjqT4gtWuYOucDzglCy0Qok_1739440862 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 02/17/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/2ecc6d401bac097e91f52ab2137a8aed7b588c77 Thanks. Kevin --- >From 2ecc6d401bac097e91f52ab2137a8aed7b588c77 Mon Sep 17 00:00:00 2001 From: Wathsala Vithanage Date: Fri, 29 Nov 2024 20:20:22 +0000 Subject: [PATCH] crypto/openssl: fix CMAC auth context update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ upstream commit 0241aebfa3bdc53fb36972fb116298adbdbd3957 ] This patch removes an unnecessary cleanup of the shared CMAC context at the end of the CMAC authentication function, which causes subsequent calls to it to fail. Fixes: 17d5bc6135af ("crypto/openssl: make per-QP auth context clones") Signed-off-by: Wathsala Vithanage Reviewed-by: Jack Bond-Preston Acked-by: Hemant Agrawal --- drivers/crypto/openssl/rte_openssl_pmd.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/crypto/openssl/rte_openssl_pmd.c b/drivers/crypto/openssl/rte_openssl_pmd.c index d2cf20c059..b090611bd0 100644 --- a/drivers/crypto/openssl/rte_openssl_pmd.c +++ b/drivers/crypto/openssl/rte_openssl_pmd.c @@ -1596,7 +1596,4 @@ process_auth_final: if (CMAC_Final(ctx, dst, (size_t *)&dstlen) != 1) goto process_auth_err; - - CMAC_CTX_cleanup(ctx); - return 0; -- 2.48.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2025-02-12 17:29:38.265596425 +0000 +++ 0034-crypto-openssl-fix-CMAC-auth-context-update.patch 2025-02-12 17:29:34.304945655 +0000 @@ -1 +1 @@ -From 0241aebfa3bdc53fb36972fb116298adbdbd3957 Mon Sep 17 00:00:00 2001 +From 2ecc6d401bac097e91f52ab2137a8aed7b588c77 Mon Sep 17 00:00:00 2001 @@ -8,0 +9,2 @@ +[ upstream commit 0241aebfa3bdc53fb36972fb116298adbdbd3957 ] + @@ -14 +15,0 @@ -Cc: stable@dpdk.org