Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329020
b: refs/heads/master
c: 63784dd
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed Sep 27, 2012
1 parent 017bf2d commit 23dc521
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2744c171dbaa0b1ec7639e7d0ff817fba9461a38
refs/heads/master: 63784dd02b2ac85e867be9d6a6f5536c4ff738be
6 changes: 3 additions & 3 deletions trunk/fs/fcntl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 23dc521

Please sign in to comment.