commit | d8fba0ffe5e7442fc2560873ec901be6e56602a1 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Fri Feb 20 06:00:26 2009 +0000 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Fri Mar 27 14:44:02 2009 -0400 |
tree | 99e6aec6f22e2584503571c350c3c22d55dc2704 | |
parent | 92cecbbfa3785a944c733a284b77faee5b82b70c [diff] [blame] |
constify dentry_operations: OCFS2 Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/ocfs2/dcache.c b/fs/ocfs2/dcache.c index e9d7c20..7d60448 100644 --- a/fs/ocfs2/dcache.c +++ b/fs/ocfs2/dcache.c
@@ -455,7 +455,7 @@ 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, };