aboutsummaryrefslogtreecommitdiffstats
path: root/fs/9p/vfs_super.c
diff options
context:
space:
mode:
authorAbhishek Kulkarni <adkulkar@umail.iu.edu>2009-07-19 15:41:51 -0400
committerEric Van Hensbergen <ericvh@strongmad.austin.ibm.com>2009-08-17 17:27:58 -0400
commit4d3297ca5bf37ff5956f76fb352e009880aad62d (patch)
tree80cb9648cda0c7d86ea75ea0733f5b05e97beb4c /fs/9p/vfs_super.c
parent1b5ab3e86712b6be38ebbe0d821387c1d8f91d7c (diff)
9p: Remove redundant inode uid/gid assignment
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>
Diffstat (limited to 'fs/9p/vfs_super.c')
-rw-r--r--fs/9p/vfs_super.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/9p/vfs_super.c b/fs/9p/vfs_super.c
index 2495af4ad9a6..072dce094477 100644
--- a/fs/9p/vfs_super.c
+++ b/fs/9p/vfs_super.c
@@ -113,8 +113,6 @@ static int v9fs_get_sb(struct file_system_type *fs_type, int flags,
113 struct v9fs_session_info *v9ses = NULL; 113 struct v9fs_session_info *v9ses = NULL;
114 struct p9_wstat *st = NULL; 114 struct p9_wstat *st = NULL;
115 int mode = S_IRWXUGO | S_ISVTX; 115 int mode = S_IRWXUGO | S_ISVTX;
116 uid_t uid = current_fsuid();
117 gid_t gid = current_fsgid();
118 struct p9_fid *fid; 116 struct p9_fid *fid;
119 int retval = 0; 117 int retval = 0;
120 118
@@ -149,9 +147,6 @@ static int v9fs_get_sb(struct file_system_type *fs_type, int flags,
149 goto release_sb; 147 goto release_sb;
150 } 148 }
151 149
152 inode->i_uid = uid;
153 inode->i_gid = gid;
154
155 root = d_alloc_root(inode); 150 root = d_alloc_root(inode);
156 if (!root) { 151 if (!root) {
157 iput(inode); 152 iput(inode);