[PATCH 2.6.11-rc5-mm1] mips: fixed do_syscall_trace

From: Yoichi Yuasa
Date: Wed Mar 02 2005 - 17:36:42 EST


This patch had fixed an argument of audit_syscall_entry.
This patch is only for 2.6.11-rc5-mm1.

CC arch/mips/kernel/ptrace.o
arch/mips/kernel/ptrace.c: In function 'do_syscall_trace':
arch/mips/kernel/ptrace.c:310: warning: implicit declaration of function 'audit_syscall_entry'
arch/mips/kernel/ptrace.c:310: error: 'struct pt_regs' has no member named 'orig_eax'
arch/mips/kernel/ptrace.c:314: warning: implicit declaration of function 'audit_syscall_exit'
make[1]: *** [arch/mips/kernel/ptrace.o] Error 1
make: *** [arch/mips/kernel] Error 2

Yoichi

Signed-off-by: Yoichi Yuasa <yuasa@xxxxxxxxxxxxxx>

diff -urN -X dontdiff b-orig/arch/mips/kernel/ptrace.c b/arch/mips/kernel/ptrace.c
--- b-orig/arch/mips/kernel/ptrace.c Fri Feb 25 01:40:47 2005
+++ b/arch/mips/kernel/ptrace.c Thu Mar 3 06:47:36 2005
@@ -21,6 +21,7 @@
#include <linux/mm.h>
#include <linux/errno.h>
#include <linux/ptrace.h>
+#include <linux/audit.h>
#include <linux/smp.h>
#include <linux/smp_lock.h>
#include <linux/user.h>
@@ -307,7 +308,7 @@
{
if (unlikely(current->audit_context)) {
if (!entryexit)
- audit_syscall_entry(current, regs->orig_eax,
+ audit_syscall_entry(current, regs->regs[2],
regs->regs[4], regs->regs[5],
regs->regs[6], regs->regs[7]);
else

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/