qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Kevin Wolf <kwolf@redhat.com>
To: Pierre Riteau <Pierre.Riteau@irisa.fr>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Avoid divide by zero when there is no block device to migrate
Date: Tue, 11 Jan 2011 12:54:17 +0100	[thread overview]
Message-ID: <4D2C44E9.5090008@redhat.com> (raw)
In-Reply-To: <1293310330-12067-1-git-send-email-Pierre.Riteau@irisa.fr>

Am 25.12.2010 21:52, schrieb Pierre Riteau:
> When block migration is requested and no read-write block device is
> present, a divide by zero exception is triggered because
> total_sector_sum equals zero.
> 
> Signed-off-by: Pierre Riteau <Pierre.Riteau@irisa.fr>

Maybe in this case we should generate an error before actually starting
with block migration. If you bothered to request block migration you
certainly didn't have in mind to do nothing.

> ---
>  block-migration.c |    6 +++++-
>  1 files changed, 5 insertions(+), 1 deletions(-)
> 
> diff --git a/block-migration.c b/block-migration.c
> index 1475325..d62d63e 100644
> --- a/block-migration.c
> +++ b/block-migration.c
> @@ -350,7 +350,11 @@ static int blk_mig_save_bulked_block(Monitor *mon, QEMUFile *f)
>          }
>      }
>  
> -    progress = completed_sector_sum * 100 / block_mig_state.total_sector_sum;
> +    if (block_mig_state.total_sector_sum != 0) {
> +        progress = completed_sector_sum * 100 / block_mig_state.total_sector_sum;

This exceeds 80 characters per line.

> +    } else {
> +        progress = 100;
> +    }
>      if (progress != block_mig_state.prev_progress) {
>          block_mig_state.prev_progress = progress;
>          qemu_put_be64(f, (progress << BDRV_SECTOR_BITS)

Kevin

  parent reply	other threads:[~2011-01-11 11:52 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-25 20:52 [Qemu-devel] [PATCH] Avoid divide by zero when there is no block device to migrate Pierre Riteau
2011-01-09 19:37 ` [Qemu-devel] " Pierre Riteau
2011-01-11 11:54 ` Kevin Wolf [this message]
2011-01-12 11:01   ` [Qemu-devel] " Pierre Riteau
2011-01-12 11:40     ` Kevin Wolf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4D2C44E9.5090008@redhat.com \
    --to=kwolf@redhat.com \
    --cc=Pierre.Riteau@irisa.fr \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).