diff options
| author | Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu> | 2007-02-12 03:55:41 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:47 -0500 |
| commit | ee9b6d61a2a43c5952eb43283f8db284a4e70b8a (patch) | |
| tree | afb0340e79d3e9d14f39df20e165ce2efe941b18 /fs/ramfs | |
| parent | c5ef1c42c51b1b5b4a401a6517bdda30933ddbaf (diff) | |
[PATCH] Mark struct super_operations const
This patch is inspired by Arjan's "Patch series to mark struct
file_operations and struct inode_operations const".
Compile tested with gcc & sparse.
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ramfs')
| -rw-r--r-- | fs/ramfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ramfs/inode.c b/fs/ramfs/inode.c index 7a96b1d662..ff1f763970 100644 --- a/fs/ramfs/inode.c +++ b/fs/ramfs/inode.c | |||
| @@ -40,7 +40,7 @@ | |||
| 40 | /* some random number */ | 40 | /* some random number */ |
| 41 | #define RAMFS_MAGIC 0x858458f6 | 41 | #define RAMFS_MAGIC 0x858458f6 |
| 42 | 42 | ||
| 43 | static struct super_operations ramfs_ops; | 43 | static const struct super_operations ramfs_ops; |
| 44 | static const struct inode_operations ramfs_dir_inode_operations; | 44 | static const struct inode_operations ramfs_dir_inode_operations; |
| 45 | 45 | ||
| 46 | static struct backing_dev_info ramfs_backing_dev_info = { | 46 | static struct backing_dev_info ramfs_backing_dev_info = { |
| @@ -155,7 +155,7 @@ static const struct inode_operations ramfs_dir_inode_operations = { | |||
| 155 | .rename = simple_rename, | 155 | .rename = simple_rename, |
| 156 | }; | 156 | }; |
| 157 | 157 | ||
| 158 | static struct super_operations ramfs_ops = { | 158 | static const struct super_operations ramfs_ops = { |
| 159 | .statfs = simple_statfs, | 159 | .statfs = simple_statfs, |
| 160 | .drop_inode = generic_delete_inode, | 160 | .drop_inode = generic_delete_inode, |
| 161 | }; | 161 | }; |
