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 5E4EF1B424F for ; Sat, 20 Dec 2025 09:49:11 +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=1766224152; cv=none; b=kAmqhJ6DQYYv1s65AFpY61+fG5jhyYmuu0YFdC9E3vSIF5nCqhqWDlzYNI/MnqLizXIqCHVYoQfClka8Ao3PJudShpkJu75ziGqmfkF/G7yojMGX7PcL1IegncyWJifCzrlTETuMQ7SyIZOiHYLNWoSpzs8iOrlQP+RX9WXtp9I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766224152; c=relaxed/simple; bh=pYj2OlcustQY/pV1CgTXZnP5ez3Vh8eJUCsV2AF86uc=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=JVgRbn7n22n82PsL/WsXewwz+oHPAZ3rg4ppWyCeqYFliCZnit8JGLfk1N/D1s0uhXzqJ2/LCCAXEYhWhpRLQMreL7Ukr9L4LoboqZi8k8OCTzL5/DDoBM8H2KbKghJrEBFk0Me+TaYrL3IDPdtOGkdGxl2UTZQC7lqRsm8yJls= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=DYjkoiK9; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="DYjkoiK9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C837EC4CEF5; Sat, 20 Dec 2025 09:49:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1766224151; bh=pYj2OlcustQY/pV1CgTXZnP5ez3Vh8eJUCsV2AF86uc=; h=Date:From:To:Cc:Subject:From; b=DYjkoiK9+1EibEhm1DINiEFIOtsQjtFHd6+IJR6rF3noB3yoXK+J+cbGfCGDtdTZi /AYMhuZmRRKzymA22AVS26z1zXV66qNBEYrloJnT8pjBHNgd3taV2IHt3cQkw9lB4J 2cqkTBP4vDKgI7lt9ANtAyaG+OS8aOFWYpRGZRMGtciZ4w/NrrLEJ+L53kkthNtQKo Yte1+Rsx63rKRqXaRlh0ZDrU2P5Wnf2lqJqHY44x58XUyDhpjUxdGWG8NYXx3nz8SR YrbRdGvcMuZifd3FoTYN7anLt1LmtjTK+KmvgUv/0UU2LpGQPewFrYPmE8YqRcTQT/ 6LtaILdktgB3A== Date: Sat, 20 Dec 2025 09:49:08 +0000 From: Catalin Marinas To: Linus Torvalds Cc: Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] arm64 updates/fixes for 6.19-rc2 Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Linus, Please pull the arm64 updates below. There are two cleanups that I did not push during the merging window because of conflicts with other series going in via the tip and crypto trees. The other is a GCS fix. Thanks. The following changes since commit 8f0b4cce4481fb22653697cced8d0d04027cb1e8: Linux 6.19-rc1 (2025-12-14 16:05:07 +1200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux tags/arm64-fixes for you to fetch changes up to f4ea8e05f2a857d5447c25f7daf00807d38b307d: lkdtm/bugs: Do not confuse the clang/objtool with busy wait loop (2025-12-19 15:09:09 +0000) ---------------------------------------------------------------- Two left-over updates that could not go into -rc1 due to conflicts with other series: - Simplify checks in arch_kfence_init_pool() since force_pte_mapping() already takes BBML2-noabort (break-before-make Level 2 with no aborts generated) into account - Remove unneeded SVE/SME fallback preserve/store handling in the arm64 EFI. With the recent updates, the fallback path is only taken for EFI runtime calls from hardirq or NMI contexts. In practice, this only happens under panic/oops/emergency_restart() and no restoring of the user state expected. There's a corresponding lkdtm update to trigger a BUG() or panic() from hardirq context together with a fixup not to confuse clang/objtool about the control flow GCS (guarded control stacks) fix: flush the GCS locking state on exec, otherwise the new task will not be able to enable GCS (locked as disabled). ---------------------------------------------------------------- Ard Biesheuvel (2): lkdtm/bugs: Add cases for BUG and PANIC occurring in hardirq context arm64/efi: Remove unneeded SVE/SME fallback preserve/store handling Catalin Marinas (1): lkdtm/bugs: Do not confuse the clang/objtool with busy wait loop Kevin Brodsky (1): arm64: mm: Simplify check in arch_kfence_init_pool() Mark Brown (1): arm64/gcs: Flush the GCS locking state on exec arch/arm64/kernel/fpsimd.c | 130 +++++--------------------------- arch/arm64/kernel/process.c | 1 + arch/arm64/mm/mmu.c | 33 ++++---- drivers/misc/lkdtm/bugs.c | 53 +++++++++++++ tools/testing/selftests/lkdtm/tests.txt | 2 + 5 files changed, 92 insertions(+), 127 deletions(-) -- Catalin