Skip to content

Commit

Permalink
userns: Convert the qnx6 filesystem to use kuid/kgid where appropriate
Browse files Browse the repository at this point in the history
Cc: Kai Bankett <[email protected]>
Acked-by: Serge Hallyn <[email protected]>
Signed-off-by: Eric W. Biederman <[email protected]>
  • Loading branch information
ebiederm committed Sep 21, 2012
1 parent 511728d commit 85a03d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fs/qnx6/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -574,8 +574,8 @@ struct inode *qnx6_iget(struct super_block *sb, unsigned ino)
raw_inode = ((struct qnx6_inode_entry *)page_address(page)) + offs;

inode->i_mode = fs16_to_cpu(sbi, raw_inode->di_mode);
inode->i_uid = (uid_t)fs32_to_cpu(sbi, raw_inode->di_uid);
inode->i_gid = (gid_t)fs32_to_cpu(sbi, raw_inode->di_gid);
i_uid_write(inode, (uid_t)fs32_to_cpu(sbi, raw_inode->di_uid));
i_gid_write(inode, (gid_t)fs32_to_cpu(sbi, raw_inode->di_gid));
inode->i_size = fs64_to_cpu(sbi, raw_inode->di_size);
inode->i_mtime.tv_sec = fs32_to_cpu(sbi, raw_inode->di_mtime);
inode->i_mtime.tv_nsec = 0;
Expand Down
1 change: 0 additions & 1 deletion init/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,6 @@ config UIDGID_CONVERTED
depends on NFSD = n
depends on NFS_FS = n
depends on OCFS2_FS = n
depends on QNX6FS_FS = n
depends on REISERFS_FS = n
depends on SQUASHFS = n
depends on SYSV_FS = n
Expand Down

0 comments on commit 85a03d1

Please sign in to comment.