aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/anon_inodes.c2
-rw-r--r--fs/open.c1
2 files changed, 0 insertions, 3 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;
diff --git a/fs/open.c b/fs/open.c
index 97a237f67b72..62f907e3bc36 100644
--- a/fs/open.c
+++ b/fs/open.c
@@ -699,7 +699,6 @@ static int do_dentry_open(struct file *f,
699 } 699 }
700 700
701 f->f_mapping = inode->i_mapping; 701 f->f_mapping = inode->i_mapping;
702 f->f_pos = 0;
703 file_sb_list_add(f, inode->i_sb); 702 file_sb_list_add(f, inode->i_sb);
704 703
705 if (unlikely(f->f_mode & FMODE_PATH)) { 704 if (unlikely(f->f_mode & FMODE_PATH)) {