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/libfs.c | |
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/libfs.c')
-rw-r--r-- | fs/libfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/libfs.c b/fs/libfs.c index 0f4ee02e0b16..7d487047dbb8 100644 --- a/fs/libfs.c +++ b/fs/libfs.c | |||
@@ -195,11 +195,11 @@ const struct inode_operations simple_dir_inode_operations = { | |||
195 | * will never be mountable) | 195 | * will never be mountable) |
196 | */ | 196 | */ |
197 | int get_sb_pseudo(struct file_system_type *fs_type, char *name, | 197 | int get_sb_pseudo(struct file_system_type *fs_type, char *name, |
198 | struct super_operations *ops, unsigned long magic, | 198 | const struct super_operations *ops, unsigned long magic, |
199 | struct vfsmount *mnt) | 199 | struct vfsmount *mnt) |
200 | { | 200 | { |
201 | struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL); | 201 | struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL); |
202 | static struct super_operations default_ops = {.statfs = simple_statfs}; | 202 | static const struct super_operations default_ops = {.statfs = simple_statfs}; |
203 | struct dentry *dentry; | 203 | struct dentry *dentry; |
204 | struct inode *root; | 204 | struct inode *root; |
205 | struct qstr d_name = {.name = name, .len = strlen(name)}; | 205 | struct qstr d_name = {.name = name, .len = strlen(name)}; |