]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
[POWERPC] Make syscall restart code more common
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 4 Jun 2007 05:15:49 +0000 (15:15 +1000)
committerPaul Mackerras <paulus@samba.org>
Thu, 14 Jun 2007 12:29:57 +0000 (22:29 +1000)
commit22e38f29328296d9d4cc33e46fd32a63e807abaf
tree4cfea90671815ce87d5d0e896bb9f818565132c8
parent791cc501d422be96d6e3098faf6471ba29f4dd33
[POWERPC] Make syscall restart code more common

This patch moves the code in signal_32.c and signal_64.c for handling
syscall restart into a common signal.c file and converge around a single
implementation that is based on the 32 bits one, using trap, ccr
and r3 rather than the special "result" field for deciding what to do.

The "result" field is now pretty much deprecated. We still set it for
the sake of whatever might rely on it in userland but we no longer use
it's content.

This, along with a previous patch that enables ptracers to write to
"trap" and "orig_r3" should allow gdb to properly handle syscall
restarting.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kernel/Makefile
arch/powerpc/kernel/signal.c [new file with mode: 0644]
arch/powerpc/kernel/signal.h [new file with mode: 0644]
arch/powerpc/kernel/signal_32.c
arch/powerpc/kernel/signal_64.c