summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/super.c
diff options
context:
space:
mode:
authorAlexey Dobriyan2009-09-22 02:01:09 +0200
committerLinus Torvalds2009-09-22 16:17:24 +0200
commit0d54b217a247f39605361f867fefbb9e099a5432 (patch)
tree5af6a2cc4cbc6c327e735ac5edb642d47a1f0013 /fs/ocfs2/super.c
parentconst: make struct super_block::dq_op const (diff)
downloadkernel-qcow2-linux-0d54b217a247f39605361f867fefbb9e099a5432.tar.gz
kernel-qcow2-linux-0d54b217a247f39605361f867fefbb9e099a5432.tar.xz
kernel-qcow2-linux-0d54b217a247f39605361f867fefbb9e099a5432.zip
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.c2
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)
return vfs_quota_disable(sb, type, DQUOT_LIMITS_ENABLED);
}
-static struct quotactl_ops ocfs2_quotactl_ops = {
+static const struct quotactl_ops ocfs2_quotactl_ops = {
.quota_on = ocfs2_quota_on,
.quota_off = ocfs2_quota_off,
.quota_sync = vfs_quota_sync,