projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29756fa
)
[PATCH] ptrace32 trivial __user annotations
author
Al Viro
<viro@ftp.linux.org.uk>
Tue, 10 Oct 2006 21:47:37 +0000
(22:47 +0100)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Tue, 10 Oct 2006 22:37:23 +0000
(15:37 -0700)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/x86_64/ia32/ptrace32.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86_64/ia32/ptrace32.c
b/arch/x86_64/ia32/ptrace32.c
index d18198ed636b59d006bb3b87e68ea0bc50e87ff7..3a7561d4703e6cbd3ff85bc9137b665bed383858 100644
(file)
--- 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)
static long ptrace32_siginfo(unsigned request, u32 pid, u32 addr, u32 data)
{
int ret;
- compat_siginfo_t
*si32 = (compat_siginfo_t *)
compat_ptr(data);
+ compat_siginfo_t
__user *si32 =
compat_ptr(data);
siginfo_t ssi;
- siginfo_t *si = compat_alloc_user_space(sizeof(siginfo_t));
+ siginfo_t
__user
*si = compat_alloc_user_space(sizeof(siginfo_t));
if (request == PTRACE_SETSIGINFO) {
memset(&ssi, 0, sizeof(siginfo_t));
ret = copy_siginfo_from_user32(&ssi, si32);