forked from Minki/linux
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>
This commit is contained in:
parent
a0eb3a05a8
commit
9a11f4513c
@ -30,7 +30,8 @@ static struct inode *xenfs_make_inode(struct super_block *sb, int mode)
|
||||
|
||||
if (ret) {
|
||||
ret->i_mode = mode;
|
||||
ret->i_uid = ret->i_gid = 0;
|
||||
ret->i_uid = GLOBAL_ROOT_UID;
|
||||
ret->i_gid = GLOBAL_ROOT_GID;
|
||||
ret->i_blocks = 0;
|
||||
ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
|
||||
}
|
||||
|
@ -932,8 +932,6 @@ config UIDGID_CONVERTED
|
||||
depends on NET_9P = n
|
||||
|
||||
# Filesystems
|
||||
depends on XENFS = n
|
||||
|
||||
depends on 9P_FS = n
|
||||
depends on ADFS_FS = n
|
||||
depends on AFFS_FS = n
|
||||
|
Loading…
Reference in New Issue
Block a user