btrfs-progs: fix max mirror number error for chunk-recover
authorGui Hecheng <guihc.fnst@cn.fujitsu.com>
Thu, 12 Jun 2014 02:25:00 +0000 (10:25 +0800)
committerDavid Sterba <dsterba@suse.cz>
Fri, 22 Aug 2014 12:40:11 +0000 (14:40 +0200)
When run chunk-recover on a health btrfs(data profile raid0, with
plenty of data), the program has a chance to abort on the number
of mirrors of an extent.

According to the kernel code, the max mirror number of an extent
is 3 not 2:
ctree.h:  BTRFS_MAX_MIRRORS 3
chunk-recover.c : BTRFS_NUM_MIRRORS 2
just change BTRFS_NUM_MIRRORS to 3, and everything goes well.

Signed-off-by: Gui Hecheng <guihc.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
chunk-recover.c

index 2d8dd11..8bc5bc3 100644 (file)
@@ -42,7 +42,7 @@
 #include "btrfsck.h"
 #include "commands.h"
 
-#define BTRFS_NUM_MIRRORS                      2
+#define BTRFS_NUM_MIRRORS                      3
 
 struct recover_control {
        int verbose;