[GIT PULL] s390 updates for 7.3-rc3

From: Vasily Gorbik

Date: Sat Sep 12 2026 - 18:18:52 EST


Hello Linus,

please pull s390 updates for 7.3-rc3.

Thank you,
Vasily

The following changes since commit df2908090cda368b01ff43709f51890076c56157:

Linux 7.3-rc2 (2026-09-06 15:07:20 -0700)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git tags/s390-7.3-3

for you to fetch changes up to dc2136341be9835e70ba7c6b36904cf3683fd029:

s390/crypto: Enable CONTEXT_ANALYSIS (2026-09-08 15:53:41 +0200)

----------------------------------------------------------------
s390 updates for 7.3-rc3

- Fix NULL pointer dereferences in s390dbf when setting debug levels or
resizing debug areas while logging events. Remove duplicate messages
about kernel parameter overrides

- Fix PAI perf crashes when per task events move to newly onlined CPUs.
Add CPU hotplug callbacks to allocate and free the per-CPU data

- Fix mutex use in atomic context in AES and PAES CTR code by using
semaphore trylocks instead. Remove conditional locking and enable
Clang CONTEXT_ANALYSIS for the crypto code

- Fix scatterlist walk error handling in AES and PAES and avoid freeing
PAES walk resources twice

- Fix missing scrubbing of temporary AES and PAES buffers, including AES
GCM error paths

- Set missing CRYPTO_ALG_ASYNC and CRYPTO_ALG_NO_FALLBACK flags for PAES

- Fix -EBUSY handling in PAES and PHMAC to avoid cleaning up requests
already queued to the crypto engine

- Fix PAES and PHMAC requests being completed twice on errors

- Fix PAES and PHMAC hangs when key conversion keeps returning -EBUSY
by returning -EIO after the last retry

----------------------------------------------------------------
Harald Freudenberger (11):
s390/crypto: Fix skcipher_walk return code handling in aes_s390
s390/crypto: Fix missing scrub of temp buffers with AES ctr and gcm algorithm
s390/crypto: Fix use of mutex in atomic context
s390/crypto: Fix return code handling at skcipher_walk_done in PAES algorithms
s390/crypto: Fix missing scrub of temp buffers with PAES algorithm
s390/crypto: Fix use of mutex in atomic context in PAES
s390/crypto: Fix missing cra_flags in paes_s390
s390/crypto: Fix handling of EBUSY in PAES when req is pushed to crypto engine
s390/crypto: Fix handling of EBUSY in PHMAC when req is pushed to crypto engine
s390/crypto: Fix wrong return code to engine in asynch callbacks
s390/crypto: Map EBUSY to EIO when key conversion fails repeatedly

Heiko Carstens (1):
s390/crypto: Enable CONTEXT_ANALYSIS

Mikhail Zaslonko (3):
s390/debug: Fix NULL pointer dereference in debug_set_level()
s390/debug: Do not repeat parameter override notice on debug_set_level()
s390/debug: Fix race between debug area resize and event logging

Thomas Richter (3):
s390/pai: Use PAI PMU index as parameter replacing event
s390/pai: Move locking to event init and delete
s390/pai: Support CPU hotplug for PMU PAI

arch/s390/crypto/Makefile | 2 +
arch/s390/crypto/aes_s390.c | 87 ++++++++++++-------
arch/s390/crypto/paes_s390.c | 188 ++++++++++++++++++++++++----------------
arch/s390/crypto/phmac_s390.c | 36 +++++---
arch/s390/include/asm/pai.h | 1 -
arch/s390/kernel/debug.c | 54 ++++++++----
arch/s390/kernel/perf_pai.c | 196 +++++++++++++++++++++++++++++-------------
7 files changed, 371 insertions(+), 193 deletions(-)