Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 197978
b: refs/heads/master
c: ffba102
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Monakhov authored and Al Viro committed May 21, 2010
1 parent 38a7403 commit edfd8f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e00117f14f68d9e54c8aa3d52ebdc76cdbbc4f87
refs/heads/master: ffba102d75a2e79ac9754841c6cf4a6dd6892c42
12 changes: 4 additions & 8 deletions trunk/fs/ext2/ialloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -549,16 +549,12 @@ struct inode *ext2_new_inode(struct inode *dir, int mode)

sb->s_dirt = 1;
mark_buffer_dirty(bh2);
inode->i_uid = current_fsuid();
if (test_opt (sb, GRPID))
if (test_opt(sb, GRPID)) {
inode->i_mode = mode;
inode->i_uid = current_fsuid();
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;
Expand Down

0 comments on commit edfd8f3

Please sign in to comment.