summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorQu Wenruo <wqu@suse.com>2018-03-30 15:35:27 +0800
committerDavid Sterba <dsterba@suse.com>2018-03-30 22:15:55 +0200
commit6af3cc08ddb5c0165d357ffa36422c2716ebd2a0 (patch)
tree4ad8a9052ea55afd13deff5c36fcb49d8ebf1078 /image
parent64f3dc013676544d3f6142a80cfef99644e4e49a (diff)
btrfs-progs: convert: Fix offset-by-one error in read_data_extent()
For read_data_extent() in convert/main.c it's using mirror number in a incorrect way, which will not get correct copy for RAID1: for (cur_mirror = 0; cur_mirror < num_copies; cur_mirror++) { In such case, for RAID1 @cur_mirror will only be 0 and 1. However for 0 and 1 case, btrfs_map_block() will only return the first copy. To reach the 2nd copy, it correct @cur_mirror range should be 1 and 2. So with this off-by-one error, btrfs-image will never be able to read out data extent if the first stripe of the chunk is the missing one. Fix it by starting @cur_mirror from 1 and to @num_copies (including). Fixes: 2d46558b30f5 ("btrfs-progs: Use existing facility to replace read_data_extent function") Signed-off-by: Qu Wenruo <wqu@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'image')
-rw-r--r--image/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/image/main.c b/image/main.c
index 5f155c23..351c5a25 100644
--- a/image/main.c
+++ b/image/main.c
@@ -571,7 +571,7 @@ static int read_data_extent(struct metadump_struct *md,
num_copies = btrfs_num_copies(root->fs_info, logical, bytes_left);
/* Try our best to read data, just like read_tree_block() */
- for (cur_mirror = 0; cur_mirror < num_copies; cur_mirror++) {
+ for (cur_mirror = 1; cur_mirror <= num_copies; cur_mirror++) {
while (bytes_left) {
read_len = bytes_left;
ret = read_extent_data(fs_info,