diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-14 18:46:32 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-05-29 19:07:00 -0400 |
commit | 6f3fc1070be028170b0f4c0c326480c9fcd1da3e (patch) | |
tree | 6792dbc6f732a63aa591a47fcad90c74ebd0ccff /fs/orangefs/inode.c | |
parent | 90090ae645f6affba0d4c8413749df96dde0a526 (diff) | |
download | linux-6f3fc1070be028170b0f4c0c326480c9fcd1da3e.tar.gz linux-6f3fc1070be028170b0f4c0c326480c9fcd1da3e.tar.bz2 linux-6f3fc1070be028170b0f4c0c326480c9fcd1da3e.zip |
orangefs: constify inode_operations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/orangefs/inode.c')
-rw-r--r-- | fs/orangefs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/inode.c b/fs/orangefs/inode.c index 85640e955cde..0f586bded7f4 100644 --- a/fs/orangefs/inode.c +++ b/fs/orangefs/inode.c @@ -294,7 +294,7 @@ int orangefs_permission(struct inode *inode, int mask) } /* ORANGEDS2 implementation of VFS inode operations for files */ -struct inode_operations orangefs_file_inode_operations = { +const struct inode_operations orangefs_file_inode_operations = { .get_acl = orangefs_get_acl, .set_acl = orangefs_set_acl, .setattr = orangefs_setattr, |