Skip to content

Commit

Permalink
ufs: replace inode uid,gid,mode initialization with helper function
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Dmitry Monakhov authored and Al Viro committed May 21, 2010
1 parent a6c5a03 commit be8ded5
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions fs/ufs/ialloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,7 @@ struct inode * ufs_new_inode(struct inode * dir, int mode)
sb->s_dirt = 1;

inode->i_ino = cg * uspi->s_ipg + bit;
inode->i_mode = mode;
inode->i_uid = current_fsuid();
if (dir->i_mode & S_ISGID) {
inode->i_gid = dir->i_gid;
if (S_ISDIR(mode))
inode->i_mode |= S_ISGID;
} else
inode->i_gid = current_fsgid();

inode_init_owner(inode, dir, mode);
inode->i_blocks = 0;
inode->i_generation = 0;
inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC;
Expand Down

0 comments on commit be8ded5

Please sign in to comment.