diff mbox

mirror: correct buf_size

Message ID 555473F4.1070709@cn.fujitsu.com
State New
Headers show

Commit Message

Wen Congyang May 14, 2015, 10:07 a.m. UTC
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 | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Paolo Bonzini May 14, 2015, 10:20 a.m. UTC | #1
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
diff mbox

Patch

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);
+    }
+
     s->dirty_bitmap = bdrv_create_dirty_bitmap(bs, granularity, NULL, errp);
     if (!s->dirty_bitmap) {
         return;