diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2016-01-14 15:17:21 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-01-14 16:00:49 -0800 |
commit | 9e62dc096ef39ccf45fc47e8612f3c5d361af038 (patch) | |
tree | 3a46e893c19ed8179ef530346de91f1050806852 /fs/ocfs2/alloc.h | |
parent | 30bee898f86506893883ffb8db20d8101a29b5f5 (diff) | |
download | linux-9e62dc096ef39ccf45fc47e8612f3c5d361af038.tar.gz linux-9e62dc096ef39ccf45fc47e8612f3c5d361af038.tar.bz2 linux-9e62dc096ef39ccf45fc47e8612f3c5d361af038.zip |
ocfs2: constify ocfs2_extent_tree_operations structures
The ocfs2_extent_tree_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>
Cc: Mark Fasheh <mfasheh@suse.de>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2/alloc.h')
-rw-r--r-- | fs/ocfs2/alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/alloc.h b/fs/ocfs2/alloc.h index fb09b97db162..f3dc1b0dfffc 100644 --- a/fs/ocfs2/alloc.h +++ b/fs/ocfs2/alloc.h @@ -54,7 +54,7 @@ */ struct ocfs2_extent_tree_operations; struct ocfs2_extent_tree { - struct ocfs2_extent_tree_operations *et_ops; + const struct ocfs2_extent_tree_operations *et_ops; struct buffer_head *et_root_bh; struct ocfs2_extent_list *et_root_el; struct ocfs2_caching_info *et_ci; |