Commit b87221de authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds

const: mark remaining super_operations const

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 0d54b217
...@@ -773,7 +773,7 @@ static int ...@@ -773,7 +773,7 @@ static int
spufs_fill_super(struct super_block *sb, void *data, int silent) spufs_fill_super(struct super_block *sb, void *data, int silent)
{ {
struct spufs_sb_info *info; struct spufs_sb_info *info;
static struct super_operations s_ops = { static const struct super_operations s_ops = {
.alloc_inode = spufs_alloc_inode, .alloc_inode = spufs_alloc_inode,
.destroy_inode = spufs_destroy_inode, .destroy_inode = spufs_destroy_inode,
.statfs = simple_statfs, .statfs = simple_statfs,
......
...@@ -41,7 +41,7 @@ struct hypfs_sb_info { ...@@ -41,7 +41,7 @@ struct hypfs_sb_info {
static const struct file_operations hypfs_file_ops; static const struct file_operations hypfs_file_ops;
static struct file_system_type hypfs_type; static struct file_system_type hypfs_type;
static struct super_operations hypfs_s_ops; static const struct super_operations hypfs_s_ops;
/* start of list of all dentries, which have to be deleted on update */ /* start of list of all dentries, which have to be deleted on update */
static struct dentry *hypfs_last_dentry; static struct dentry *hypfs_last_dentry;
...@@ -472,7 +472,7 @@ static struct file_system_type hypfs_type = { ...@@ -472,7 +472,7 @@ static struct file_system_type hypfs_type = {
.kill_sb = hypfs_kill_super .kill_sb = hypfs_kill_super
}; };
static struct super_operations hypfs_s_ops = { static const struct super_operations hypfs_s_ops = {
.statfs = simple_statfs, .statfs = simple_statfs,
.drop_inode = hypfs_drop_inode, .drop_inode = hypfs_drop_inode,
.show_options = hypfs_show_options, .show_options = hypfs_show_options,
......
...@@ -89,7 +89,7 @@ static int capifs_remount(struct super_block *s, int *flags, char *data) ...@@ -89,7 +89,7 @@ static int capifs_remount(struct super_block *s, int *flags, char *data)
return 0; return 0;
} }
static struct super_operations capifs_sops = static const struct super_operations capifs_sops =
{ {
.statfs = simple_statfs, .statfs = simple_statfs,
.remount_fs = capifs_remount, .remount_fs = capifs_remount,
......
...@@ -97,7 +97,7 @@ static int ibmasmfs_get_super(struct file_system_type *fst, ...@@ -97,7 +97,7 @@ static int ibmasmfs_get_super(struct file_system_type *fst,
return get_sb_single(fst, flags, data, ibmasmfs_fill_super, mnt); return get_sb_single(fst, flags, data, ibmasmfs_fill_super, mnt);
} }
static struct super_operations ibmasmfs_s_ops = { static const struct super_operations ibmasmfs_s_ops = {
.statfs = simple_statfs, .statfs = simple_statfs,
.drop_inode = generic_delete_inode, .drop_inode = generic_delete_inode,
}; };
......
...@@ -35,7 +35,7 @@ static struct inode *oprofilefs_get_inode(struct super_block *sb, int mode) ...@@ -35,7 +35,7 @@ static struct inode *oprofilefs_get_inode(struct super_block *sb, int mode)
} }
static struct super_operations s_ops = { static const struct super_operations s_ops = {
.statfs = simple_statfs, .statfs = simple_statfs,
.drop_inode = generic_delete_inode, .drop_inode = generic_delete_inode,
}; };
......
...@@ -48,7 +48,6 @@ ...@@ -48,7 +48,6 @@
#define USBFS_DEFAULT_BUSMODE (S_IXUGO | S_IRUGO) #define USBFS_DEFAULT_BUSMODE (S_IXUGO | S_IRUGO)
#define USBFS_DEFAULT_LISTMODE S_IRUGO #define USBFS_DEFAULT_LISTMODE S_IRUGO
static struct super_operations usbfs_ops;
static const struct file_operations default_file_operations; static const struct file_operations default_file_operations;
static struct vfsmount *usbfs_mount; static struct vfsmount *usbfs_mount;
static int usbfs_mount_count; /* = 0 */ static int usbfs_mount_count; /* = 0 */
...@@ -449,7 +448,7 @@ static const struct file_operations default_file_operations = { ...@@ -449,7 +448,7 @@ static const struct file_operations default_file_operations = {
.llseek = default_file_lseek, .llseek = default_file_lseek,
}; };
static struct super_operations usbfs_ops = { static const struct super_operations usbfs_ops = {
.statfs = simple_statfs, .statfs = simple_statfs,
.drop_inode = generic_delete_inode, .drop_inode = generic_delete_inode,
.remount_fs = remount, .remount_fs = remount,
......
...@@ -2033,7 +2033,7 @@ gadgetfs_create_file (struct super_block *sb, char const *name, ...@@ -2033,7 +2033,7 @@ gadgetfs_create_file (struct super_block *sb, char const *name,
return inode; return inode;
} }
static struct super_operations gadget_fs_operations = { static const struct super_operations gadget_fs_operations = {
.statfs = simple_statfs, .statfs = simple_statfs,
.drop_inode = generic_delete_inode, .drop_inode = generic_delete_inode,
}; };
......
...@@ -842,7 +842,7 @@ befs_fill_super(struct super_block *sb, void *data, int silent) ...@@ -842,7 +842,7 @@ befs_fill_super(struct super_block *sb, void *data, int silent)
sb->s_magic = BEFS_SUPER_MAGIC; sb->s_magic = BEFS_SUPER_MAGIC;
/* Set real blocksize of fs */ /* Set real blocksize of fs */
sb_set_blocksize(sb, (ulong) befs_sb->block_size); sb_set_blocksize(sb, (ulong) befs_sb->block_size);
sb->s_op = (struct super_operations *) &befs_sops; sb->s_op = &befs_sops;
root = befs_iget(sb, iaddr2blockno(sb, &(befs_sb->root_dir))); root = befs_iget(sb, iaddr2blockno(sb, &(befs_sb->root_dir)));
if (IS_ERR(root)) { if (IS_ERR(root)) {
ret = PTR_ERR(root); ret = PTR_ERR(root);
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
#include "export.h" #include "export.h"
#include "compression.h" #include "compression.h"
static struct super_operations btrfs_super_ops; static const struct super_operations btrfs_super_ops;
static void btrfs_put_super(struct super_block *sb) static void btrfs_put_super(struct super_block *sb)
{ {
...@@ -675,7 +675,7 @@ static int btrfs_unfreeze(struct super_block *sb) ...@@ -675,7 +675,7 @@ static int btrfs_unfreeze(struct super_block *sb)
return 0; return 0;
} }
static struct super_operations btrfs_super_ops = { static const struct super_operations btrfs_super_ops = {
.delete_inode = btrfs_delete_inode, .delete_inode = btrfs_delete_inode,
.put_super = btrfs_put_super, .put_super = btrfs_put_super,
.sync_fs = btrfs_sync_fs, .sync_fs = btrfs_sync_fs,
......
...@@ -504,7 +504,7 @@ static int nilfs_show_options(struct seq_file *seq, struct vfsmount *vfs) ...@@ -504,7 +504,7 @@ static int nilfs_show_options(struct seq_file *seq, struct vfsmount *vfs)
return 0; return 0;
} }
static struct super_operations nilfs_sops = { static const struct super_operations nilfs_sops = {
.alloc_inode = nilfs_alloc_inode, .alloc_inode = nilfs_alloc_inode,
.destroy_inode = nilfs_destroy_inode, .destroy_inode = nilfs_destroy_inode,
.dirty_inode = nilfs_dirty_inode, .dirty_inode = nilfs_dirty_inode,
......
...@@ -278,7 +278,7 @@ static int omfs_statfs(struct dentry *dentry, struct kstatfs *buf) ...@@ -278,7 +278,7 @@ static int omfs_statfs(struct dentry *dentry, struct kstatfs *buf)
return 0; return 0;
} }
static struct super_operations omfs_sops = { static const struct super_operations omfs_sops = {
.write_inode = omfs_write_inode, .write_inode = omfs_write_inode,
.delete_inode = omfs_delete_inode, .delete_inode = omfs_delete_inode,
.put_super = omfs_put_super, .put_super = omfs_put_super,
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#include "squashfs.h" #include "squashfs.h"
static struct file_system_type squashfs_fs_type; static struct file_system_type squashfs_fs_type;
static struct super_operations squashfs_super_ops; static const struct super_operations squashfs_super_ops;
static int supported_squashfs_filesystem(short major, short minor, short comp) static int supported_squashfs_filesystem(short major, short minor, short comp)
{ {
...@@ -444,7 +444,7 @@ static struct file_system_type squashfs_fs_type = { ...@@ -444,7 +444,7 @@ static struct file_system_type squashfs_fs_type = {
.fs_flags = FS_REQUIRES_DEV .fs_flags = FS_REQUIRES_DEV
}; };
static struct super_operations squashfs_super_ops = { static const struct super_operations squashfs_super_ops = {
.alloc_inode = squashfs_alloc_inode, .alloc_inode = squashfs_alloc_inode,
.destroy_inode = squashfs_destroy_inode, .destroy_inode = squashfs_destroy_inode,
.statfs = squashfs_statfs, .statfs = squashfs_statfs,
......
...@@ -54,7 +54,7 @@ DEFINE_SPINLOCK(sb_lock); ...@@ -54,7 +54,7 @@ DEFINE_SPINLOCK(sb_lock);
static struct super_block *alloc_super(struct file_system_type *type) static struct super_block *alloc_super(struct file_system_type *type)
{ {
struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER); struct super_block *s = kzalloc(sizeof(struct super_block), GFP_USER);
static struct super_operations default_op; static const struct super_operations default_op;
if (s) { if (s) {
if (security_sb_alloc(s)) { if (security_sb_alloc(s)) {
......
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
#include <linux/freezer.h> #include <linux/freezer.h>
#include <linux/parser.h> #include <linux/parser.h>
static struct super_operations xfs_super_operations; static const struct super_operations xfs_super_operations;
static kmem_zone_t *xfs_ioend_zone; static kmem_zone_t *xfs_ioend_zone;
mempool_t *xfs_ioend_pool; mempool_t *xfs_ioend_pool;
...@@ -1536,7 +1536,7 @@ xfs_fs_get_sb( ...@@ -1536,7 +1536,7 @@ xfs_fs_get_sb(
mnt); mnt);
} }
static struct super_operations xfs_super_operations = { static const struct super_operations xfs_super_operations = {
.alloc_inode = xfs_fs_alloc_inode, .alloc_inode = xfs_fs_alloc_inode,
.destroy_inode = xfs_fs_destroy_inode, .destroy_inode = xfs_fs_destroy_inode,
.write_inode = xfs_fs_write_inode, .write_inode = xfs_fs_write_inode,
......
...@@ -77,7 +77,7 @@ struct mqueue_inode_info { ...@@ -77,7 +77,7 @@ struct mqueue_inode_info {
static const struct inode_operations mqueue_dir_inode_operations; static const struct inode_operations mqueue_dir_inode_operations;
static const struct file_operations mqueue_file_operations; static const struct file_operations mqueue_file_operations;
static struct super_operations mqueue_super_ops; static const struct super_operations mqueue_super_ops;
static void remove_notification(struct mqueue_inode_info *info); static void remove_notification(struct mqueue_inode_info *info);
static struct kmem_cache *mqueue_inode_cachep; static struct kmem_cache *mqueue_inode_cachep;
...@@ -1224,7 +1224,7 @@ static const struct file_operations mqueue_file_operations = { ...@@ -1224,7 +1224,7 @@ static const struct file_operations mqueue_file_operations = {
.read = mqueue_read_file, .read = mqueue_read_file,
}; };
static struct super_operations mqueue_super_ops = { static const struct super_operations mqueue_super_ops = {
.alloc_inode = mqueue_alloc_inode, .alloc_inode = mqueue_alloc_inode,
.destroy_inode = mqueue_destroy_inode, .destroy_inode = mqueue_destroy_inode,
.statfs = simple_statfs, .statfs = simple_statfs,
......
...@@ -961,7 +961,7 @@ static int cgroup_remount(struct super_block *sb, int *flags, char *data) ...@@ -961,7 +961,7 @@ static int cgroup_remount(struct super_block *sb, int *flags, char *data)
return ret; return ret;
} }
static struct super_operations cgroup_ops = { static const struct super_operations cgroup_ops = {
.statfs = simple_statfs, .statfs = simple_statfs,
.drop_inode = generic_delete_inode, .drop_inode = generic_delete_inode,
.show_options = cgroup_show_options, .show_options = cgroup_show_options,
......
...@@ -285,7 +285,7 @@ static int init_inodecache(void) ...@@ -285,7 +285,7 @@ static int init_inodecache(void)
return 0; return 0;
} }
static struct super_operations sockfs_ops = { static const struct super_operations sockfs_ops = {
.alloc_inode = sock_alloc_inode, .alloc_inode = sock_alloc_inode,
.destroy_inode =sock_destroy_inode, .destroy_inode =sock_destroy_inode,
.statfs = simple_statfs, .statfs = simple_statfs,
......
...@@ -930,7 +930,7 @@ void rpc_remove_cache_dir(struct dentry *dentry) ...@@ -930,7 +930,7 @@ void rpc_remove_cache_dir(struct dentry *dentry)
/* /*
* populate the filesystem * populate the filesystem
*/ */
static struct super_operations s_ops = { static const struct super_operations s_ops = {
.alloc_inode = rpc_alloc_inode, .alloc_inode = rpc_alloc_inode,
.destroy_inode = rpc_destroy_inode, .destroy_inode = rpc_destroy_inode,
.statfs = simple_statfs, .statfs = simple_statfs,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment