From 31f54f24bb4a507543c3732c3ac1134ca3a11687 Mon Sep 17 00:00:00 2001 From: Shahar Havivi Date: Sat, 10 Jul 2010 18:59:06 +0300 Subject: [PATCH] Block migration fail, ignore error from bdrv_getlength When there is no block driver associate with BlockDriverState bdrv_getlength returns -ENOMEDIUM that cause block migration to fail Signed-off-by: Shahar Havivi Signed-off-by: Kevin Wolf --- block-migration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block-migration.c b/block-migration.c index 7db6f02b96..a77106e25c 100644 --- a/block-migration.c +++ b/block-migration.c @@ -238,7 +238,7 @@ static void init_blk_migration_it(void *opaque, BlockDriverState *bs) if (!bdrv_is_read_only(bs)) { sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS; - if (sectors == 0) { + if (sectors <= 0) { return; } -- 2.11.0