summaryrefslogtreecommitdiff
path: root/mm/debug.c
diff options
context:
space:
mode:
authorJared Kangas <jkangas@redhat.com>2024-11-19 13:02:34 -0800
committerAndrew Morton <akpm@linux-foundation.org>2024-12-05 19:54:43 -0800
commite30a0361b8515d424c73c67de1a43e45a13b8ba2 (patch)
tree5d8fbb6330f81ab02d3a426ba03d9775d8d03e5f /mm/debug.c
parent091c1dd2d4df6edd1beebe0e5863d4034ade9572 (diff)
downloadlwn-e30a0361b8515d424c73c67de1a43e45a13b8ba2.tar.gz
lwn-e30a0361b8515d424c73c67de1a43e45a13b8ba2.zip
kasan: make report_lock a raw spinlock
If PREEMPT_RT is enabled, report_lock is a sleeping spinlock and must not be locked when IRQs are disabled. However, KASAN reports may be triggered in such contexts. For example: char *s = kzalloc(1, GFP_KERNEL); kfree(s); local_irq_disable(); char c = *s; /* KASAN report here leads to spin_lock() */ local_irq_enable(); Make report_spinlock a raw spinlock to prevent rescheduling when PREEMPT_RT is enabled. Link: https://lkml.kernel.org/r/20241119210234.1602529-1-jkangas@redhat.com Fixes: 342a93247e08 ("locking/spinlock: Provide RT variant header: <linux/spinlock_rt.h>") Signed-off-by: Jared Kangas <jkangas@redhat.com> Cc: Alexander Potapenko <glider@google.com> Cc: Andrey Konovalov <andreyknvl@gmail.com> Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com> Cc: Dmitry Vyukov <dvyukov@google.com> Cc: Vincenzo Frascino <vincenzo.frascino@arm.com> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm/debug.c')
0 files changed, 0 insertions, 0 deletions