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

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

ext2: replace inode uid,gid,mode init with helper

parent e00117f1
Loading
Loading
Loading
Loading
+4 −8
Original line number Original line Diff line number Diff line
@@ -549,16 +549,12 @@ got:


	sb->s_dirt = 1;
	sb->s_dirt = 1;
	mark_buffer_dirty(bh2);
	mark_buffer_dirty(bh2);
	if (test_opt(sb, GRPID)) {
		inode->i_mode = mode;
		inode->i_uid = current_fsuid();
		inode->i_uid = current_fsuid();
	if (test_opt (sb, GRPID))
		inode->i_gid = dir->i_gid;
	else if (dir->i_mode & S_ISGID) {
		inode->i_gid = dir->i_gid;
		inode->i_gid = dir->i_gid;
		if (S_ISDIR(mode))
			mode |= S_ISGID;
	} else
	} else
		inode->i_gid = current_fsgid();
		inode_init_owner(inode, dir, mode);
	inode->i_mode = mode;


	inode->i_ino = ino;
	inode->i_ino = ino;
	inode->i_blocks = 0;
	inode->i_blocks = 0;