mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-16 17:56:51 +00:00
btrfs-progs: let user know that devid can be used if path is missing
When the device disappear the path goes missing, and that will be the one of the reason that user will replace the device. The devid of the missing btrfs device can be obtained using the new cli option btrfs fi show --kernel And which can be used in the replace command. --- btrfs replace start /dev/sdc /dev/sde /btrfs Error: Unable to open device '/dev/sdc' Try using the devid instead of the path --- Signed-off-by: Anand Jain <anand.jain@oracle.com> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
This commit is contained in:
parent
7ea01da9c8
commit
bbe9df154b
@ -245,6 +245,7 @@ static int cmd_start_replace(int argc, char **argv)
|
||||
if (fdsrcdev < 0) {
|
||||
fprintf(stderr, "Error: Unable to open device '%s'\n",
|
||||
srcdev);
|
||||
fprintf(stderr, "\tTry using the devid instead of the path\n");
|
||||
goto leave_with_error;
|
||||
}
|
||||
ret = fstat(fdsrcdev, &st);
|
||||
|
Loading…
Reference in New Issue
Block a user