Commit 5fd53833 authored by Linus Torvalds's avatar Linus Torvalds

Annotate kernel/futex.c with user pointer annotations.

parent 25cd22ca
......@@ -448,7 +448,7 @@ long do_futex(unsigned long uaddr, int op, int val, unsigned long timeout)
return ret;
}
asmlinkage long sys_futex(u32 *uaddr, int op, int val, struct timespec *utime)
asmlinkage long sys_futex(u32 __user *uaddr, int op, int val, struct timespec __user *utime)
{
struct timespec t;
unsigned long timeout = MAX_SCHEDULE_TIMEOUT;
......
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