diff mbox

[v4] mirror: Check for bdrv_get_info result

Message ID 1398766457-16188-1-git-send-email-famz@redhat.com
State New
Headers show

Commit Message

Fam Zheng April 29, 2014, 10:14 a.m. UTC
bdrv_get_info could fail. Add check before using the returned value.

Signed-off-by: Fam Zheng <famz@redhat.com>

---
v4: Don't call block_job_completed twice. (kevin)
v3: Don't leak things, jump to immediate_exit. (Kevin)

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 block/mirror.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Kevin Wolf April 29, 2014, 11:43 a.m. UTC | #1
Am 29.04.2014 um 12:14 hat Fam Zheng geschrieben:
> bdrv_get_info could fail. Add check before using the returned value.
> 
> Signed-off-by: Fam Zheng <famz@redhat.com>
> 
> ---
> v4: Don't call block_job_completed twice. (kevin)
> v3: Don't leak things, jump to immediate_exit. (Kevin)
> 
> Signed-off-by: Fam Zheng <famz@redhat.com>

Thanks, applied to the block branch.

Kevin
diff mbox

Patch

diff --git a/block/mirror.c b/block/mirror.c
index 36f4f8e..aadc618 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -339,7 +339,10 @@  static void coroutine_fn mirror_run(void *opaque)
     bdrv_get_backing_filename(s->target, backing_filename,
                               sizeof(backing_filename));
     if (backing_filename[0] && !s->target->backing_hd) {
-        bdrv_get_info(s->target, &bdi);
+        ret = bdrv_get_info(s->target, &bdi);
+        if (ret < 0) {
+            goto immediate_exit;
+        }
         if (s->granularity < bdi.cluster_size) {
             s->buf_size = MAX(s->buf_size, bdi.cluster_size);
             s->cow_bitmap = bitmap_new(length);