Commit 306929f364b993581c91596230807fa1c022268a
Committed by
Chris Mason
1 parent
95c9eb178b
Exists in
master
and in
7 other branches
btrfs: fix strange indentation in lookup_extent_mapping
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Showing 1 changed file with 7 additions and 1 deletions Side-by-side Diff
fs/btrfs/extent_map.c
... | ... | @@ -231,7 +231,13 @@ |
231 | 231 | { |
232 | 232 | struct extent_map *em; |
233 | 233 | struct rb_node *rb_node; |
234 | - struct rb_node *prev = NULL; struct rb_node *next = NULL; u64 end = range_end(start, len); em = tree->last; if (em && end > em->start && start < extent_map_end(em)) goto found; | |
234 | + struct rb_node *prev = NULL; | |
235 | + struct rb_node *next = NULL; | |
236 | + u64 end = range_end(start, len); | |
237 | + | |
238 | + em = tree->last; | |
239 | + if (em && end > em->start && start < extent_map_end(em)) | |
240 | + goto found; | |
235 | 241 | |
236 | 242 | rb_node = __tree_search(&tree->map, start, &prev, &next); |
237 | 243 | if (!rb_node && prev) { |