[PATCH] Update MIPS Linux syscalls to match 2.6.35-rc6+

2010-07-29 Thread David Daney
* linux/mips/syscallent.h: Add and update 405 hooks. --- linux/mips/syscallent.h | 650 +-- 1 files changed, 405 insertions(+), 245 deletions(-) diff --git a/linux/mips/syscallent.h b/linux/mips/syscallent.h index e2fe509..6551468 100644 --- a/linux/mi

RE: [PATCH] Fix MIPS n32/n64 compile error in syscall.c

2010-02-09 Thread David Daney
syscall.c will not build under mips-n32 or mips-n64. In syscall_enter() there is a call to ptrace() with an undefined variable 'pid'. This should be replaced with 'tcp->pid'. Attached is a patch that fixes the issue for me. Please apply if approved. Thanks,

[PATCH] Fix MIPS n32/n64 compile error in syscall.c

2010-02-09 Thread David Daney
syscall.c will not build under mips-n32 or mips-n64. In syscall_enter() there is a call to ptrace() with an undefined variable 'pid'. This should be replaced with 'tcp->pid'. Attached is a patch that fixes the issue for me. Please apply if approved. Thanks,