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/quota | |
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/quota')
-rw-r--r-- | fs/quota/dquot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index 38f7bd559f35..635ae2e535bf 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c | |||
@@ -1839,7 +1839,7 @@ EXPORT_SYMBOL(dquot_commit_info); | |||
1839 | /* | 1839 | /* |
1840 | * Definitions of diskquota operations. | 1840 | * Definitions of diskquota operations. |
1841 | */ | 1841 | */ |
1842 | struct dquot_operations dquot_operations = { | 1842 | const struct dquot_operations dquot_operations = { |
1843 | .initialize = dquot_initialize, | 1843 | .initialize = dquot_initialize, |
1844 | .drop = dquot_drop, | 1844 | .drop = dquot_drop, |
1845 | .alloc_space = dquot_alloc_space, | 1845 | .alloc_space = dquot_alloc_space, |