Commit bc771636 authored by David S. Miller's avatar David S. Miller

[SPARC64]: Add missing __user annotation to sys_sparc32.c

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a81d1659
...@@ -1749,7 +1749,8 @@ asmlinkage long compat_sys_waitid(u32 which, u32 pid, ...@@ -1749,7 +1749,8 @@ asmlinkage long compat_sys_waitid(u32 which, u32 pid,
set_fs (KERNEL_DS); set_fs (KERNEL_DS);
ret = sys_waitid(which, pid, (siginfo_t __user *) &info, ret = sys_waitid(which, pid, (siginfo_t __user *) &info,
options, uru ? &ru : NULL); options,
uru ? (struct rusage __user *) &ru : NULL);
set_fs (old_fs); set_fs (old_fs);
if (ret < 0 || info.si_signo == 0) if (ret < 0 || info.si_signo == 0)
......
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