mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-17 23:25:46 +08:00
userns: Convert cramfs to use kuid/kgid where appropriate
Acked-by: Serge Hallyn <serge.hallyn@canonical.com> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
This commit is contained in:
parent
31aba059bb
commit
a7d9cfe97b
@ -90,8 +90,8 @@ static struct inode *get_cramfs_inode(struct super_block *sb,
|
|||||||
}
|
}
|
||||||
|
|
||||||
inode->i_mode = cramfs_inode->mode;
|
inode->i_mode = cramfs_inode->mode;
|
||||||
inode->i_uid = cramfs_inode->uid;
|
i_uid_write(inode, cramfs_inode->uid);
|
||||||
inode->i_gid = cramfs_inode->gid;
|
i_gid_write(inode, cramfs_inode->gid);
|
||||||
|
|
||||||
/* if the lower 2 bits are zero, the inode contains data */
|
/* if the lower 2 bits are zero, the inode contains data */
|
||||||
if (!(inode->i_ino & 3)) {
|
if (!(inode->i_ino & 3)) {
|
||||||
|
@ -941,7 +941,6 @@ config UIDGID_CONVERTED
|
|||||||
depends on CEPH_FS = n
|
depends on CEPH_FS = n
|
||||||
depends on CIFS = n
|
depends on CIFS = n
|
||||||
depends on CODA_FS = n
|
depends on CODA_FS = n
|
||||||
depends on CRAMFS = n
|
|
||||||
depends on ECRYPT_FS = n
|
depends on ECRYPT_FS = n
|
||||||
depends on EFS_FS = n
|
depends on EFS_FS = n
|
||||||
depends on EXOFS_FS = n
|
depends on EXOFS_FS = n
|
||||||
|
Loading…
Reference in New Issue
Block a user