diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-23 17:36:01 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-26 02:46:11 -0500 |
commit | 21d206819a6f111c77f0a9e920f5efca06dc65fd (patch) | |
tree | 564951cdf932d4fc6790ee3fefbc206517650517 /fs/anon_inodes.c | |
parent | 0e9b10a90f1c30f25dd6f130130240745ab14010 (diff) |
get_empty_filp()/alloc_file() leave both ->f_pos and ->f_version zero
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/anon_inodes.c')
-rw-r--r-- | fs/anon_inodes.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c index a14eb0c1cd8c..47a65df8c871 100644 --- a/fs/anon_inodes.c +++ b/fs/anon_inodes.c | |||
@@ -164,9 +164,7 @@ struct file *anon_inode_getfile(const char *name, | |||
164 | goto err_dput; | 164 | goto err_dput; |
165 | file->f_mapping = anon_inode_inode->i_mapping; | 165 | file->f_mapping = anon_inode_inode->i_mapping; |
166 | 166 | ||
167 | file->f_pos = 0; | ||
168 | file->f_flags = flags & (O_ACCMODE | O_NONBLOCK); | 167 | file->f_flags = flags & (O_ACCMODE | O_NONBLOCK); |
169 | file->f_version = 0; | ||
170 | file->private_data = priv; | 168 | file->private_data = priv; |
171 | 169 | ||
172 | return file; | 170 | return file; |