diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2012-02-07 19:29:19 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2012-09-21 06:13:06 -0400 |
commit | 9a11f4513c2e308e0025a55b465d377438606445 (patch) | |
tree | cb28d0f64a5510f3ad7748bd2ab84c8e0cad2e16 /drivers/xen | |
parent | a0eb3a05a8cbe9cd1a41dde3d1b2e5bcc10634f2 (diff) |
userns: Convert xenfs to use kuid and kgid where appropriate
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/xenfs/super.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/xen/xenfs/super.c b/drivers/xen/xenfs/super.c index a84b53c01436..459b9ac45cf5 100644 --- a/drivers/xen/xenfs/super.c +++ b/drivers/xen/xenfs/super.c | |||
@@ -30,7 +30,8 @@ static struct inode *xenfs_make_inode(struct super_block *sb, int mode) | |||
30 | 30 | ||
31 | if (ret) { | 31 | if (ret) { |
32 | ret->i_mode = mode; | 32 | ret->i_mode = mode; |
33 | ret->i_uid = ret->i_gid = 0; | 33 | ret->i_uid = GLOBAL_ROOT_UID; |
34 | ret->i_gid = GLOBAL_ROOT_GID; | ||
34 | ret->i_blocks = 0; | 35 | ret->i_blocks = 0; |
35 | ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME; | 36 | ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME; |
36 | } | 37 | } |