From: Wen Congyang <wency@cn.fujitsu.com>
To: Paolo Bonzini <pbonzini@redhat.com>,
qemu-devl <qemu-devel@nongnu.org>, Fam Zheng <famz@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>, Jeff Cody <jcody@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v3] mirror: correct buf_size
Date: Fri, 15 May 2015 14:53:16 +0800 [thread overview]
Message-ID: <555597DC.4090208@cn.fujitsu.com> (raw)
In-Reply-To: <55559602.7040405@redhat.com>
On 05/15/2015 02:45 PM, Paolo Bonzini wrote:
>
>
> On 15/05/2015 03:37, Wen Congyang wrote:
>> If bus_size is less than 0, the command fails.
>> If buf_size % granularity is not 0, mirror_free_init() will
>> do dangerous things.
>>
>> Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
>> ---
>> block/mirror.c | 6 +++++-
>> 1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/block/mirror.c b/block/mirror.c
>> index 58f391a..7732f8b 100644
>> --- a/block/mirror.c
>> +++ b/block/mirror.c
>> @@ -671,6 +671,10 @@ static void mirror_start_job(BlockDriverState *bs, BlockDriverState *target,
>> return;
>> }
>>
>> + if (buf_size < 0) {
>
> This should be <=.
But commit_active_start() passes 0...
Thanks
Wen Congyang
>
> Jeff, can you adjust when committing?
>
> Paolo
>
>> + error_setg(errp, "Invalid parameter '%s'", "buf-size");
>> + return;
>> + }
>>
>> s = block_job_create(driver, bs, speed, cb, opaque, errp);
>> if (!s) {
>> @@ -684,7 +688,7 @@ static void mirror_start_job(BlockDriverState *bs, BlockDriverState *target,
>> s->is_none_mode = is_none_mode;
>> s->base = base;
>> s->granularity = granularity;
>> - s->buf_size = MAX(buf_size, granularity);
>> + s->buf_size = ROUND_UP(buf_size, granularity);
>>
>> s->dirty_bitmap = bdrv_create_dirty_bitmap(bs, granularity, NULL, errp);
>> if (!s->dirty_bitmap) {
>>
> .
>
next prev parent reply other threads:[~2015-05-15 6:50 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-15 1:37 [Qemu-devel] [PATCH v3] mirror: correct buf_size Wen Congyang
2015-05-15 1:53 ` Fam Zheng
2015-05-15 6:45 ` Paolo Bonzini
2015-05-15 6:53 ` Wen Congyang [this message]
2015-05-15 7:26 ` Paolo Bonzini
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=555597DC.4090208@cn.fujitsu.com \
--to=wency@cn.fujitsu.com \
--cc=famz@redhat.com \
--cc=jcody@redhat.com \
--cc=kwolf@redhat.com \
--cc=pbonzini@redhat.com \
--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).