提交 c3c4f694 编写于 作者: A Al Viro

do_dentry_open(): close the race with mark_files_ro() in failure exit

we want to take it out of mark_files_ro() reach *before* we start
checking if we ought to drop write access.
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 85d7d618
...@@ -727,6 +727,7 @@ static int do_dentry_open(struct file *f, ...@@ -727,6 +727,7 @@ static int do_dentry_open(struct file *f,
cleanup_all: cleanup_all:
fops_put(f->f_op); fops_put(f->f_op);
file_sb_list_del(f);
if (f->f_mode & FMODE_WRITE) { if (f->f_mode & FMODE_WRITE) {
put_write_access(inode); put_write_access(inode);
if (!special_file(inode->i_mode)) { if (!special_file(inode->i_mode)) {
...@@ -740,7 +741,6 @@ static int do_dentry_open(struct file *f, ...@@ -740,7 +741,6 @@ static int do_dentry_open(struct file *f,
mnt_drop_write(f->f_path.mnt); mnt_drop_write(f->f_path.mnt);
} }
} }
file_sb_list_del(f);
cleanup_file: cleanup_file:
path_put(&f->f_path); path_put(&f->f_path);
f->f_path.mnt = NULL; f->f_path.mnt = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册