commit | e16404ed0f3f330dc3e99b95cef69bb60bcd27f7 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Fri Feb 20 05:55:13 2009 +0000 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Fri Mar 27 14:44:00 2009 -0400 |
tree | e60bf730a9a34ae3139ced51cdc9cbd90562fb24 | |
parent | f786aa90e026f2174bb0c26d49f338c5c46ede55 [diff] [blame] |
constify dentry_operations: misc filesystems Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/hfsplus/inode.c b/fs/hfsplus/inode.c index f105ee9..1bcf597 100644 --- a/fs/hfsplus/inode.c +++ b/fs/hfsplus/inode.c
@@ -137,7 +137,7 @@ .writepages = hfsplus_writepages, }; -struct dentry_operations hfsplus_dentry_operations = { +const struct dentry_operations hfsplus_dentry_operations = { .d_hash = hfsplus_hash_dentry, .d_compare = hfsplus_compare_dentry, };