mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-16 09:46:55 +00:00
Btrfs-progs: make sure to save mirror_num only if it is set
If we are cycling through all of the mirrors trying to find the best one we need to make sure we set best_mirror to an actual mirror number and not 0. Otherwise we could end up reading a mirror that wasn't the best and make everybody sad. Thanks, Signed-off-by: Josef Bacik <jbacik@fb.com> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <clm@fb.com>
This commit is contained in:
parent
47c18d17c5
commit
4bcfcb47fa
@ -297,7 +297,7 @@ struct extent_buffer *read_tree_block(struct btrfs_root *root, u64 bytenr,
|
||||
ignore = 1;
|
||||
continue;
|
||||
}
|
||||
if (btrfs_header_generation(eb) > best_transid) {
|
||||
if (btrfs_header_generation(eb) > best_transid && mirror_num) {
|
||||
best_transid = btrfs_header_generation(eb);
|
||||
good_mirror = mirror_num;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user