diff mbox

Block migration fail, ignore error from bdrv_getlength

Message ID 20100710111559.GA4129@redhat.com
State New
Headers show

Commit Message

Shahar Havivi July 10, 2010, 11:16 a.m. UTC
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>
---
 block-migration.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

shavivi@redhat.com July 10, 2010, 12:19 p.m. UTC | #1
It need to be sectors <= 0,
Will send v2

On Jul 10, 2010, at 14:15, Shahar Havivi <shaharh@redhat.com> wrote:

> 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>
> ---
> 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;
>         }
> 
> -- 
> 1.7.1.1
>
diff mbox

Patch

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;
         }