]> git.baikalelectronics.ru Git - kernel.git/commit
uml: further bugs.c tidying
authorJeff Dike <jdike@addtoit.com>
Tue, 5 Feb 2008 06:30:40 +0000 (22:30 -0800)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Tue, 5 Feb 2008 17:44:25 +0000 (09:44 -0800)
commit3f6c636774356541a2f36337566059c2f6c70605
treecffd1f6e14124729da114192aee83fe88e9f21e5
parent99feeb81f863d2a972dc9d61b200e089f1b562ba
uml: further bugs.c tidying

bugs.c, for both i386 and x86_64, can undergo further cleaning -
The i386 arch_check_bugs only does one thing, so we might as
well inline the cmov checking.
The i386 includes can be trimmed down a bit.
arch_init_thread wasn't used, so it is deleted.
The panics in arch_handle_signal are turned into printks
because the process is about to get segfaulted anyway, so something is
dying no matter what happens here.  Also, the return value was always
the same, so it contained no information, so it can be void instead.
The name is changed to arch_examine_signal because it doesn't handle
anything.
The caller of arch_handle_signal, relay_signal, does things in
a different order.  The kernel-mode signal check is now first, which
puts everything else together, making things a bit clearer conceptually.

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/um/include/arch.h
arch/um/kernel/trap.c
arch/um/sys-i386/bugs.c
arch/um/sys-x86_64/bugs.c