thebeanogamer / rpms / qemu-kvm

Forked from rpms/qemu-kvm 5 months ago
Clone

Blame SOURCES/kvm-block-Fix-locking-for-bdrv_reopen_queue_child.patch

7f1c5b
From e790b4c20a5124239fe93e91fbc87745e5f2cea6 Mon Sep 17 00:00:00 2001
7f1c5b
From: Kevin Wolf <kwolf@redhat.com>
7f1c5b
Date: Fri, 18 Nov 2022 18:41:01 +0100
7f1c5b
Subject: [PATCH 19/31] block: Fix locking for bdrv_reopen_queue_child()
7f1c5b
7f1c5b
RH-Author: Stefano Garzarella <sgarzare@redhat.com>
7f1c5b
RH-MergeRequest: 135: block: Simplify drain to prevent QEMU from crashing during snapshot
7f1c5b
RH-Bugzilla: 2155112
7f1c5b
RH-Acked-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
7f1c5b
RH-Acked-by: Hanna Czenczek <hreitz@redhat.com>
7f1c5b
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
7f1c5b
RH-Commit: [7/16] 46bb54506c4400b9a1bf66b6bd7987ff67260003 (sgarzarella/qemu-kvm-c-9-s)
7f1c5b
7f1c5b
Callers don't agree whether bdrv_reopen_queue_child() should be called
7f1c5b
with the AioContext lock held or not. Standardise on holding the lock
7f1c5b
(as done by QMP blockdev-reopen and the replication block driver) and
7f1c5b
fix bdrv_reopen() to do the same.
7f1c5b
7f1c5b
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
7f1c5b
Message-Id: <20221118174110.55183-7-kwolf@redhat.com>
7f1c5b
Reviewed-by: Hanna Reitz <hreitz@redhat.com>
7f1c5b
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
7f1c5b
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
7f1c5b
(cherry picked from commit 2e117866d7c96cc17e84cd2946fee1bf3292d814)
7f1c5b
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
7f1c5b
---
7f1c5b
 block.c | 7 +++++--
7f1c5b
 1 file changed, 5 insertions(+), 2 deletions(-)
7f1c5b
7f1c5b
diff --git a/block.c b/block.c
7f1c5b
index 7999fd08c5..46df410b07 100644
7f1c5b
--- a/block.c
7f1c5b
+++ b/block.c
7f1c5b
@@ -4151,6 +4151,8 @@ static bool bdrv_recurse_has_child(BlockDriverState *bs,
7f1c5b
  * bs_queue, or the existing bs_queue being used.
7f1c5b
  *
7f1c5b
  * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
7f1c5b
+ *
7f1c5b
+ * To be called with bs->aio_context locked.
7f1c5b
  */
7f1c5b
 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
7f1c5b
                                                  BlockDriverState *bs,
7f1c5b
@@ -4309,6 +4311,7 @@ static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
7f1c5b
     return bs_queue;
7f1c5b
 }
7f1c5b
 
7f1c5b
+/* To be called with bs->aio_context locked */
7f1c5b
 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
7f1c5b
                                     BlockDriverState *bs,
7f1c5b
                                     QDict *options, bool keep_old_opts)
7f1c5b
@@ -4473,11 +4476,11 @@ int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
7f1c5b
     GLOBAL_STATE_CODE();
7f1c5b
 
7f1c5b
     bdrv_subtree_drained_begin(bs);
7f1c5b
+    queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
7f1c5b
+
7f1c5b
     if (ctx != qemu_get_aio_context()) {
7f1c5b
         aio_context_release(ctx);
7f1c5b
     }
7f1c5b
-
7f1c5b
-    queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
7f1c5b
     ret = bdrv_reopen_multiple(queue, errp);
7f1c5b
 
7f1c5b
     if (ctx != qemu_get_aio_context()) {
7f1c5b
-- 
7f1c5b
2.31.1
7f1c5b