diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-09-21 17:01:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 07:17:24 -0700 |
commit | 0d54b217a247f39605361f867fefbb9e099a5432 (patch) | |
tree | 5af6a2cc4cbc6c327e735ac5edb642d47a1f0013 /fs/reiserfs | |
parent | 61e225dc341107be304fd1088146c2a5e88ff9e0 (diff) | |
download | op-kernel-dev-0d54b217a247f39605361f867fefbb9e099a5432.zip op-kernel-dev-0d54b217a247f39605361f867fefbb9e099a5432.tar.gz |
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/reiserfs')
-rw-r--r-- | fs/reiserfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index 09c93c1..f0ad05f 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c @@ -629,7 +629,7 @@ static const struct dquot_operations reiserfs_quota_operations = { .destroy_dquot = dquot_destroy, }; -static struct quotactl_ops reiserfs_qctl_operations = { +static const struct quotactl_ops reiserfs_qctl_operations = { .quota_on = reiserfs_quota_on, .quota_off = vfs_quota_off, .quota_sync = vfs_quota_sync, |