22c213
From bc78ee07bf400cbff0021367e05d308870471710 Mon Sep 17 00:00:00 2001
22c213
From: Sergio Lopez Pascual <slp@redhat.com>
22c213
Date: Fri, 7 Feb 2020 11:27:45 +0000
22c213
Subject: [PATCH 12/18] backup-top: Begin drain earlier
22c213
22c213
RH-Author: Sergio Lopez Pascual <slp@redhat.com>
22c213
Message-id: <20200207112749.25073-6-slp@redhat.com>
22c213
Patchwork-id: 93757
22c213
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH v2 5/9] backup-top: Begin drain earlier
22c213
Bugzilla: 1745606 1746217 1773517 1779036 1782111 1782175 1783965
22c213
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
22c213
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
22c213
RH-Acked-by: Max Reitz <mreitz@redhat.com>
22c213
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
22c213
22c213
From: Max Reitz <mreitz@redhat.com>
22c213
22c213
When dropping backup-top, we need to drain the node before freeing the
22c213
BlockCopyState.  Otherwise, requests may still be in flight and then the
22c213
assertion in shres_destroy() will fail.
22c213
22c213
(This becomes visible in intermittent failure of 056.)
22c213
22c213
Cc: qemu-stable@nongnu.org
22c213
Signed-off-by: Max Reitz <mreitz@redhat.com>
22c213
Message-id: 20191219182638.104621-1-mreitz@redhat.com
22c213
Signed-off-by: Max Reitz <mreitz@redhat.com>
22c213
(cherry picked from commit 503ca1262bab2c11c533a4816d1ff4297d4f58a6)
22c213
Signed-off-by: Sergio Lopez <slp@redhat.com>
22c213
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
22c213
---
22c213
 block/backup-top.c | 4 ++--
22c213
 1 file changed, 2 insertions(+), 2 deletions(-)
22c213
22c213
diff --git a/block/backup-top.c b/block/backup-top.c
22c213
index 7cdb1f8..818d3f2 100644
22c213
--- a/block/backup-top.c
22c213
+++ b/block/backup-top.c
22c213
@@ -257,12 +257,12 @@ void bdrv_backup_top_drop(BlockDriverState *bs)
22c213
     BDRVBackupTopState *s = bs->opaque;
22c213
     AioContext *aio_context = bdrv_get_aio_context(bs);
22c213
 
22c213
-    block_copy_state_free(s->bcs);
22c213
-
22c213
     aio_context_acquire(aio_context);
22c213
 
22c213
     bdrv_drained_begin(bs);
22c213
 
22c213
+    block_copy_state_free(s->bcs);
22c213
+
22c213
     s->active = false;
22c213
     bdrv_child_refresh_perms(bs, bs->backing, &error_abort);
22c213
     bdrv_replace_node(bs, backing_bs(bs), &error_abort);
22c213
-- 
22c213
1.8.3.1
22c213