From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 540FC3A6F16; Thu, 30 Apr 2026 09:43:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777542233; cv=none; b=NWjg6RIHNF11S1nsCrPGI2t4WmT4au4pQkrGSr/ELARBtEv7vUZByvycHfiFrZ+bRBNieY+Mx7vhJw1sAzgbOs8KoBWOnUKLJyEA0DofMLcDJrliDavHt41gjcFJamumnNyZRJmTr8y4F/C/fCkYhVLYHwK08UP5akc9LjxZmRM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777542233; c=relaxed/simple; bh=9dKKaUMAptbav+dZVGVRrFEimEUnHgBaVqibk89VuxM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=hVGi7MJFgLP2bMbgDDR91a2VyEhbCIQFRdEq32ofDguPStzRXsHYigyLWZEuK9Zt3Hjn5NtasGMdewYN8km4mES/YCzoQTJBljC4n23YSB2Uw/TnrgWfW3iexG9x4sxD1UMWQKA46nUZtL8kS5hZK2J6KNLVAZ6I7io1p8Vqsss= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=U6sEmRSD; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="U6sEmRSD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8FBA9C2BCB3; Thu, 30 Apr 2026 09:43:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1777542233; bh=9dKKaUMAptbav+dZVGVRrFEimEUnHgBaVqibk89VuxM=; h=From:To:Cc:Subject:Date:From; b=U6sEmRSDjUoBZk2YUD5hLEITKmz1po3m3RgjI73VPF3G+8lLpS9txeFEwk7UAd2wZ 59yuOeVeGb/3srvbbLik1DlhYst0F0BX+p8MB60w/tzFWadPR0IgBKBJOv1nlC1gGM niNRNdo6T8ZcQgDnRWqJB+/JNZD3ru0xucfLtYrI= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org, akpm@linux-foundation.org, torvalds@linux-foundation.org, stable@vger.kernel.org Cc: lwn@lwn.net, jslaby@suse.cz, Greg Kroah-Hartman Subject: Linux 5.15.204 Date: Thu, 30 Apr 2026 11:43:08 +0200 Message-ID: <2026043009-granddad-constrain-1116@gregkh> X-Mailer: git-send-email 2.54.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit I'm announcing the release of the 5.15.204 kernel. All users of the 5.15 kernel series must upgrade. The updated 5.15.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.15.y and can be browsed at the normal kernel.org git web browser: https://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git;a=summary thanks, greg k-h ------------ Makefile | 2 crypto/Kconfig | 2 crypto/af_alg.c | 51 ++-------- crypto/algif_aead.c | 203 ++++++++----------------------------------- crypto/algif_skcipher.c | 6 - crypto/authenc.c | 32 ------ crypto/authencesn.c | 84 ++++++----------- crypto/scatterwalk.c | 94 +++++++++++++++++++ drivers/xen/privcmd.c | 7 + drivers/xen/sys-hypervisor.c | 8 + include/crypto/if_alg.h | 5 - include/crypto/scatterwalk.h | 32 ++++++ 12 files changed, 231 insertions(+), 295 deletions(-) Douya Le (1): crypto: algif_aead - snapshot IV for async AEAD requests Eric Biggers (3): crypto: scatterwalk - Backport memcpy_sglist() crypto: algif_aead - use memcpy_sglist() instead of null skcipher crypto: authenc - use memcpy_sglist() instead of null skcipher Greg Kroah-Hartman (1): Linux 5.15.204 Herbert Xu (5): crypto: algif_aead - Revert to operating out-of-place crypto: authencesn - Do not place hiseq at end of dst for out-of-place decryption crypto: authencesn - Fix src offset when decrypting in-place crypto: af_alg - Fix page reassignment overflow in af_alg_pull_tsgl crypto: algif_aead - Fix minimum RX size check for decryption Juergen Gross (2): Buffer overflow in drivers/xen/sys-hypervisor.c xen/privcmd: fix double free via VMA splitting