diff options
author | Namhyung Kim <[email protected]> | 2010-10-27 15:33:59 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2010-10-27 18:03:11 -0700 |
commit | 1cb4953c608d01d8ea522e2cf379e5e90f06d7a3 (patch) | |
tree | 8d75c9aa2cc2d4a94b184f9e7aeb62fab35fbe41 | |
parent | 261bb92054b9e0835c176a27967dd9eb326d010c (diff) |
ptrace: cleanup arch_ptrace() on parisc
Add missing __user markup on the argument of put_user().
Signed-off-by: Namhyung Kim <[email protected]>
Cc: Kyle McMartin <[email protected]>
Cc: Helge Deller <[email protected]>
Cc: "James E.J. Bottomley" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | arch/parisc/kernel/ptrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/ptrace.c b/arch/parisc/kernel/ptrace.c index 03920db4af45..2905b1f52d30 100644 --- a/arch/parisc/kernel/ptrace.c +++ b/arch/parisc/kernel/ptrace.c @@ -125,7 +125,7 @@ long arch_ptrace(struct task_struct *child, long request, addr >= sizeof(struct pt_regs)) break; tmp = *(unsigned long *) ((char *) task_regs(child) + addr); - ret = put_user(tmp, (unsigned long *) data); + ret = put_user(tmp, (unsigned long __user *) data); break; /* Write the word at location addr in the USER area. This will need |