]> git.baikalelectronics.ru Git - kernel.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)
commit8546fe7023a31b68519dc1f70cc6acc965aec6ce
tree4cfea90671815ce87d5d0e896bb9f818565132c8
parente1384a4c8bf088e186b009efb436a775ec39e869
[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