summaryrefslogtreecommitdiffstats
path: root/arch/um/include/sysdep-i386/ptrace.h
diff options
context:
space:
mode:
authorJeff Dike2007-10-16 10:27:15 +0200
committerLinus Torvalds2007-10-16 18:43:07 +0200
commita5f6096c805e6d2fa03ee932f8c70af34cee41a0 (patch)
treec74d984c0e2fc2958425df65605dd3451adc6520 /arch/um/include/sysdep-i386/ptrace.h
parentuml: don't use glibc asm/user.h (diff)
downloadkernel-qcow2-linux-a5f6096c805e6d2fa03ee932f8c70af34cee41a0.tar.gz
kernel-qcow2-linux-a5f6096c805e6d2fa03ee932f8c70af34cee41a0.tar.xz
kernel-qcow2-linux-a5f6096c805e6d2fa03ee932f8c70af34cee41a0.zip
uml: floating point signal delivery fixes
Handle floating point state in across signals correctly. UML/i386 needs to know whether the host does PTRACE_[GS]ETFPXREGS, so an arch_init_registers hook is added, which on x86_64 does nothing. UML doesn't save and restore floating point registers on kernel entry and exit, so they need to be copied between the host process and the sigcontext. save_fpx_registers and restore_fpx_registers are added for this purpose. save_fp_registers and restore_fp_registers already exist. There was a bunch of floating point state conversion code in arch/um/sys-i386/ptrace.c which isn't needed there, but is needed in signal.c, so it is moved over. The i386 code now distinguishes between fp and fpx state and handles them correctly. The x86_64 code just needs to copy state as-is between the host process and the stack. There are also some fixes there to pass the correct address of the floating point state around. 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>
Diffstat (limited to 'arch/um/include/sysdep-i386/ptrace.h')
-rw-r--r--arch/um/include/sysdep-i386/ptrace.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/include/sysdep-i386/ptrace.h b/arch/um/include/sysdep-i386/ptrace.h
index edb9393283b5..c16d739d2089 100644
--- a/arch/um/include/sysdep-i386/ptrace.h
+++ b/arch/um/include/sysdep-i386/ptrace.h
@@ -168,4 +168,6 @@ struct syscall_args {
#define UPT_FAULTINFO(r) (&(r)->faultinfo)
+extern void arch_init_registers(int pid);
+
#endif