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 | 0d54b217a247f39605361f867fefbb9e099a5432 (patch) | |
tree | 5af6a2cc4cbc6c327e735ac5edb642d47a1f0013 /fs/ocfs2/super.c | |
parent | 61e225dc341107be304fd1088146c2a5e88ff9e0 (diff) |
const: make struct super_block::s_qcop 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 'fs/ocfs2/super.c')
-rw-r--r-- | fs/ocfs2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c index a3f8871d21fd..faca4720aa47 100644 --- a/fs/ocfs2/super.c +++ b/fs/ocfs2/super.c | |||
@@ -965,7 +965,7 @@ static int ocfs2_quota_off(struct super_block *sb, int type, int remount) | |||
965 | return vfs_quota_disable(sb, type, DQUOT_LIMITS_ENABLED); | 965 | return vfs_quota_disable(sb, type, DQUOT_LIMITS_ENABLED); |
966 | } | 966 | } |
967 | 967 | ||
968 | static struct quotactl_ops ocfs2_quotactl_ops = { | 968 | static const struct quotactl_ops ocfs2_quotactl_ops = { |
969 | .quota_on = ocfs2_quota_on, | 969 | .quota_on = ocfs2_quota_on, |
970 | .quota_off = ocfs2_quota_off, | 970 | .quota_off = ocfs2_quota_off, |
971 | .quota_sync = vfs_quota_sync, | 971 | .quota_sync = vfs_quota_sync, |