Commit b144cc04 authored by Filipe Manana's avatar Filipe Manana Committed by David Sterba

btrfs: make extent_map_end() argument const

The extent map pointer argument for extent_map_end() can be const as we
are not modifyng anything in the extent map. So make it const, as it will
allow further changes to callers that have a const extent map pointer.
Signed-off-by: default avatarFilipe Manana <fdmanana@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 1a9fb16c
...@@ -64,7 +64,7 @@ static inline int extent_map_in_tree(const struct extent_map *em) ...@@ -64,7 +64,7 @@ static inline int extent_map_in_tree(const struct extent_map *em)
return !RB_EMPTY_NODE(&em->rb_node); return !RB_EMPTY_NODE(&em->rb_node);
} }
static inline u64 extent_map_end(struct extent_map *em) static inline u64 extent_map_end(const struct extent_map *em)
{ {
if (em->start + em->len < em->start) if (em->start + em->len < em->start)
return (u64)-1; return (u64)-1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment