diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2016-01-01 08:53:37 +0100 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2016-01-04 10:58:35 +0100 |
commit | d1b98c23f7547cc37c8f230acbedb26f0d47e9e1 (patch) | |
tree | 623c7c98dfcb95e240b59ca21c724263125a295d /fs/ocfs2/quota.h | |
parent | 4f1b1519f7bec44ded3c2c4d46a2594c01446dc8 (diff) | |
download | blackbird-op-linux-d1b98c23f7547cc37c8f230acbedb26f0d47e9e1.tar.gz blackbird-op-linux-d1b98c23f7547cc37c8f230acbedb26f0d47e9e1.zip |
quota: constify qtree_fmt_operations structures
The qtree_fmt_operations structures are never modified, so declare them as
const.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ocfs2/quota.h')
-rw-r--r-- | fs/ocfs2/quota.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/quota.h b/fs/ocfs2/quota.h index b6d51333ad02..d153e6e31529 100644 --- a/fs/ocfs2/quota.h +++ b/fs/ocfs2/quota.h @@ -82,7 +82,7 @@ struct ocfs2_quota_chunk { extern struct kmem_cache *ocfs2_dquot_cachep; extern struct kmem_cache *ocfs2_qf_chunk_cachep; -extern struct qtree_fmt_operations ocfs2_global_ops; +extern const struct qtree_fmt_operations ocfs2_global_ops; struct ocfs2_quota_recovery *ocfs2_begin_quota_recovery( struct ocfs2_super *osb, int slot_num); |