From patchwork Sat Jul 10 11:16:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Block migration fail, ignore error from bdrv_getlength Date: Sat, 10 Jul 2010 01:16:02 -0000 From: Shahar Havivi X-Patchwork-Id: 58472 Message-Id: <20100710111559.GA4129@redhat.com> To: qemu-devel@nongnu.org When there is no block driver associate with BlockDriverState bdrv_getlength returns -ENOMEDIUM that cause block migration to fail. Signed-off-by: Shahar Havivi --- block-migration.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/block-migration.c b/block-migration.c index 7db6f02..3d78748 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; }