diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-15 00:46:32 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-30 01:07:00 +0200 |
commit | 6f3fc1070be028170b0f4c0c326480c9fcd1da3e (patch) | |
tree | 6792dbc6f732a63aa591a47fcad90c74ebd0ccff /fs/orangefs/orangefs-kernel.h | |
parent | missed comment updates from ->direct_IO() prototype change (diff) | |
download | linux-6f3fc1070be028170b0f4c0c326480c9fcd1da3e.tar.xz linux-6f3fc1070be028170b0f4c0c326480c9fcd1da3e.zip |
orangefs: constify inode_operations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/orangefs/orangefs-kernel.h')
-rw-r--r-- | fs/orangefs/orangefs-kernel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/orangefs/orangefs-kernel.h b/fs/orangefs/orangefs-kernel.h index 2281882f718e..db78ddde0236 100644 --- a/fs/orangefs/orangefs-kernel.h +++ b/fs/orangefs/orangefs-kernel.h @@ -570,10 +570,10 @@ extern int hash_table_size; extern const struct address_space_operations orangefs_address_operations; extern struct backing_dev_info orangefs_backing_dev_info; -extern struct inode_operations orangefs_file_inode_operations; +extern const struct inode_operations orangefs_file_inode_operations; extern const struct file_operations orangefs_file_operations; -extern struct inode_operations orangefs_symlink_inode_operations; -extern struct inode_operations orangefs_dir_inode_operations; +extern const struct inode_operations orangefs_symlink_inode_operations; +extern const struct inode_operations orangefs_dir_inode_operations; extern const struct file_operations orangefs_dir_operations; extern const struct dentry_operations orangefs_dentry_operations; extern const struct file_operations orangefs_devreq_file_operations; |