]> git.baikalelectronics.ru Git - kernel.git/commit
x86, kexec: fix hang on i386 when panic occurs while console_sem is held
authorNeil Horman <nhorman@tuxdriver.com>
Fri, 17 Oct 2008 21:00:13 +0000 (17:00 -0400)
committerIngo Molnar <mingo@elte.hu>
Wed, 22 Oct 2008 11:59:44 +0000 (13:59 +0200)
commite32482b6f94ef6daddd805e1885fa68f98b9854b
tree2105256f17c6869d87c3a08cf41055fb6cef0169
parent0f9cea48945690339b693d2a4b624922c59a2879
x86, kexec: fix hang on i386 when panic occurs while console_sem is held

There's a corner case in 32 bit x86 kdump at the moment.  When the box
panics via nmi, we call bust_spinlocks(1) to disable sensitivity to the
console_sem (allowing us to print to the console in all cases), but we don't
call crash_kexec, until after we call bust_spinlocks(0), which re-enables
console_sem sensitivity.

The result is that, if we get an nmi while the console_sem is held and
kdump is configured, and we try to print something to the console during
kdump shutdown (which we often do) we deadlock the box.  The fix is to
simply do what 64 bit die_nmi does which is to not call bust_spinlocks(0)
until after we call crash_kexec.

Patch below tested successfully by me.

Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/dumpstack_32.c