Skip to content
Commit 3a9f84d3 authored by Ed Swierk's avatar Ed Swierk Committed by Ingo Molnar
Browse files

signals, debug: fix BUG: using smp_processor_id() in preemptible code in print_fatal_signal()



With print-fatal-signals=1 on a kernel with CONFIG_PREEMPT=y, sending an
unexpected signal to a process causes a BUG: using smp_processor_id() in
preemptible code.

get_signal_to_deliver() releases the siglock before calling
print_fatal_signal(), which calls show_regs(), which calls
smp_processor_id(), which is not supposed to be called from a
preemptible thread.

Make sure show_regs() runs with preemption disabled.

Signed-off-by: default avatarEd Swierk <eswierk@aristanetworks.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent bf50c903
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment