From: Dmitry Monakhov Date: Thu, 4 Mar 2010 14:31:48 +0000 (+0300) Subject: exofs: replace inode uid,gid,mode initialization with helper function X-Git-Tag: v5.15~29529^2~22 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e00117f14f68d9e54c8aa3d52ebdc76cdbbc4f87;p=mirror_ubuntu-kernels.git exofs: replace inode uid,gid,mode initialization with helper function Ack-by: Boaz Harrosh Signed-off-by: Dmitry Monakhov Signed-off-by: Al Viro --- diff --git a/fs/exofs/inode.c b/fs/exofs/inode.c index 76d2a79ef93e..d7c6afa79754 100644 --- a/fs/exofs/inode.c +++ b/fs/exofs/inode.c @@ -1123,16 +1123,7 @@ struct inode *exofs_new_inode(struct inode *dir, int mode) sbi = sb->s_fs_info; sb->s_dirt = 1; - inode->i_uid = current->cred->fsuid; - if (dir->i_mode & S_ISGID) { - inode->i_gid = dir->i_gid; - if (S_ISDIR(mode)) - mode |= S_ISGID; - } else { - inode->i_gid = current->cred->fsgid; - } - inode->i_mode = mode; - + inode_init_owner(inode, dir, mode); inode->i_ino = sbi->s_nextid++; inode->i_blkbits = EXOFS_BLKSHIFT; inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;