summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dcache.c
diff options
context:
space:
mode:
authorAl Viro2009-02-20 07:00:26 +0100
committerAl Viro2009-03-27 19:44:02 +0100
commitd8fba0ffe5e7442fc2560873ec901be6e56602a1 (patch)
tree99e6aec6f22e2584503571c350c3c22d55dc2704 /fs/ocfs2/dcache.c
parentconstify dentry_operations: GFS2 (diff)
downloadkernel-qcow2-linux-d8fba0ffe5e7442fc2560873ec901be6e56602a1.tar.gz
kernel-qcow2-linux-d8fba0ffe5e7442fc2560873ec901be6e56602a1.tar.xz
kernel-qcow2-linux-d8fba0ffe5e7442fc2560873ec901be6e56602a1.zip
constify dentry_operations: OCFS2
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ocfs2/dcache.c')
-rw-r--r--fs/ocfs2/dcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/dcache.c b/fs/ocfs2/dcache.c
index e9d7c2038c0f..7d604480557a 100644
--- a/fs/ocfs2/dcache.c
+++ b/fs/ocfs2/dcache.c
@@ -455,7 +455,7 @@ out_move:
d_move(dentry, target);
}
-struct dentry_operations ocfs2_dentry_ops = {
+const struct dentry_operations ocfs2_dentry_ops = {
.d_revalidate = ocfs2_dentry_revalidate,
.d_iput = ocfs2_dentry_iput,
};