diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:26:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:05 -0400 |
commit | 42daba316557e597a90a730f61c762602b7f0e0c (patch) | |
tree | 9b7e9da84cef7d2547c577f1cf94b408cf308619 /arch/um/os-Linux/skas/process.c | |
parent | 5c8aaceab88ac787c0a4038b29143c954c2a45e0 (diff) |
uml: stop saving process FP state
Throw out a lot of code dealing with saving and restoring floating-point
state. In skas mode, where processes run in a restoring floating-point state
on kernel entry and exit is pointless.
This eliminates most of arch/um/os-Linux/sys-{i386,x86_64}/registers.c. Most
of what remained is now arch-indpendent, and can be moved up to
arch/um/os-Linux/registers.c. Both arches need the jmp_buf accessor
get_thread_reg, and i386 needs {save,restore}_fp_regs because it cheats during
sigreturn by getting the fp state using ptrace rather than copying it out of
the process sigcontext.
After this, it turns out that arch/um/include/skas/mode-skas.h is almost
completely unneeded. The declarations in it are variables which either don't
exist or which don't have global scope. The one exception is
kill_off_processes_skas. If that's removed, this header can be deleted.
This uncovered a bug in user.h, which wasn't correctly making sure that a
size_t definition was available to both userspace and kernelspace files.
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/skas/process.c')
-rw-r--r-- | arch/um/os-Linux/skas/process.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c index ba9af8d62055..db020d21f132 100644 --- a/arch/um/os-Linux/skas/process.c +++ b/arch/um/os-Linux/skas/process.c | |||
@@ -357,11 +357,10 @@ void userspace(union uml_pt_regs *regs) | |||
357 | } | 357 | } |
358 | 358 | ||
359 | static unsigned long thread_regs[MAX_REG_NR]; | 359 | static unsigned long thread_regs[MAX_REG_NR]; |
360 | static unsigned long thread_fp_regs[HOST_FP_SIZE]; | ||
361 | 360 | ||
362 | static int __init init_thread_regs(void) | 361 | static int __init init_thread_regs(void) |
363 | { | 362 | { |
364 | get_safe_registers(thread_regs, thread_fp_regs); | 363 | get_safe_registers(thread_regs); |
365 | /* Set parent's instruction pointer to start of clone-stub */ | 364 | /* Set parent's instruction pointer to start of clone-stub */ |
366 | thread_regs[REGS_IP_INDEX] = UML_CONFIG_STUB_CODE + | 365 | thread_regs[REGS_IP_INDEX] = UML_CONFIG_STUB_CODE + |
367 | (unsigned long) stub_clone_handler - | 366 | (unsigned long) stub_clone_handler - |
@@ -398,11 +397,6 @@ int copy_context_skas0(unsigned long new_stack, int pid) | |||
398 | panic("copy_context_skas0 : PTRACE_SETREGS failed, " | 397 | panic("copy_context_skas0 : PTRACE_SETREGS failed, " |
399 | "pid = %d, errno = %d\n", pid, -err); | 398 | "pid = %d, errno = %d\n", pid, -err); |
400 | 399 | ||
401 | err = ptrace_setfpregs(pid, thread_fp_regs); | ||
402 | if(err < 0) | ||
403 | panic("copy_context_skas0 : PTRACE_SETFPREGS failed, " | ||
404 | "pid = %d, errno = %d\n", pid, -err); | ||
405 | |||
406 | /* set a well known return code for detection of child write failure */ | 400 | /* set a well known return code for detection of child write failure */ |
407 | child_data->err = 12345678; | 401 | child_data->err = 12345678; |
408 | 402 | ||