diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2008-06-09 16:40:36 -0700 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-06-23 11:52:30 -0400 |
commit | 20d4fdc1a788e4ca0aaf2422772ba668e7e10839 (patch) | |
tree | cd75fce48616b364ddb968d2085205fbc9f4aca1 /include/linux | |
parent | c8e7f449b225ee6c87454ac069f0a041035c5140 (diff) | |
download | linux-3.10-20d4fdc1a788e4ca0aaf2422772ba668e7e10839.tar.gz linux-3.10-20d4fdc1a788e4ca0aaf2422772ba668e7e10839.tar.bz2 linux-3.10-20d4fdc1a788e4ca0aaf2422772ba668e7e10839.zip |
[patch 2/4] fs: make struct file arg to d_path const
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/dcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 2a6639407c8..d982eb89c77 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -300,7 +300,7 @@ extern int d_validate(struct dentry *, struct dentry *); extern char *dynamic_dname(struct dentry *, char *, int, const char *, ...); extern char *__d_path(const struct path *path, struct path *root, char *, int); -extern char *d_path(struct path *, char *, int); +extern char *d_path(const struct path *, char *, int); extern char *dentry_path(struct dentry *, char *, int); /* Allocation counts.. */ |