diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2018-07-18 15:44:44 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2018-07-18 15:44:44 +0200 |
commit | fb16043b46831a75c9b076a7262ae035290b0409 (patch) | |
tree | aede88128c9d4ec05c36ac0864d3e01e2f916c34 /include/linux/fs.h | |
parent | 573e1784817ca1f13d76a0df636929e983e5de3c (diff) | |
download | lwn-fb16043b46831a75c9b076a7262ae035290b0409.tar.gz lwn-fb16043b46831a75c9b076a7262ae035290b0409.zip |
vfs: remove open_flags from d_real()
Opening regular files on overlayfs is now handled via ovl_open(). Remove
the now unused "open_flags" argument from d_op->d_real() and the d_real()
helper.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 1cbcf37c45e1..1fa63d184d1f 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1239,7 +1239,7 @@ static inline struct inode *file_inode(const struct file *f) static inline struct dentry *file_dentry(const struct file *file) { - return d_real(file->f_path.dentry, file_inode(file), 0); + return d_real(file->f_path.dentry, file_inode(file)); } static inline int locks_lock_file_wait(struct file *filp, struct file_lock *fl) |