Loading fs/ext2/ialloc.c +4 −8 Original line number Diff line number Diff line Loading @@ -549,16 +549,12 @@ struct inode *ext2_new_inode(struct inode *dir, int mode) sb->s_dirt = 1; mark_buffer_dirty(bh2); if (test_opt(sb, GRPID)) { inode->i_mode = mode; 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; 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_ino = ino; inode->i_blocks = 0; Loading Loading
fs/ext2/ialloc.c +4 −8 Original line number Diff line number Diff line Loading @@ -549,16 +549,12 @@ struct inode *ext2_new_inode(struct inode *dir, int mode) sb->s_dirt = 1; mark_buffer_dirty(bh2); if (test_opt(sb, GRPID)) { inode->i_mode = mode; 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; 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_ino = ino; inode->i_blocks = 0; Loading