]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
vfs: don't open real
authorMiklos Szeredi <mszeredi@redhat.com>
Fri, 6 Jul 2018 21:57:06 +0000 (23:57 +0200)
committerMiklos Szeredi <mszeredi@redhat.com>
Wed, 18 Jul 2018 13:44:42 +0000 (15:44 +0200)
Let overlayfs do its thing when opening a file.

This enables stacking and fixes the corner case when a file is opened for
read, modified through a writable open, and data is read from the read-only
file.  After this patch the read-only open will not return stale data even
in this case.

Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/open.c

index 9c6617dbb2c06a4705b0fe2d66f7dcbc688172de..fed24862ef8392e17761aac96cb26f27f36dcf29 100644 (file)
--- a/fs/open.c
+++ b/fs/open.c
@@ -893,13 +893,8 @@ EXPORT_SYMBOL(file_path);
  */
 int vfs_open(const struct path *path, struct file *file)
 {
-       struct dentry *dentry = d_real(path->dentry, NULL, file->f_flags, 0);
-
-       if (IS_ERR(dentry))
-               return PTR_ERR(dentry);
-
        file->f_path = *path;
-       return do_dentry_open(file, d_backing_inode(dentry), NULL);
+       return do_dentry_open(file, d_backing_inode(path->dentry), NULL);
 }
 
 struct file *dentry_open(const struct path *path, int flags,