diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-10 17:47:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-10 18:37:23 -0400 |
commit | 86f93336543314ffc46787845b631029cf11d6f8 (patch) | |
tree | e6437d5435e5ffaabdb67de774490f4e1ce8a354 /arch/x86_64 | |
parent | 29756fa3287ff702535e459e7ca8c6038f6e9ae3 (diff) |
[PATCH] ptrace32 trivial __user annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/ia32/ptrace32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/ia32/ptrace32.c b/arch/x86_64/ia32/ptrace32.c index d18198ed636b..3a7561d4703e 100644 --- a/arch/x86_64/ia32/ptrace32.c +++ b/arch/x86_64/ia32/ptrace32.c | |||
@@ -205,9 +205,9 @@ static int getreg32(struct task_struct *child, unsigned regno, u32 *val) | |||
205 | static long ptrace32_siginfo(unsigned request, u32 pid, u32 addr, u32 data) | 205 | static long ptrace32_siginfo(unsigned request, u32 pid, u32 addr, u32 data) |
206 | { | 206 | { |
207 | int ret; | 207 | int ret; |
208 | compat_siginfo_t *si32 = (compat_siginfo_t *)compat_ptr(data); | 208 | compat_siginfo_t __user *si32 = compat_ptr(data); |
209 | siginfo_t ssi; | 209 | siginfo_t ssi; |
210 | siginfo_t *si = compat_alloc_user_space(sizeof(siginfo_t)); | 210 | siginfo_t __user *si = compat_alloc_user_space(sizeof(siginfo_t)); |
211 | if (request == PTRACE_SETSIGINFO) { | 211 | if (request == PTRACE_SETSIGINFO) { |
212 | memset(&ssi, 0, sizeof(siginfo_t)); | 212 | memset(&ssi, 0, sizeof(siginfo_t)); |
213 | ret = copy_siginfo_from_user32(&ssi, si32); | 213 | ret = copy_siginfo_from_user32(&ssi, si32); |