qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/5] Block migration fail, ignore error from bdrv_ge


From: Kevin Wolf
Subject: [Qemu-devel] [PATCH 2/5] Block migration fail, ignore error from bdrv_getlength
Date: Tue, 13 Jul 2010 17:54:23 +0200

From: Shahar Havivi <address@hidden>

When there is no block driver associate with BlockDriverState bdrv_getlength
returns -ENOMEDIUM that cause block migration to fail

Signed-off-by: Shahar Havivi <address@hidden>
Signed-off-by: Kevin Wolf <address@hidden>
---
 block-migration.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block-migration.c b/block-migration.c
index 7db6f02..a77106e 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;
         }
 
-- 
1.7.1.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]