commit | 3ba13d179e8c24c68eac32b93593a6b10fcd1572 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Fri Feb 20 06:02:22 2009 +0000 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Fri Mar 27 14:44:03 2009 -0400 |
tree | 732162ba9ddfe66c8e892a25765cb30f0807cf31 | |
parent | 296c2d86635bd6ecd8f282dfff18bb68fb4fc512 [diff] [blame] |
constify dentry_operations: rest Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/libfs.c b/fs/libfs.c index 49b4409..ec600bd 100644 --- a/fs/libfs.c +++ b/fs/libfs.c
@@ -44,7 +44,7 @@ */ struct dentry *simple_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) { - static struct dentry_operations simple_dentry_operations = { + static const struct dentry_operations simple_dentry_operations = { .d_delete = simple_delete_dentry, };