diff options
| author | Arjan van de Ven <arjan@linux.intel.com> | 2007-02-12 03:55:38 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:46 -0500 |
| commit | 754661f143e70d66eae6c48532ca245aa05dec0e (patch) | |
| tree | c3ed0f7f96061931e497ed92d2b21294756b4831 | |
| parent | 9c2e08c592cd357a8330c34def1e8ecfdcf53275 (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>
57 files changed, 100 insertions, 100 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index bffc934ceadb..8079983ef94f 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c | |||
| @@ -220,7 +220,7 @@ static int spufs_dir_close(struct inode *inode, struct file *file) | |||
| 220 | return dcache_dir_close(inode, file); | 220 | return dcache_dir_close(inode, file); |
| 221 | } | 221 | } |
| 222 | 222 | ||
| 223 | struct inode_operations spufs_dir_inode_operations = { | 223 | const struct inode_operations spufs_dir_inode_operations = { |
| 224 | .lookup = simple_lookup, | 224 | .lookup = simple_lookup, |
| 225 | }; | 225 | }; |
| 226 | 226 | ||
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index 378767c07bf1..5cf22134826b 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c | |||
| @@ -41,10 +41,10 @@ | |||
| 41 | #include "v9fs_vfs.h" | 41 | #include "v9fs_vfs.h" |
| 42 | #include "fid.h" | 42 | #include "fid.h" |
| 43 | 43 | ||
| 44 | static struct inode_operations v9fs_dir_inode_operations; | 44 | static const struct inode_operations v9fs_dir_inode_operations; |
| 45 | static struct inode_operations v9fs_dir_inode_operations_ext; | 45 | static const struct inode_operations v9fs_dir_inode_operations_ext; |
| 46 | static struct inode_operations v9fs_file_inode_operations; | 46 | static const struct inode_operations v9fs_file_inode_operations; |
| 47 | static struct inode_operations v9fs_symlink_inode_operations; | 47 | static const struct inode_operations v9fs_symlink_inode_operations; |
| 48 | 48 | ||
| 49 | /** | 49 | /** |
| 50 | * unixmode2p9mode - convert unix mode bits to plan 9 | 50 | * unixmode2p9mode - convert unix mode bits to plan 9 |
| @@ -1303,7 +1303,7 @@ v9fs_vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t rdev) | |||
| 1303 | return retval; | 1303 | return retval; |
| 1304 | } | 1304 | } |
| 1305 | 1305 | ||
| 1306 | static struct inode_operations v9fs_dir_inode_operations_ext = { | 1306 | static const struct inode_operations v9fs_dir_inode_operations_ext = { |
| 1307 | .create = v9fs_vfs_create, | 1307 | .create = v9fs_vfs_create, |
| 1308 | .lookup = v9fs_vfs_lookup, | 1308 | .lookup = v9fs_vfs_lookup, |
| 1309 | .symlink = v9fs_vfs_symlink, | 1309 | .symlink = v9fs_vfs_symlink, |
| @@ -1318,7 +1318,7 @@ static struct inode_operations v9fs_dir_inode_operations_ext = { | |||
| 1318 | .setattr = v9fs_vfs_setattr, | 1318 | .setattr = v9fs_vfs_setattr, |
| 1319 | }; | 1319 | }; |
| 1320 | 1320 | ||
| 1321 | static struct inode_operations v9fs_dir_inode_operations = { | 1321 | static const struct inode_operations v9fs_dir_inode_operations = { |
| 1322 | .create = v9fs_vfs_create, | 1322 | .create = v9fs_vfs_create, |
| 1323 | .lookup = v9fs_vfs_lookup, | 1323 | .lookup = v9fs_vfs_lookup, |
| 1324 | .unlink = v9fs_vfs_unlink, | 1324 | .unlink = v9fs_vfs_unlink, |
| @@ -1330,12 +1330,12 @@ static struct inode_operations v9fs_dir_inode_operations = { | |||
| 1330 | .setattr = v9fs_vfs_setattr, | 1330 | .setattr = v9fs_vfs_setattr, |
| 1331 | }; | 1331 | }; |
| 1332 | 1332 | ||
| 1333 | static struct inode_operations v9fs_file_inode_operations = { | 1333 | static const struct inode_operations v9fs_file_inode_operations = { |
| 1334 | .getattr = v9fs_vfs_getattr, | 1334 | .getattr = v9fs_vfs_getattr, |
| 1335 | .setattr = v9fs_vfs_setattr, | 1335 | .setattr = v9fs_vfs_setattr, |
| 1336 | }; | 1336 | }; |
| 1337 | 1337 | ||
| 1338 | static struct inode_operations v9fs_symlink_inode_operations = { | 1338 | static const struct inode_operations v9fs_symlink_inode_operations = { |
| 1339 | .readlink = v9fs_vfs_readlink, | 1339 | .readlink = v9fs_vfs_readlink, |
| 1340 | .follow_link = v9fs_vfs_follow_link, | 1340 | .follow_link = v9fs_vfs_follow_link, |
| 1341 | .put_link = v9fs_vfs_put_link, | 1341 | .put_link = v9fs_vfs_put_link, |
diff --git a/fs/adfs/adfs.h b/fs/adfs/adfs.h index 29217ff36d44..936f2af39c43 100644 --- a/fs/adfs/adfs.h +++ b/fs/adfs/adfs.h | |||
| @@ -84,7 +84,7 @@ void __adfs_error(struct super_block *sb, const char *function, | |||
| 84 | */ | 84 | */ |
| 85 | 85 | ||
| 86 | /* dir_*.c */ | 86 | /* dir_*.c */ |
| 87 | extern struct inode_operations adfs_dir_inode_operations; | 87 | extern const struct inode_operations adfs_dir_inode_operations; |
| 88 | extern const struct file_operations adfs_dir_operations; | 88 | extern const struct file_operations adfs_dir_operations; |
| 89 | extern struct dentry_operations adfs_dentry_operations; | 89 | extern struct dentry_operations adfs_dentry_operations; |
| 90 | extern struct adfs_dir_ops adfs_f_dir_ops; | 90 | extern struct adfs_dir_ops adfs_f_dir_ops; |
| @@ -93,7 +93,7 @@ extern struct adfs_dir_ops adfs_fplus_dir_ops; | |||
| 93 | extern int adfs_dir_update(struct super_block *sb, struct object_info *obj); | 93 | extern int adfs_dir_update(struct super_block *sb, struct object_info *obj); |
| 94 | 94 | ||
| 95 | /* file.c */ | 95 | /* file.c */ |
| 96 | extern struct inode_operations adfs_file_inode_operations; | 96 | extern const struct inode_operations adfs_file_inode_operations; |
| 97 | extern const struct file_operations adfs_file_operations; | 97 | extern const struct file_operations adfs_file_operations; |
| 98 | 98 | ||
| 99 | static inline __u32 signed_asl(__u32 val, signed int shift) | 99 | static inline __u32 signed_asl(__u32 val, signed int shift) |
diff --git a/fs/adfs/dir.c b/fs/adfs/dir.c index 2b8903893d3f..fc1a8dc64d78 100644 --- a/fs/adfs/dir.c +++ b/fs/adfs/dir.c | |||
| @@ -295,7 +295,7 @@ adfs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd) | |||
| 295 | /* | 295 | /* |
| 296 | * directories can handle most operations... | 296 | * directories can handle most operations... |
| 297 | */ | 297 | */ |
| 298 | struct inode_operations adfs_dir_inode_operations = { | 298 | const struct inode_operations adfs_dir_inode_operations = { |
| 299 | .lookup = adfs_lookup, | 299 | .lookup = adfs_lookup, |
| 300 | .setattr = adfs_notify_change, | 300 | .setattr = adfs_notify_change, |
| 301 | }; | 301 | }; |
