diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-02-20 06:02:01 +0000 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-27 14:44:03 -0400 |
commit | 296c2d86635bd6ecd8f282dfff18bb68fb4fc512 (patch) | |
tree | 1a8cd312d4e624f3b4b1d93086630dd0e75465bd /fs/configfs | |
parent | ee1ec32903fc3139af00ebc7ee483dabca3f4fa5 (diff) |
constify dentry_operations: configfs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/configfs')
-rw-r--r-- | fs/configfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c index 8e93341f3e82..05373db21a4e 100644 --- a/fs/configfs/dir.c +++ b/fs/configfs/dir.c @@ -72,7 +72,7 @@ static int configfs_d_delete(struct dentry *dentry) return 1; } -static struct dentry_operations configfs_dentry_ops = { +static const struct dentry_operations configfs_dentry_ops = { .d_iput = configfs_d_iput, /* simple_delete_dentry() isn't exported */ .d_delete = configfs_d_delete, |