aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/ops_dentry.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2009-02-20 01:00:05 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2009-03-27 14:44:02 -0400
commit92cecbbfa3785a944c733a284b77faee5b82b70c (patch)
treecafb14302ebe906270d005c00a17e19733dfa787 /fs/gfs2/ops_dentry.c
parentce6cdc474aa5bf4c1a7dc698d83bb0622846a81d (diff)
constify dentry_operations: GFS2
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/gfs2/ops_dentry.c')
-rw-r--r--fs/gfs2/ops_dentry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_dentry.c b/fs/gfs2/ops_dentry.c
index c2ad36330ca3..aea4d50580d7 100644
--- a/fs/gfs2/ops_dentry.c
+++ b/fs/gfs2/ops_dentry.c
@@ -108,7 +108,7 @@ static int gfs2_dhash(struct dentry *dentry, struct qstr *str)
108 return 0; 108 return 0;
109} 109}
110 110
111struct dentry_operations gfs2_dops = { 111const struct dentry_operations gfs2_dops = {
112 .d_revalidate = gfs2_drevalidate, 112 .d_revalidate = gfs2_drevalidate,
113 .d_hash = gfs2_dhash, 113 .d_hash = gfs2_dhash,
114}; 114};