aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ecryptfs/inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ecryptfs/inode.c')
-rw-r--r--fs/ecryptfs/inode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index 91357183398d..9fa7e0b27a96 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -989,7 +989,7 @@ int ecryptfs_inode_set(struct inode *inode, void *lower_inode)
989 return 0; 989 return 0;
990} 990}
991 991
992struct inode_operations ecryptfs_symlink_iops = { 992const struct inode_operations ecryptfs_symlink_iops = {
993 .readlink = ecryptfs_readlink, 993 .readlink = ecryptfs_readlink,
994 .follow_link = ecryptfs_follow_link, 994 .follow_link = ecryptfs_follow_link,
995 .put_link = ecryptfs_put_link, 995 .put_link = ecryptfs_put_link,
@@ -1001,7 +1001,7 @@ struct inode_operations ecryptfs_symlink_iops = {
1001 .removexattr = ecryptfs_removexattr 1001 .removexattr = ecryptfs_removexattr
1002}; 1002};
1003 1003
1004struct inode_operations ecryptfs_dir_iops = { 1004const struct inode_operations ecryptfs_dir_iops = {
1005 .create = ecryptfs_create, 1005 .create = ecryptfs_create,
1006 .lookup = ecryptfs_lookup, 1006 .lookup = ecryptfs_lookup,
1007 .link = ecryptfs_link, 1007 .link = ecryptfs_link,
@@ -1019,7 +1019,7 @@ struct inode_operations ecryptfs_dir_iops = {
1019 .removexattr = ecryptfs_removexattr 1019 .removexattr = ecryptfs_removexattr
1020}; 1020};
1021 1021
1022struct inode_operations ecryptfs_main_iops = { 1022const struct inode_operations ecryptfs_main_iops = {
1023 .permission = ecryptfs_permission, 1023 .permission = ecryptfs_permission,
1024 .setattr = ecryptfs_setattr, 1024 .setattr = ecryptfs_setattr,
1025 .setxattr = ecryptfs_setxattr, 1025 .setxattr = ecryptfs_setxattr,