const: mark remaining super_operations const

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Alexey Dobriyan
2009-09-21 17:01:09 -07:00
committed by Linus Torvalds
parent 0d54b217a2
commit b87221de6a
18 changed files with 23 additions and 24 deletions

View File

@ -51,7 +51,7 @@
#include "export.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)
{
@ -675,7 +675,7 @@ static int btrfs_unfreeze(struct super_block *sb)
return 0;
}
static struct super_operations btrfs_super_ops = {
static const struct super_operations btrfs_super_ops = {
.delete_inode = btrfs_delete_inode,
.put_super = btrfs_put_super,
.sync_fs = btrfs_sync_fs,