From patchwork Mon May 20 03:26:42 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Herbert Xu X-Patchwork-Id: 13668027 X-Patchwork-Delegate: herbert@gondor.apana.org.au Received: from abb.hmeau.com (abb.hmeau.com [144.6.53.87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3324AD299; Mon, 20 May 2024 03:26:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=144.6.53.87 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716175615; cv=none; b=BdSA5aDPMvd6BiiFSF8n1noR3VJWntM2c5dWAgmG2aLVkC2CpZblUALZyW2+DJO4Dqt8b9isPlliTAxorJl2wzpd9TqrNejzJR45+4BnkagGwBz0ZTO5d754lunh/yzB+Z2Pwv4m2wK2y+TPpZ7+9VYVBoYmiS6or6HR7Zr+DRQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716175615; c=relaxed/simple; bh=V5wn606jK4rLb8q9tpFx0F72ZJTGSftm4ClrGhQwzJU=; h=Date:From:To:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=tmXQgXysgooITxfqysC2sVPaNmvCAX9GW0aJYD3zJ+ug4L/CUp9/bET3iWxal1MKmxDZ1WixWUGN/5z0U822dDwAXrjst2XJtkAcODR3WLSRi1xcf/lyrc9TtsGD/Z8XmeCDMUzenapljlST3LTmSecrT52oSDT0BEn6ENj7psQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=gondor.apana.org.au; spf=pass smtp.mailfrom=gondor.apana.org.au; arc=none smtp.client-ip=144.6.53.87 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=gondor.apana.org.au Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=gondor.apana.org.au Received: from loth.rohan.me.apana.org.au ([192.168.167.2]) by formenos.hmeau.com with smtp (Exim 4.96 #2 (Debian)) id 1s8tfd-00HW6r-1n; Mon, 20 May 2024 11:26:42 +0800 Received: by loth.rohan.me.apana.org.au (sSMTP sendmail emulation); Mon, 20 May 2024 11:26:42 +0800 Date: Mon, 20 May 2024 11:26:42 +0800 From: Herbert Xu To: Linus Torvalds , "David S. Miller" , Linux Kernel Mailing List , Linux Crypto Mailing List Subject: [GIT PULL] Crypto Fixes for 6.10 Message-ID: References: Precedence: bulk X-Mailing-List: linux-crypto@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: Hi Linus: The following changes since commit 13909a0c88972c5ef5d13f44d1a8bf065a31bdf4: crypto: atmel-sha204a - provide the otp content (2024-05-10 17:15:25 +0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git v6.10-p2 for you to fetch changes up to c6ab5c915da460c0397960af3c308386c3f3247b: crypto: ecc - Prevent ecc_digits_from_bytes from reading too many bytes (2024-05-17 18:55:07 +0800) ---------------------------------------------------------------- This push fixes a bug in the new ecc P521 code as well as a buggy fix in qat. ---------------------------------------------------------------- Herbert Xu (1): crypto: qat - Fix ADF_DEV_RESET_SYNC memory leak Stefan Berger (1): crypto: ecc - Prevent ecc_digits_from_bytes from reading too many bytes crypto/ecc.c | 22 ++++++++++++++++++++++ drivers/crypto/intel/qat/qat_common/adf_aer.c | 19 +++++-------------- include/crypto/internal/ecc.h | 15 ++------------- 3 files changed, 29 insertions(+), 27 deletions(-) Thanks,