From: Jan Engelhardt Date: Mon, 9 Jun 2008 23:40:36 +0000 (-0700) Subject: [patch 2/4] fs: make struct file arg to d_path const X-Git-Tag: v2.6.26-rc9~99^2~5 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=20d4fdc1a788e4ca0aaf2422772ba668e7e10839;p=~emulex%2Finfiniband.git [patch 2/4] fs: make struct file arg to d_path const Signed-off-by: Jan Engelhardt Cc: Al Viro Signed-off-by: Andrew Morton Signed-off-by: Al Viro --- diff --git a/fs/dcache.c b/fs/dcache.c index 3ee588d5f58..c4c9072d810 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -1847,7 +1847,7 @@ Elong: * * "buflen" should be positive. Caller holds the dcache_lock. */ -char *d_path(struct path *path, char *buf, int buflen) +char *d_path(const struct path *path, char *buf, int buflen) { char *res; struct path root; 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.. */