Commit c3508858 authored by Al Viro's avatar Al Viro

[PATCH] fallout from ptrace consolidation patch: cris/arch-v10

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 7be7cbf6
...@@ -202,18 +202,18 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) ...@@ -202,18 +202,18 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
int i; int i;
unsigned long tmp; unsigned long tmp;
ret = 0;
for (i = 0; i <= PT_MAX; i++) { for (i = 0; i <= PT_MAX; i++) {
tmp = get_reg(child, i); tmp = get_reg(child, i);
if (put_user(tmp, datap)) { if (put_user(tmp, datap)) {
ret = -EFAULT; ret = -EFAULT;
goto out_tsk; break;
} }
data += sizeof(long); data += sizeof(long);
} }
ret = 0;
break; break;
} }
...@@ -222,10 +222,11 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) ...@@ -222,10 +222,11 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
int i; int i;
unsigned long tmp; unsigned long tmp;
ret = 0;
for (i = 0; i <= PT_MAX; i++) { for (i = 0; i <= PT_MAX; i++) {
if (get_user(tmp, datap)) { if (get_user(tmp, datap)) {
ret = -EFAULT; ret = -EFAULT;
goto out_tsk; break;
} }
if (i == PT_DCCR) { if (i == PT_DCCR) {
...@@ -237,7 +238,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) ...@@ -237,7 +238,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
data += sizeof(long); data += sizeof(long);
} }
ret = 0;
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment