diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:27:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:07 -0400 |
commit | a5f6096c805e6d2fa03ee932f8c70af34cee41a0 (patch) | |
tree | c74d984c0e2fc2958425df65605dd3451adc6520 /arch/um/os-Linux/sys-i386 | |
parent | 189872f968def833727b6bfef83ebd7440c538e6 (diff) |
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/os-Linux/sys-i386')
-rw-r--r-- | arch/um/os-Linux/sys-i386/registers.c | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/arch/um/os-Linux/sys-i386/registers.c b/arch/um/os-Linux/sys-i386/registers.c index f171204caa4e..8f1f0ab639b9 100644 --- a/arch/um/os-Linux/sys-i386/registers.c +++ b/arch/um/os-Linux/sys-i386/registers.c | |||
@@ -8,9 +8,6 @@ | |||
8 | #include "longjmp.h" | 8 | #include "longjmp.h" |
9 | #include "user.h" | 9 | #include "user.h" |
10 | 10 | ||
11 | /* XXX These need to use [GS]ETFPXREGS and copy_sc_{to,from}_user_skas needs | ||
12 | * to pass in a sufficiently large buffer | ||
13 | */ | ||
14 | int save_fp_registers(int pid, unsigned long *fp_regs) | 11 | int save_fp_registers(int pid, unsigned long *fp_regs) |
15 | { | 12 | { |
16 | if(ptrace(PTRACE_GETFPREGS, pid, 0, fp_regs) < 0) | 13 | if(ptrace(PTRACE_GETFPREGS, pid, 0, fp_regs) < 0) |
@@ -25,6 +22,20 @@ int restore_fp_registers(int pid, unsigned long *fp_regs) | |||
25 | return 0; | 22 | return 0; |
26 | } | 23 | } |
27 | 24 | ||
25 | int save_fpx_registers(int pid, unsigned long *fp_regs) | ||
26 | { | ||
27 | if(ptrace(PTRACE_GETFPXREGS, pid, 0, fp_regs) < 0) | ||
28 | return -errno; | ||
29 | return 0; | ||
30 | } | ||
31 | |||
32 | int restore_fpx_registers(int pid, unsigned long *fp_regs) | ||
33 | { | ||
34 | if(ptrace(PTRACE_SETFPXREGS, pid, 0, fp_regs) < 0) | ||
35 | return -errno; | ||
36 | return 0; | ||
37 | } | ||
38 | |||
28 | unsigned long get_thread_reg(int reg, jmp_buf *buf) | 39 | unsigned long get_thread_reg(int reg, jmp_buf *buf) |
29 | { | 40 | { |
30 | switch(reg){ | 41 | switch(reg){ |
@@ -36,3 +47,21 @@ unsigned long get_thread_reg(int reg, jmp_buf *buf) | |||
36 | return 0; | 47 | return 0; |
37 | } | 48 | } |
38 | } | 49 | } |
50 | |||
51 | int have_fpx_regs = 1; | ||
52 | |||
53 | void arch_init_registers(int pid) | ||
54 | { | ||
55 | unsigned long fpx_regs[HOST_XFP_SIZE]; | ||
56 | int err; | ||
57 | |||
58 | err = ptrace(PTRACE_GETFPXREGS, pid, 0, fpx_regs); | ||
59 | if(!err) | ||
60 | return; | ||
61 | |||
62 | if(errno != EIO) | ||
63 | panic("check_ptrace : PTRACE_GETFPXREGS failed, errno = %d", | ||
64 | errno); | ||
65 | |||
66 | have_fpx_regs = 0; | ||
67 | } | ||