qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Wen Congyang <wency@cn.fujitsu.com>,
	qemu-devl <qemu-devel@nongnu.org>, Kevin Wolf <kwolf@redhat.com>,
	Jeff Cody <jcody@redhat.com>, Fam Zheng <famz@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] mirror: correct buf_size
Date: Thu, 14 May 2015 12:20:57 +0200	[thread overview]
Message-ID: <55547709.2080709@redhat.com> (raw)
In-Reply-To: <555473F4.1070709@cn.fujitsu.com>



On 14/05/2015 12:07, Wen Congyang wrote:
> Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
> ---
>  block/mirror.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/block/mirror.c b/block/mirror.c
> index 58f391a..bb6bc27 100644
> --- a/block/mirror.c
> +++ b/block/mirror.c
> @@ -686,6 +686,10 @@ static void mirror_start_job(BlockDriverState *bs, BlockDriverState *target,
>      s->granularity = granularity;
>      s->buf_size = MAX(buf_size, granularity);
>  
> +    if (s->buf_size % granularity != 0) {
> +        s->buf_size = ROUND_UP(s->buf_size, granularity);
> +    }
> +

Good catch!  But I think the "if" is not needed, and also this removes
the need for the s->buf_size assignment before.

The ROUND_UP is really the only thing that is needed.

Paolo

      reply	other threads:[~2015-05-14 10:21 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-14 10:07 [Qemu-devel] [PATCH] mirror: correct buf_size Wen Congyang
2015-05-14 10:20 ` Paolo Bonzini [this message]

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=55547709.2080709@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=famz@redhat.com \
    --cc=jcody@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=wency@cn.fujitsu.com \
    /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).