mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
ubifs: replace inode uid,gid,mode initialization with helper function
Acked-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
85640bd9d4
commit
abf5d08aca
@ -104,14 +104,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir,
|
|||||||
*/
|
*/
|
||||||
inode->i_flags |= (S_NOCMTIME);
|
inode->i_flags |= (S_NOCMTIME);
|
||||||
|
|
||||||
inode->i_uid = current_fsuid();
|
inode_init_owner(inode, dir, mode);
|
||||||
if (dir->i_mode & S_ISGID) {
|
|
||||||
inode->i_gid = dir->i_gid;
|
|
||||||
if (S_ISDIR(mode))
|
|
||||||
mode |= S_ISGID;
|
|
||||||
} else
|
|
||||||
inode->i_gid = current_fsgid();
|
|
||||||
inode->i_mode = mode;
|
|
||||||
inode->i_mtime = inode->i_atime = inode->i_ctime =
|
inode->i_mtime = inode->i_atime = inode->i_ctime =
|
||||||
ubifs_current_time(inode);
|
ubifs_current_time(inode);
|
||||||
inode->i_mapping->nrpages = 0;
|
inode->i_mapping->nrpages = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user