Commit 63784dd0 authored by Al Viro's avatar Al Viro

fcntl: fix misannotations

__user * != * __user...
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 2744c171
...@@ -149,7 +149,7 @@ pid_t f_getown(struct file *filp) ...@@ -149,7 +149,7 @@ pid_t f_getown(struct file *filp)
static int f_setown_ex(struct file *filp, unsigned long arg) static int f_setown_ex(struct file *filp, unsigned long arg)
{ {
struct f_owner_ex * __user owner_p = (void * __user)arg; struct f_owner_ex __user *owner_p = (void __user *)arg;
struct f_owner_ex owner; struct f_owner_ex owner;
struct pid *pid; struct pid *pid;
int type; int type;
...@@ -189,7 +189,7 @@ static int f_setown_ex(struct file *filp, unsigned long arg) ...@@ -189,7 +189,7 @@ static int f_setown_ex(struct file *filp, unsigned long arg)
static int f_getown_ex(struct file *filp, unsigned long arg) static int f_getown_ex(struct file *filp, unsigned long arg)
{ {
struct f_owner_ex * __user owner_p = (void * __user)arg; struct f_owner_ex __user *owner_p = (void __user *)arg;
struct f_owner_ex owner; struct f_owner_ex owner;
int ret = 0; int ret = 0;
...@@ -227,7 +227,7 @@ static int f_getown_ex(struct file *filp, unsigned long arg) ...@@ -227,7 +227,7 @@ static int f_getown_ex(struct file *filp, unsigned long arg)
static int f_getowner_uids(struct file *filp, unsigned long arg) static int f_getowner_uids(struct file *filp, unsigned long arg)
{ {
struct user_namespace *user_ns = current_user_ns(); struct user_namespace *user_ns = current_user_ns();
uid_t * __user dst = (void * __user)arg; uid_t __user *dst = (void __user *)arg;
uid_t src[2]; uid_t src[2];
int err; int err;
......
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