diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-09-21 20:01:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 10:17:24 -0400 |
commit | 61e225dc341107be304fd1088146c2a5e88ff9e0 (patch) | |
tree | e6d3e1dc5506e232497f17721175a081a5306b5b /fs/ext3 | |
parent | 00d3803b656a5f0935518d746f6bb27d5181d29d (diff) |
const: make struct super_block::dq_op 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/ext3')
-rw-r--r-- | fs/ext3/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index a8d80a7f1105..e7a4e11352d2 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c | |||
@@ -720,7 +720,7 @@ static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data, | |||
720 | static ssize_t ext3_quota_write(struct super_block *sb, int type, | 720 | static ssize_t ext3_quota_write(struct super_block *sb, int type, |
721 | const char *data, size_t len, loff_t off); | 721 | const char *data, size_t len, loff_t off); |
722 | 722 | ||
723 | static struct dquot_operations ext3_quota_operations = { | 723 | static const struct dquot_operations ext3_quota_operations = { |
724 | .initialize = dquot_initialize, | 724 | .initialize = dquot_initialize, |
725 | .drop = dquot_drop, | 725 | .drop = dquot_drop, |
726 | .alloc_space = dquot_alloc_space, | 726 | .alloc_space = dquot_alloc_space, |