From 7985fe64e0e290d6107bc4218920238928300010 Mon Sep 17 00:00:00 2001 From: Wang Shilong Date: Sat, 21 Sep 2013 16:34:18 +0800 Subject: Btrfs-progs: add super-recover to recover bad supers Until now if one of device's first superblock is corrupt,btrfs will fail to mount. Luckily, btrfs have at least two superblocks for every disk. In theory, if silent corrupting happens when we are writting superblocks into disk, we must hold at least one good superblock. One side effect is that user must gurantee that the disk must be a btrfs disk. Otherwise, this tool may destroy other fs.(This is also reason why btrfs only use first superblock in every disk to mount) This little program will try to correct bad superblocks from good superblocks with max generation. There will be five kinds of return values: 0: all supers are valid, no need to recover 1: usage or syntax error 2: recover all bad superblocks successfully 3: fail to recover bad superblocks 4: abort to recover bad superblocks Signed-off-by: Wang Shilong Signed-off-by: David Sterba Signed-off-by: Chris Mason --- commands.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'commands.h') diff --git a/commands.h b/commands.h index 87d6d7e..b791d68 100644 --- a/commands.h +++ b/commands.h @@ -96,6 +96,7 @@ extern const char * const cmd_send_usage[]; extern const char * const cmd_receive_usage[]; extern const char * const cmd_check_usage[]; extern const char * const cmd_chunk_recover_usage[]; +extern const char * const cmd_super_recover_usage[]; extern const char * const cmd_restore_usage[]; extern const char * const cmd_rescue_usage[]; @@ -106,6 +107,7 @@ int cmd_device(int argc, char **argv); int cmd_scrub(int argc, char **argv); int cmd_check(int argc, char **argv); int cmd_chunk_recover(int argc, char **argv); +int cmd_super_recover(int argc, char **argv); int cmd_inspect(int argc, char **argv); int cmd_send(int argc, char **argv); int cmd_receive(int argc, char **argv); -- cgit v1.2.1