diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2022-08-04 19:11:15 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2022-09-01 23:38:07 +0200 |
commit | 2d3430875a3a9761fcbd10aed4396b464ed5078c (patch) | |
tree | 8752c2620e1b1c8d25bc3461ccb784881e8ccf4a /fs/overlayfs/file.c | |
parent | fs/notify: constify path (diff) | |
download | linux-2d3430875a3a9761fcbd10aed4396b464ed5078c.tar.xz linux-2d3430875a3a9761fcbd10aed4396b464ed5078c.zip |
overlayfs: constify path
Reviewed-by: Christian Brauner (Microsoft) <brauner@kernel.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/overlayfs/file.c')
-rw-r--r-- | fs/overlayfs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/overlayfs/file.c b/fs/overlayfs/file.c index daff601b5c41..a1a22f58ba18 100644 --- a/fs/overlayfs/file.c +++ b/fs/overlayfs/file.c @@ -38,7 +38,7 @@ static char ovl_whatisit(struct inode *inode, struct inode *realinode) #define OVL_OPEN_FLAGS (O_NOATIME | FMODE_NONOTIFY) static struct file *ovl_open_realfile(const struct file *file, - struct path *realpath) + const struct path *realpath) { struct inode *realinode = d_inode(realpath->dentry); struct inode *inode = file_inode(file); |