aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ecryptfs/inode.c
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@linux.intel.com>2007-02-12 03:55:38 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-02-12 12:48:46 -0500
commit754661f143e70d66eae6c48532ca245aa05dec0e (patch)
treec3ed0f7f96061931e497ed92d2b21294756b4831 /fs/ecryptfs/inode.c
parent9c2e08c592cd357a8330c34def1e8ecfdcf53275 (diff)
[PATCH] mark struct inode_operations const 1
Many struct inode_operations in the kernel can be "const". Marking them const moves these to the .rodata section, which avoids false sharing with potential dirty data. In addition it'll catch accidental writes at compile time to these shared resources. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
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,