aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/dcache.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2019-07-07 09:57:53 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2021-03-21 11:43:58 -0400
commita2bbe66493ee380eb25e080e7fcdd1278a847f7e (patch)
tree2f0f612df76dd4b672db77df543d063122c6c0fe /include/linux/dcache.h
parentLinux 5.12-rc2 (diff)
downloadlinux-dev-a2bbe66493ee380eb25e080e7fcdd1278a847f7e.tar.xz
linux-dev-a2bbe66493ee380eb25e080e7fcdd1278a847f7e.zip
constify dentry argument of dentry_path()/dentry_path_raw()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/dcache.h')
-rw-r--r--include/linux/dcache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h
index c1e48014106f..4ecde5d8250c 100644
--- a/include/linux/dcache.h
+++ b/include/linux/dcache.h
@@ -300,8 +300,8 @@ char *dynamic_dname(struct dentry *, char *, int, const char *, ...);
extern char *__d_path(const struct path *, const struct path *, char *, int);
extern char *d_absolute_path(const struct path *, char *, int);
extern char *d_path(const struct path *, char *, int);
-extern char *dentry_path_raw(struct dentry *, char *, int);
-extern char *dentry_path(struct dentry *, char *, int);
+extern char *dentry_path_raw(const struct dentry *, char *, int);
+extern char *dentry_path(const struct dentry *, char *, int);
/* Allocation counts.. */