Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abf5d08a authored by Dmitry Monakhov's avatar Dmitry Monakhov Committed by Al Viro
Browse files

ubifs: replace inode uid,gid,mode initialization with helper function

parent 85640bd9
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -104,14 +104,7 @@ struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir,
	 */
	inode->i_flags |= (S_NOCMTIME);

	inode->i_uid = current_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_fsgid();
	inode->i_mode = mode;
	inode_init_owner(inode, dir, mode);
	inode->i_mtime = inode->i_atime = inode->i_ctime =
			 ubifs_current_time(inode);
	inode->i_mapping->nrpages = 0;