-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Jeff Dike
authored and
Linus Torvalds
committed
Oct 16, 2007
1 parent
5c8aace
commit 42daba3
Showing
12 changed files
with
74 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
/* | ||
* Copyright (C) 2002 Jeff Dike (jdike@karaya.com) | ||
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{linux.intel,addtoit}.com) | ||
* Licensed under the GPL | ||
*/ | ||
|
||
#ifndef __MODE_SKAS_H__ | ||
#define __MODE_SKAS_H__ | ||
|
||
#include <sysdep/ptrace.h> | ||
|
||
extern unsigned long exec_regs[]; | ||
extern unsigned long exec_fp_regs[]; | ||
extern unsigned long exec_fpx_regs[]; | ||
extern int have_fpx_regs; | ||
|
||
extern void kill_off_processes_skas(void); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Copyright (C) 2004 PathScale, Inc | ||
* Licensed under the GPL | ||
*/ | ||
|
||
#include <errno.h> | ||
#include <string.h> | ||
#include <sys/ptrace.h> | ||
#include "user.h" | ||
#include "sysdep/ptrace.h" | ||
|
||
/* This is set once at boot time and not changed thereafter */ | ||
|
||
static unsigned long exec_regs[MAX_REG_NR]; | ||
|
||
void init_thread_registers(union uml_pt_regs *to) | ||
{ | ||
memcpy(to->skas.regs, exec_regs, sizeof(to->skas.regs)); | ||
} | ||
|
||
void save_registers(int pid, union uml_pt_regs *regs) | ||
{ | ||
int err; | ||
|
||
err = ptrace(PTRACE_GETREGS, pid, 0, regs->skas.regs); | ||
if(err < 0) | ||
panic("save_registers - saving registers failed, errno = %d\n", | ||
errno); | ||
} | ||
|
||
void restore_registers(int pid, union uml_pt_regs *regs) | ||
{ | ||
int err; | ||
|
||
err = ptrace(PTRACE_SETREGS, pid, 0, regs->skas.regs); | ||
if(err < 0) | ||
panic("restore_registers - saving registers failed, " | ||
"errno = %d\n", errno); | ||
} | ||
|
||
void init_registers(int pid) | ||
{ | ||
int err; | ||
|
||
err = ptrace(PTRACE_GETREGS, pid, 0, exec_regs); | ||
if(err) | ||
panic("check_ptrace : PTRACE_GETREGS failed, errno = %d", | ||
errno); | ||
} | ||
|
||
void get_safe_registers(unsigned long *regs) | ||
{ | ||
memcpy(regs, exec_regs, sizeof(exec_regs)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.