aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/mips/include/asm/ptrace.h6
-rw-r--r--arch/mips/kernel/ptrace32.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/arch/mips/include/asm/ptrace.h b/arch/mips/include/asm/ptrace.h
index cd5e8a47812b..9c22571b160d 100644
--- a/arch/mips/include/asm/ptrace.h
+++ b/arch/mips/include/asm/ptrace.h
@@ -120,6 +120,12 @@ struct pt_watch_regs {
120 120
121struct task_struct; 121struct task_struct;
122 122
123extern int ptrace_getregs(struct task_struct *child, __s64 __user *data);
124extern int ptrace_setregs(struct task_struct *child, __s64 __user *data);
125
126extern int ptrace_getfpregs(struct task_struct *child, __u32 __user *data);
127extern int ptrace_setfpregs(struct task_struct *child, __u32 __user *data);
128
123extern int ptrace_get_watch_regs(struct task_struct *child, 129extern int ptrace_get_watch_regs(struct task_struct *child,
124 struct pt_watch_regs __user *addr); 130 struct pt_watch_regs __user *addr);
125extern int ptrace_set_watch_regs(struct task_struct *child, 131extern int ptrace_set_watch_regs(struct task_struct *child,
diff --git a/arch/mips/kernel/ptrace32.c b/arch/mips/kernel/ptrace32.c
index e45105e3ef00..1ca34104e593 100644
--- a/arch/mips/kernel/ptrace32.c
+++ b/arch/mips/kernel/ptrace32.c
@@ -37,12 +37,6 @@
37#include <asm/uaccess.h> 37#include <asm/uaccess.h>
38#include <asm/bootinfo.h> 38#include <asm/bootinfo.h>
39 39
40int ptrace_getregs(struct task_struct *child, __s64 __user *data);
41int ptrace_setregs(struct task_struct *child, __s64 __user *data);
42
43int ptrace_getfpregs(struct task_struct *child, __u32 __user *data);
44int ptrace_setfpregs(struct task_struct *child, __u32 __user *data);
45
46/* 40/*
47 * Tracing a 32-bit process with a 64-bit strace and vice versa will not 41 * Tracing a 32-bit process with a 64-bit strace and vice versa will not
48 * work. I don't know how to fix this. 42 * work. I don't know how to fix this.