aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/dcache.h
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-02-11 13:14:54 -0800
committerAl Viro <viro@zeniv.linux.org.uk>2009-03-27 14:43:59 -0400
commite56980d451904b623573ef4966cbab768e433c79 (patch)
tree2345c1fa43785095bf4e8224a2c90af0d1998f42 /include/linux/dcache.h
parentdevpts: Must release s_umount on error (diff)
downloadlinux-dev-e56980d451904b623573ef4966cbab768e433c79.tar.xz
linux-dev-e56980d451904b623573ef4966cbab768e433c79.zip
fs: make struct dentry->d_op const
This change will allow for tagging many dentry_operations const in the source tree. 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/dcache.h')
-rw-r--r--include/linux/dcache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h
index c66d22487bf8..15156364d196 100644
--- a/include/linux/dcache.h
+++ b/include/linux/dcache.h
@@ -112,7 +112,7 @@ struct dentry {
struct list_head d_subdirs; /* our children */
struct list_head d_alias; /* inode alias list */
unsigned long d_time; /* used by d_revalidate */
- struct dentry_operations *d_op;
+ const struct dentry_operations *d_op;
struct super_block *d_sb; /* The root of the dentry tree */
void *d_fsdata; /* fs-specific data */