Blame SOURCES/kvm-backup-don-t-acquire-aio_context-in-backup_clean.patch

902636
From 619b3aac9790a7ca7c01846144395a318a9ab250 Mon Sep 17 00:00:00 2001
902636
From: Kevin Wolf <kwolf@redhat.com>
902636
Date: Wed, 8 Apr 2020 17:29:14 +0100
902636
Subject: [PATCH 3/6] backup: don't acquire aio_context in backup_clean
902636
902636
RH-Author: Kevin Wolf <kwolf@redhat.com>
902636
Message-id: <20200408172917.18712-4-kwolf@redhat.com>
902636
Patchwork-id: 94596
902636
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH 3/6] backup: don't acquire aio_context in backup_clean
902636
Bugzilla: 1817621
902636
RH-Acked-by: Eric Blake <eblake@redhat.com>
902636
RH-Acked-by: Danilo de Paula <ddepaula@redhat.com>
902636
RH-Acked-by: Max Reitz <mreitz@redhat.com>
902636
902636
From: Stefan Reiter <s.reiter@proxmox.com>
902636
902636
All code-paths leading to backup_clean (via job_clean) have the job's
902636
context already acquired. The job's context is guaranteed to be the same
902636
as the one used by backup_top via backup_job_create.
902636
902636
Since the previous logic effectively acquired the lock twice, this
902636
broke cleanup of backups for disks using IO threads, since the BDRV_POLL_WHILE
902636
in bdrv_backup_top_drop -> bdrv_do_drained_begin would only release the lock
902636
once, thus deadlocking with the IO thread.
902636
902636
This is a partial revert of 0abf2581717a19.
902636
902636
Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
902636
Reviewed-by: Max Reitz <mreitz@redhat.com>
902636
Message-Id: <20200407115651.69472-4-s.reiter@proxmox.com>
902636
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
902636
(cherry picked from commit eca0f3524a4eb57d03a56b0cbcef5527a0981ce4)
902636
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
902636
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
902636
---
902636
 block/backup.c | 4 ----
902636
 1 file changed, 4 deletions(-)
902636
902636
diff --git a/block/backup.c b/block/backup.c
902636
index 1383e21..ec50946 100644
902636
--- a/block/backup.c
902636
+++ b/block/backup.c
902636
@@ -135,11 +135,7 @@ static void backup_abort(Job *job)
902636
 static void backup_clean(Job *job)
902636
 {
902636
     BackupBlockJob *s = container_of(job, BackupBlockJob, common.job);
902636
-    AioContext *aio_context = bdrv_get_aio_context(s->backup_top);
902636
-
902636
-    aio_context_acquire(aio_context);
902636
     bdrv_backup_top_drop(s->backup_top);
902636
-    aio_context_release(aio_context);
902636
 }
902636
 
902636
 void backup_do_checkpoint(BlockJob *job, Error **errp)
902636
-- 
902636
1.8.3.1
902636