From 23dc5217d5f6c46de62fb02645a421dd08d5c5b6 Mon Sep 17 00:00:00 2001 From: Al Viro Date: Wed, 26 Sep 2012 21:43:05 -0400 Subject: [PATCH] --- yaml --- r: 329020 b: refs/heads/master c: 63784dd02b2ac85e867be9d6a6f5536c4ff738be h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/fcntl.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index fb7882671409..72f92f809d5e 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 2744c171dbaa0b1ec7639e7d0ff817fba9461a38 +refs/heads/master: 63784dd02b2ac85e867be9d6a6f5536c4ff738be diff --git a/trunk/fs/fcntl.c b/trunk/fs/fcntl.c index 91af39a33af7..8f704291d4ed 100644 --- a/trunk/fs/fcntl.c +++ b/trunk/fs/fcntl.c @@ -149,7 +149,7 @@ pid_t f_getown(struct file *filp) 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 pid *pid; int type; @@ -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) { - 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; int ret = 0; @@ -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) { 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]; int err;