diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-09-21 20:01:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 10:17:24 -0400 |
commit | b87221de6a4934eda856475a0065688d12973a04 (patch) | |
tree | 6bcf0628e106c4833538f4c23d710fbbe3d7609a /kernel/cgroup.c | |
parent | 0d54b217a247f39605361f867fefbb9e099a5432 (diff) |
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>
Diffstat (limited to 'kernel/cgroup.c')
-rw-r--r-- | kernel/cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c index c7ece8f027f2..39dde299a920 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c | |||
@@ -961,7 +961,7 @@ static int cgroup_remount(struct super_block *sb, int *flags, char *data) | |||
961 | return ret; | 961 | return ret; |
962 | } | 962 | } |
963 | 963 | ||
964 | static struct super_operations cgroup_ops = { | 964 | static const struct super_operations cgroup_ops = { |
965 | .statfs = simple_statfs, | 965 | .statfs = simple_statfs, |
966 | .drop_inode = generic_delete_inode, | 966 | .drop_inode = generic_delete_inode, |
967 | .show_options = cgroup_show_options, | 967 | .show_options = cgroup_show_options, |