提交 f0c4cad9 编写于 作者: J Jeff Dike 提交者: Linus Torvalds

uml: style fixes in FP code

Tidy the code affected by the floating point fixes.

A bunch of unused stuff is gone, including two sigcontext.c files,
which turned out to be entirely unneeded.

There are the usual fixes -
	whitespace and style cleanups
	copyright updates
	emacs formatting comments gone
	include cleanups
	adding severities to printks
Signed-off-by: NJeff Dike <jdike@linux.intel.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 54fa0ba4
...@@ -6,15 +6,10 @@ ...@@ -6,15 +6,10 @@
#ifndef __SYS_SIGCONTEXT_I386_H #ifndef __SYS_SIGCONTEXT_I386_H
#define __SYS_SIGCONTEXT_I386_H #define __SYS_SIGCONTEXT_I386_H
#include "uml-config.h"
#include "skas.h"
#include "sysdep/sc.h" #include "sysdep/sc.h"
#define IP_RESTART_SYSCALL(ip) ((ip) -= 2) #define IP_RESTART_SYSCALL(ip) ((ip) -= 2)
#define SC_RESTART_SYSCALL(sc) IP_RESTART_SYSCALL(SC_IP(sc))
#define SC_SET_SYSCALL_RETURN(sc, result) SC_EAX(sc) = (result)
#define GET_FAULTINFO_FROM_SC(fi,sc) \ #define GET_FAULTINFO_FROM_SC(fi,sc) \
{ \ { \
(fi).cr2 = SC_CR2(sc); \ (fi).cr2 = SC_CR2(sc); \
...@@ -22,18 +17,10 @@ ...@@ -22,18 +17,10 @@
(fi).trap_no = SC_TRAPNO(sc); \ (fi).trap_no = SC_TRAPNO(sc); \
} }
/* ptrace expects that, at the start of a system call, %eax contains
* -ENOSYS, so this makes it so.
*/
#define SC_START_SYSCALL(sc) do SC_EAX(sc) = -ENOSYS; while(0)
/* This is Page Fault */ /* This is Page Fault */
#define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14) #define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14)
/* SKAS3 has no trap_no on i386, but get_skas_faultinfo() sets it to 0. */ /* SKAS3 has no trap_no on i386, but get_skas_faultinfo() sets it to 0. */
#define SEGV_MAYBE_FIXABLE(fi) ((fi)->trap_no == 0 && ptrace_faultinfo) #define SEGV_MAYBE_FIXABLE(fi) ((fi)->trap_no == 0 && ptrace_faultinfo)
extern unsigned long *sc_sigmask(void *sc_ptr);
extern int sc_get_fpregs(unsigned long buf, void *sc_ptr);
#endif #endif
...@@ -11,43 +11,17 @@ ...@@ -11,43 +11,17 @@
#define IP_RESTART_SYSCALL(ip) ((ip) -= 2) #define IP_RESTART_SYSCALL(ip) ((ip) -= 2)
#define SC_RESTART_SYSCALL(sc) IP_RESTART_SYSCALL(SC_IP(sc)) #define GET_FAULTINFO_FROM_SC(fi, sc) \
#define SC_SET_SYSCALL_RETURN(sc, result) SC_RAX(sc) = (result)
#define SC_FAULT_ADDR(sc) SC_CR2(sc)
#define SC_FAULT_TYPE(sc) SC_ERR(sc)
#define GET_FAULTINFO_FROM_SC(fi,sc) \
{ \ { \
(fi).cr2 = SC_CR2(sc); \ (fi).cr2 = SC_CR2(sc); \
(fi).error_code = SC_ERR(sc); \ (fi).error_code = SC_ERR(sc); \
(fi).trap_no = SC_TRAPNO(sc); \ (fi).trap_no = SC_TRAPNO(sc); \
} }
/* ptrace expects that, at the start of a system call, %eax contains
* -ENOSYS, so this makes it so.
*/
#define SC_START_SYSCALL(sc) do SC_RAX(sc) = -ENOSYS; while(0)
/* This is Page Fault */ /* This is Page Fault */
#define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14) #define SEGV_IS_FIXABLE(fi) ((fi)->trap_no == 14)
/* No broken SKAS API, which doesn't pass trap_no, here. */ /* No broken SKAS API, which doesn't pass trap_no, here. */
#define SEGV_MAYBE_FIXABLE(fi) 0 #define SEGV_MAYBE_FIXABLE(fi) 0
extern unsigned long *sc_sigmask(void *sc_ptr);
#endif #endif
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
...@@ -171,8 +171,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) ...@@ -171,8 +171,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
*/ */
ret = copy_to_user(p, &child->thread.arch.faultinfo, ret = copy_to_user(p, &child->thread.arch.faultinfo,
sizeof(struct ptrace_faultinfo)); sizeof(struct ptrace_faultinfo));
if (ret)
break;
break; break;
} }
......
/* /*
* Copyright (C) 2004 PathScale, Inc * Copyright (C) 2004 PathScale, Inc
* Copyright (C) 2004 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* Licensed under the GPL * Licensed under the GPL
*/ */
#include <errno.h> #include <errno.h>
#include <sysdep/ptrace_user.h> #include "kern_constants.h"
#include "longjmp.h" #include "longjmp.h"
#include "user.h" #include "user.h"
#include "sysdep/ptrace_user.h"
int save_fp_registers(int pid, unsigned long *fp_regs) int save_fp_registers(int pid, unsigned long *fp_regs)
{ {
if(ptrace(PTRACE_GETFPREGS, pid, 0, fp_regs) < 0) if (ptrace(PTRACE_GETFPREGS, pid, 0, fp_regs) < 0)
return -errno; return -errno;
return 0; return 0;
} }
int restore_fp_registers(int pid, unsigned long *fp_regs) int restore_fp_registers(int pid, unsigned long *fp_regs)
{ {
if(ptrace(PTRACE_SETFPREGS, pid, 0, fp_regs) < 0) if (ptrace(PTRACE_SETFPREGS, pid, 0, fp_regs) < 0)
return -errno; return -errno;
return 0; return 0;
} }
int save_fpx_registers(int pid, unsigned long *fp_regs) int save_fpx_registers(int pid, unsigned long *fp_regs)
{ {
if(ptrace(PTRACE_GETFPXREGS, pid, 0, fp_regs) < 0) if (ptrace(PTRACE_GETFPXREGS, pid, 0, fp_regs) < 0)
return -errno; return -errno;
return 0; return 0;
} }
int restore_fpx_registers(int pid, unsigned long *fp_regs) int restore_fpx_registers(int pid, unsigned long *fp_regs)
{ {
if(ptrace(PTRACE_SETFPXREGS, pid, 0, fp_regs) < 0) if (ptrace(PTRACE_SETFPXREGS, pid, 0, fp_regs) < 0)
return -errno; return -errno;
return 0; return 0;
} }
unsigned long get_thread_reg(int reg, jmp_buf *buf) unsigned long get_thread_reg(int reg, jmp_buf *buf)
{ {
switch(reg){ switch (reg) {
case EIP: return buf[0]->__eip; case EIP:
case UESP: return buf[0]->__esp; return buf[0]->__eip;
case EBP: return buf[0]->__ebp; case UESP:
return buf[0]->__esp;
case EBP:
return buf[0]->__ebp;
default: default:
printk("get_thread_regs - unknown register %d\n", reg); printk(UM_KERN_ERR "get_thread_regs - unknown register %d\n",
reg);
return 0; return 0;
} }
} }
......
...@@ -3,14 +3,14 @@ ...@@ -3,14 +3,14 @@
# #
obj-y = bug.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \ obj-y = bug.o bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \
ptrace_user.o setjmp.o signal.o sigcontext.o stub.o stub_segv.o \ ptrace_user.o setjmp.o signal.o stub.o stub_segv.o syscalls.o sysrq.o \
syscalls.o sysrq.o sys_call_table.o tls.o sys_call_table.o tls.o
subarch-obj-y = lib/bitops_32.o lib/semaphore_32.o lib/string_32.o subarch-obj-y = lib/bitops_32.o lib/semaphore_32.o lib/string_32.o
subarch-obj-$(CONFIG_HIGHMEM) += mm/highmem_32.o subarch-obj-$(CONFIG_HIGHMEM) += mm/highmem_32.o
subarch-obj-$(CONFIG_MODULES) += kernel/module_32.o subarch-obj-$(CONFIG_MODULES) += kernel/module_32.o
USER_OBJS := bugs.o ptrace_user.o sigcontext.o fault.o USER_OBJS := bugs.o ptrace_user.o fault.o
USER_OBJS += user-offsets.s USER_OBJS += user-offsets.s
extra-y += user-offsets.s extra-y += user-offsets.s
......
/*
* Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
* Licensed under the GPL
*/
#include <stddef.h>
#include <string.h>
#include <asm/ptrace.h>
#include <asm/sigcontext.h>
#include "sysdep/ptrace.h"
#include "kern_util.h"
void sc_to_sc(void *to_ptr, void *from_ptr)
{
struct sigcontext *to = to_ptr, *from = from_ptr;
memcpy(to, from, sizeof(*to) + sizeof(struct _fpstate));
if(from->fpstate != NULL)
to->fpstate = (struct _fpstate *) (to + 1);
}
unsigned long *sc_sigmask(void *sc_ptr)
{
struct sigcontext *sc = sc_ptr;
return &sc->oldmask;
}
int sc_get_fpregs(unsigned long buf, void *sc_ptr)
{
struct sigcontext *sc = sc_ptr;
struct _fpstate *from = sc->fpstate, *to = (struct _fpstate *) buf;
int err = 0;
if(from == NULL){
err |= clear_user_proc(&to->cw, sizeof(to->cw));
err |= clear_user_proc(&to->sw, sizeof(to->sw));
err |= clear_user_proc(&to->tag, sizeof(to->tag));
err |= clear_user_proc(&to->ipoff, sizeof(to->ipoff));
err |= clear_user_proc(&to->cssel, sizeof(to->cssel));
err |= clear_user_proc(&to->dataoff, sizeof(to->dataoff));
err |= clear_user_proc(&to->datasel, sizeof(to->datasel));
err |= clear_user_proc(&to->_st, sizeof(to->_st));
}
else {
err |= copy_to_user_proc(&to->cw, &from->cw, sizeof(to->cw));
err |= copy_to_user_proc(&to->sw, &from->sw, sizeof(to->sw));
err |= copy_to_user_proc(&to->tag, &from->tag,
sizeof(to->tag));
err |= copy_to_user_proc(&to->ipoff, &from->ipoff,
sizeof(to->ipoff));
err |= copy_to_user_proc(&to->cssel,& from->cssel,
sizeof(to->cssel));
err |= copy_to_user_proc(&to->dataoff, &from->dataoff,
sizeof(to->dataoff));
err |= copy_to_user_proc(&to->datasel, &from->datasel,
sizeof(to->datasel));
err |= copy_to_user_proc(to->_st, from->_st, sizeof(to->_st));
}
return(err);
}
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
# #
obj-y = bug.o bugs.o delay.o fault.o ldt.o mem.o ptrace.o ptrace_user.o \ obj-y = bug.o bugs.o delay.o fault.o ldt.o mem.o ptrace.o ptrace_user.o \
setjmp.o sigcontext.o signal.o stub.o stub_segv.o syscalls.o \ setjmp.o signal.o stub.o stub_segv.o syscalls.o syscall_table.o \
syscall_table.o sysrq.o ksyms.o tls.o sysrq.o ksyms.o tls.o
obj-$(CONFIG_MODULES) += um_module.o obj-$(CONFIG_MODULES) += um_module.o
...@@ -15,7 +15,7 @@ subarch-obj-$(CONFIG_MODULES) += kernel/module_64.o ...@@ -15,7 +15,7 @@ subarch-obj-$(CONFIG_MODULES) += kernel/module_64.o
ldt-y = ../sys-i386/ldt.o ldt-y = ../sys-i386/ldt.o
USER_OBJS := ptrace_user.o sigcontext.o USER_OBJS := ptrace_user.o
USER_OBJS += user-offsets.s USER_OBJS += user-offsets.s
extra-y += user-offsets.s extra-y += user-offsets.s
......
/* /*
* Copyright 2003 PathScale, Inc. * Copyright 2003 PathScale, Inc.
* Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* *
* Licensed under the GPL * Licensed under the GPL
*/ */
...@@ -12,17 +13,10 @@ ...@@ -12,17 +13,10 @@
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/elf.h> #include <asm/elf.h>
/* XXX x86_64 */ /*
unsigned long not_ss; * determines which flags the user has access to.
unsigned long not_ds; * 1 = access 0 = no access
unsigned long not_es; */
#define SC_SS(r) (not_ss)
#define SC_DS(r) (not_ds)
#define SC_ES(r) (not_es)
/* determines which flags the user has access to. */
/* 1 = access 0 = no access */
#define FLAG_MASK 0x44dd5UL #define FLAG_MASK 0x44dd5UL
int putreg(struct task_struct *child, int regno, unsigned long value) int putreg(struct task_struct *child, int regno, unsigned long value)
...@@ -66,20 +60,21 @@ int putreg(struct task_struct *child, int regno, unsigned long value) ...@@ -66,20 +60,21 @@ int putreg(struct task_struct *child, int regno, unsigned long value)
int poke_user(struct task_struct *child, long addr, long data) int poke_user(struct task_struct *child, long addr, long data)
{ {
if ((addr & 3) || addr < 0) if ((addr & 3) || addr < 0)
return -EIO; return -EIO;
if (addr < MAX_REG_OFFSET) if (addr < MAX_REG_OFFSET)
return putreg(child, addr, data); return putreg(child, addr, data);
else if((addr >= offsetof(struct user, u_debugreg[0])) && else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
(addr <= offsetof(struct user, u_debugreg[7]))){ (addr <= offsetof(struct user, u_debugreg[7]))){
addr -= offsetof(struct user, u_debugreg[0]); addr -= offsetof(struct user, u_debugreg[0]);
addr = addr >> 2; addr = addr >> 2;
if((addr == 4) || (addr == 5)) return -EIO; if ((addr == 4) || (addr == 5))
child->thread.arch.debugregs[addr] = data; return -EIO;
return 0; child->thread.arch.debugregs[addr] = data;
} return 0;
return -EIO; }
return -EIO;
} }
unsigned long getreg(struct task_struct *child, int regno) unsigned long getreg(struct task_struct *child, int regno)
...@@ -107,29 +102,22 @@ unsigned long getreg(struct task_struct *child, int regno) ...@@ -107,29 +102,22 @@ unsigned long getreg(struct task_struct *child, int regno)
int peek_user(struct task_struct *child, long addr, long data) int peek_user(struct task_struct *child, long addr, long data)
{ {
/* read the word at location addr in the USER area. */ /* read the word at location addr in the USER area. */
unsigned long tmp; unsigned long tmp;
if ((addr & 3) || addr < 0)
return -EIO;
tmp = 0; /* Default return condition */
if(addr < MAX_REG_OFFSET){
tmp = getreg(child, addr);
}
else if((addr >= offsetof(struct user, u_debugreg[0])) &&
(addr <= offsetof(struct user, u_debugreg[7]))){
addr -= offsetof(struct user, u_debugreg[0]);
addr = addr >> 2;
tmp = child->thread.arch.debugregs[addr];
}
return put_user(tmp, (unsigned long *) data);
}
void arch_switch(void) if ((addr & 3) || addr < 0)
{ return -EIO;
/* XXX
printk("arch_switch\n"); tmp = 0; /* Default return condition */
*/ if (addr < MAX_REG_OFFSET){
tmp = getreg(child, addr);
}
else if ((addr >= offsetof(struct user, u_debugreg[0])) &&
(addr <= offsetof(struct user, u_debugreg[7]))){
addr -= offsetof(struct user, u_debugreg[0]);
addr = addr >> 2;
tmp = child->thread.arch.debugregs[addr];
}
return put_user(tmp, (unsigned long *) data);
} }
/* XXX Mostly copied from sys-i386 */ /* XXX Mostly copied from sys-i386 */
...@@ -139,21 +127,21 @@ int is_syscall(unsigned long addr) ...@@ -139,21 +127,21 @@ int is_syscall(unsigned long addr)
int n; int n;
n = copy_from_user(&instr, (void __user *) addr, sizeof(instr)); n = copy_from_user(&instr, (void __user *) addr, sizeof(instr));
if(n){ if (n){
/* access_process_vm() grants access to vsyscall and stub, /* access_process_vm() grants access to vsyscall and stub,
* while copy_from_user doesn't. Maybe access_process_vm is * while copy_from_user doesn't. Maybe access_process_vm is
* slow, but that doesn't matter, since it will be called only * slow, but that doesn't matter, since it will be called only
* in case of singlestepping, if copy_from_user failed. * in case of singlestepping, if copy_from_user failed.
*/ */
n = access_process_vm(current, addr, &instr, sizeof(instr), 0); n = access_process_vm(current, addr, &instr, sizeof(instr), 0);
if(n != sizeof(instr)) { if (n != sizeof(instr)) {
printk("is_syscall : failed to read instruction from " printk("is_syscall : failed to read instruction from "
"0x%lx\n", addr); "0x%lx\n", addr);
return(1); return 1;
} }
} }
/* sysenter */ /* sysenter */
return(instr == 0x050f); return instr == 0x050f;
} }
int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child) int get_fpregs(struct user_i387_struct __user *buf, struct task_struct *child)
...@@ -204,14 +192,3 @@ long subarch_ptrace(struct task_struct *child, long request, long addr, ...@@ -204,14 +192,3 @@ long subarch_ptrace(struct task_struct *child, long request, long addr,
return ret; return ret;
} }
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
/*
* Copyright 2003 PathScale, Inc.
*
* Licensed under the GPL
*/
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include "user.h"
void sc_to_sc(void *to_ptr, void *from_ptr)
{
struct sigcontext *to = to_ptr, *from = from_ptr;
int size = sizeof(*to); /* + sizeof(struct _fpstate); */
memcpy(to, from, size);
if(from->fpstate != NULL)
to->fpstate = (struct _fpstate *) (to + 1);
to->fpstate = NULL;
}
unsigned long *sc_sigmask(void *sc_ptr)
{
struct sigcontext *sc = sc_ptr;
return(&sc->oldmask);
}
/* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
/* /*
* Copyright (C) 2003 PathScale, Inc. * Copyright (C) 2003 PathScale, Inc.
* Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* Licensed under the GPL * Licensed under the GPL
*/ */
...@@ -110,7 +111,8 @@ static int copy_sc_to_user(struct sigcontext __user *to, ...@@ -110,7 +111,8 @@ static int copy_sc_to_user(struct sigcontext __user *to,
err |= PUTREG(regs, RDI, to, rdi); err |= PUTREG(regs, RDI, to, rdi);
err |= PUTREG(regs, RSI, to, rsi); err |= PUTREG(regs, RSI, to, rsi);
err |= PUTREG(regs, RBP, to, rbp); err |= PUTREG(regs, RBP, to, rbp);
/* Must use orignal RSP, which is passed in, rather than what's in /*
* Must use orignal RSP, which is passed in, rather than what's in
* the pt_regs, because that's already been updated to point at the * the pt_regs, because that's already been updated to point at the
* signal frame. * signal frame.
*/ */
...@@ -152,7 +154,7 @@ static int copy_sc_to_user(struct sigcontext __user *to, ...@@ -152,7 +154,7 @@ static int copy_sc_to_user(struct sigcontext __user *to,
if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct))) if (copy_to_user(to_fp, &fp, sizeof(struct user_i387_struct)))
return 1; return 1;
return(err); return err;
} }
struct rt_sigframe struct rt_sigframe
...@@ -188,7 +190,8 @@ int setup_signal_stack_si(unsigned long stack_top, int sig, ...@@ -188,7 +190,8 @@ int setup_signal_stack_si(unsigned long stack_top, int sig,
goto out; goto out;
} }
/* Update SP now because the page fault handler refuses to extend /*
* Update SP now because the page fault handler refuses to extend
* the stack if the faulting address is too far below the current * the stack if the faulting address is too far below the current
* SP, which frame now certainly is. If there's an error, the original * SP, which frame now certainly is. If there's an error, the original
* value is restored on the way out. * value is restored on the way out.
...@@ -216,8 +219,10 @@ int setup_signal_stack_si(unsigned long stack_top, int sig, ...@@ -216,8 +219,10 @@ int setup_signal_stack_si(unsigned long stack_top, int sig,
err |= __copy_to_user(&frame->uc.uc_sigmask, set, err |= __copy_to_user(&frame->uc.uc_sigmask, set,
sizeof(*set)); sizeof(*set));
/* Set up to return from userspace. If provided, use a stub /*
already in userspace. */ * Set up to return from userspace. If provided, use a stub
* already in userspace.
*/
/* x86-64 should always use SA_RESTORER. */ /* x86-64 should always use SA_RESTORER. */
if (ka->sa.sa_flags & SA_RESTORER) if (ka->sa.sa_flags & SA_RESTORER)
err |= __put_user(ka->sa.sa_restorer, &frame->pretcode); err |= __put_user(ka->sa.sa_restorer, &frame->pretcode);
...@@ -239,8 +244,10 @@ int setup_signal_stack_si(unsigned long stack_top, int sig, ...@@ -239,8 +244,10 @@ int setup_signal_stack_si(unsigned long stack_top, int sig,
/* In case the signal handler was declared without prototypes */ /* In case the signal handler was declared without prototypes */
PT_REGS_RAX(regs) = 0; PT_REGS_RAX(regs) = 0;
/* This also works for non SA_SIGINFO handlers because they expect the /*
next argument after the signal number on the stack. */ * This also works for non SA_SIGINFO handlers because they expect the
* next argument after the signal number on the stack.
*/
PT_REGS_RSI(regs) = (unsigned long) &frame->info; PT_REGS_RSI(regs) = (unsigned long) &frame->info;
PT_REGS_RDX(regs) = (unsigned long) &frame->uc; PT_REGS_RDX(regs) = (unsigned long) &frame->uc;
PT_REGS_RIP(regs) = (unsigned long) ka->sa.sa_handler; PT_REGS_RIP(regs) = (unsigned long) ka->sa.sa_handler;
...@@ -276,7 +283,7 @@ long sys_rt_sigreturn(struct pt_regs *regs) ...@@ -276,7 +283,7 @@ long sys_rt_sigreturn(struct pt_regs *regs)
/* Avoid ERESTART handling */ /* Avoid ERESTART handling */
PT_REGS_SYSCALL_NR(&current->thread.regs) = -1; PT_REGS_SYSCALL_NR(&current->thread.regs) = -1;
return(PT_REGS_SYSCALL_RET(&current->thread.regs)); return PT_REGS_SYSCALL_RET(&current->thread.regs);
segfault: segfault:
force_sig(SIGSEGV, current); force_sig(SIGSEGV, current);
......
/* /*
* Copyright 2003 PathScale, Inc. * Copyright 2003 PathScale, Inc.
* Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* *
* Licensed under the GPL * Licensed under the GPL
*/ */
...@@ -122,14 +123,3 @@ extern long elf_aux_hwcap; ...@@ -122,14 +123,3 @@ extern long elf_aux_hwcap;
#define SET_PERSONALITY(ex, ibcs2) do ; while(0) #define SET_PERSONALITY(ex, ibcs2) do ; while(0)
#endif #endif
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册