Skip to content

Commit

Permalink
9p: Remove redundant inode uid/gid assignment
Browse files Browse the repository at this point in the history
Remove a redundant update of inode's i_uid and i_gid
after v9fs_get_inode() since the latter already sets up
a new inode and sets the proper uid and gid values.

Signed-off-by: Abhishek Kulkarni <adkulkar@umail.iu.edu>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
  • Loading branch information
Abhishek Kulkarni authored and Eric Van Hensbergen committed Aug 17, 2009
1 parent 1b5ab3e commit 4d3297c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions fs/9p/vfs_super.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ static int v9fs_get_sb(struct file_system_type *fs_type, int flags,
struct v9fs_session_info *v9ses = NULL;
struct p9_wstat *st = NULL;
int mode = S_IRWXUGO | S_ISVTX;
uid_t uid = current_fsuid();
gid_t gid = current_fsgid();
struct p9_fid *fid;
int retval = 0;

Expand Down Expand Up @@ -149,9 +147,6 @@ static int v9fs_get_sb(struct file_system_type *fs_type, int flags,
goto release_sb;
}

inode->i_uid = uid;
inode->i_gid = gid;

root = d_alloc_root(inode);
if (!root) {
iput(inode);
Expand Down

0 comments on commit 4d3297c

Please sign in to comment.