diff options
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/kernel/kprobes.c | 2 | ||||
-rw-r--r-- | arch/avr32/kernel/ptrace.c | 5 | ||||
-rw-r--r-- | arch/avr32/mm/fault.c | 2 |
3 files changed, 3 insertions, 6 deletions
diff --git a/arch/avr32/kernel/kprobes.c b/arch/avr32/kernel/kprobes.c index 4942ee662e0b..20b1c9d8f945 100644 --- a/arch/avr32/kernel/kprobes.c +++ b/arch/avr32/kernel/kprobes.c | |||
@@ -22,6 +22,8 @@ DEFINE_PER_CPU(struct kprobe *, current_kprobe); | |||
22 | static unsigned long kprobe_status; | 22 | static unsigned long kprobe_status; |
23 | static struct pt_regs jprobe_saved_regs; | 23 | static struct pt_regs jprobe_saved_regs; |
24 | 24 | ||
25 | struct kretprobe_blackpoint kretprobe_blacklist[] = {{NULL, NULL}}; | ||
26 | |||
25 | int __kprobes arch_prepare_kprobe(struct kprobe *p) | 27 | int __kprobes arch_prepare_kprobe(struct kprobe *p) |
26 | { | 28 | { |
27 | int ret = 0; | 29 | int ret = 0; |
diff --git a/arch/avr32/kernel/ptrace.c b/arch/avr32/kernel/ptrace.c index 39060cbeb2a3..9e16b8a447f2 100644 --- a/arch/avr32/kernel/ptrace.c +++ b/arch/avr32/kernel/ptrace.c | |||
@@ -227,11 +227,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
227 | ret = 0; | 227 | ret = 0; |
228 | break; | 228 | break; |
229 | 229 | ||
230 | /* Detach a process that was attached */ | ||
231 | case PTRACE_DETACH: | ||
232 | ret = ptrace_detach(child, data); | ||
233 | break; | ||
234 | |||
235 | case PTRACE_GETREGS: | 230 | case PTRACE_GETREGS: |
236 | ret = ptrace_getregs(child, (void __user *)data); | 231 | ret = ptrace_getregs(child, (void __user *)data); |
237 | break; | 232 | break; |
diff --git a/arch/avr32/mm/fault.c b/arch/avr32/mm/fault.c index ae2d2c593b2b..11472f8701bd 100644 --- a/arch/avr32/mm/fault.c +++ b/arch/avr32/mm/fault.c | |||
@@ -216,7 +216,7 @@ out_of_memory: | |||
216 | } | 216 | } |
217 | printk("VM: Killing process %s\n", tsk->comm); | 217 | printk("VM: Killing process %s\n", tsk->comm); |
218 | if (user_mode(regs)) | 218 | if (user_mode(regs)) |
219 | do_exit(SIGKILL); | 219 | do_group_exit(SIGKILL); |
220 | goto no_context; | 220 | goto no_context; |
221 | 221 | ||
222 | do_sigbus: | 222 | do_sigbus: |