summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKarl Mehltretter <kmehltretter@gmail.com>2026-05-24 06:52:35 +0100
committerRussell King <rmk+kernel@armlinux.org.uk>2026-06-11 14:52:01 +0100
commit77a1f6883dc6e837bb2cb30b9b02e2f94338e2c6 (patch)
tree3afa2c4dfe697591dd09fb424fb50d824585505c /scripts
parentd59ed803715a71fb9582e139d648ece8d66dc743 (diff)
ARM: 9475/1: entry: use byte load for KASAN VMAP stack shadow
Commit 44e9a3bb76e5 ("ARM: 9430/1: entry: Do a dummy read from VMAP shadow") added a dummy read from the KASAN VMAP stack shadow in __switch_to(). The read uses ldr, but the KASAN shadow address is byte-granular and is not guaranteed to be word aligned. ARMv5 faults unaligned word loads. With CONFIG_KASAN_VMALLOC and CONFIG_VMAP_STACK enabled, ARM926/VersatilePB crashes in __switch_to() with an alignment exception before reaching init. Use ldrb for the dummy shadow access. The code only needs to fault in the shadow mapping if the stack shadow is missing, so a byte load is sufficient and matches the granularity of KASAN shadow memory. Fixes: 44e9a3bb76e5 ("ARM: 9430/1: entry: Do a dummy read from VMAP shadow") Cc: stable@vger.kernel.org # v6.13+ Signed-off-by: Karl Mehltretter <kmehltretter@gmail.com> Reviewed-by: Linus Walleij <linusw@kernel.org> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'scripts')
0 files changed, 0 insertions, 0 deletions