diff options
Diffstat (limited to 'fs/ecryptfs')
-rw-r--r-- | fs/ecryptfs/ecryptfs_kernel.h | 6 | ||||
-rw-r--r-- | fs/ecryptfs/inode.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/fs/ecryptfs/ecryptfs_kernel.h b/fs/ecryptfs/ecryptfs_kernel.h index 839a34fa6fab..275445d17162 100644 --- a/fs/ecryptfs/ecryptfs_kernel.h +++ b/fs/ecryptfs/ecryptfs_kernel.h | |||
@@ -446,9 +446,9 @@ void __ecryptfs_printk(const char *fmt, ...); | |||
446 | 446 | ||
447 | extern const struct file_operations ecryptfs_main_fops; | 447 | extern const struct file_operations ecryptfs_main_fops; |
448 | extern const struct file_operations ecryptfs_dir_fops; | 448 | extern const struct file_operations ecryptfs_dir_fops; |
449 | extern struct inode_operations ecryptfs_main_iops; | 449 | extern const struct inode_operations ecryptfs_main_iops; |
450 | extern struct inode_operations ecryptfs_dir_iops; | 450 | extern const struct inode_operations ecryptfs_dir_iops; |
451 | extern struct inode_operations ecryptfs_symlink_iops; | 451 | extern const struct inode_operations ecryptfs_symlink_iops; |
452 | extern struct super_operations ecryptfs_sops; | 452 | extern struct super_operations ecryptfs_sops; |
453 | extern struct dentry_operations ecryptfs_dops; | 453 | extern struct dentry_operations ecryptfs_dops; |
454 | extern struct address_space_operations ecryptfs_aops; | 454 | extern struct address_space_operations ecryptfs_aops; |
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 | ||
992 | struct inode_operations ecryptfs_symlink_iops = { | 992 | const 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 | ||
1004 | struct inode_operations ecryptfs_dir_iops = { | 1004 | const 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 | ||
1022 | struct inode_operations ecryptfs_main_iops = { | 1022 | const 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, |