]> git.baikalelectronics.ru Git - kernel.git/commit
[PATCH] ppc32: Kill init on unhandled synchronous signals
authorPaul Mackerras <paulus@samba.org>
Sat, 10 Sep 2005 11:13:11 +0000 (21:13 +1000)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sat, 10 Sep 2005 17:15:11 +0000 (10:15 -0700)
commit9f441e3a803ae12a77346b089438c4be79135550
treef9116ed650d499d405a3fe021c473f9558897d96
parent595a8032f4051c55564cdb2c76fb77f7f06ca5a0
[PATCH] ppc32: Kill init on unhandled synchronous signals

This is a patch that I have had in my tree for ages.  If init causes
an exception that raises a signal, such as a SIGSEGV, SIGILL or
SIGFPE, and it hasn't registered a handler for it, we don't deliver
the signal, since init doesn't get any signals that it doesn't have a
handler for.  But that means that we just return to userland and
generate the same exception again immediately.  With this patch we
print a message and kill init in this situation.

This is very useful when you have a bug in the kernel that means that
init doesn't get as far as executing its first instruction. :)
Without this patch the system hangs when it gets to starting the
userland init; with it you at least get a message giving you a clue
about what has gone wrong.

Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/ppc/kernel/traps.c
arch/ppc/mm/fault.c
include/asm-ppc/system.h