diff options
author | Shahar Havivi <shaharh@redhat.com> | 2010-07-10 18:59:06 +0300 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-07-13 17:48:17 +0200 |
commit | 31f54f24bb4a507543c3732c3ac1134ca3a11687 (patch) | |
tree | f1d7b0d542058ec626f2644560de34d425d3b7e9 /block-migration.c | |
parent | 5fb58b067ab02afd6bb1737b04f8d3d8f23a0c8d (diff) |
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 <shaharh@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block-migration.c')
-rw-r--r-- | block-migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |