2fe1fc7b2d
- kvm-virtio-introduce-macro-VIRTIO_CONFIG_IRQ_IDX.patch [bz#1905805] - kvm-virtio-pci-decouple-notifier-from-interrupt-process.patch [bz#1905805] - kvm-virtio-pci-decouple-the-single-vector-from-the-inter.patch [bz#1905805] - kvm-vhost-introduce-new-VhostOps-vhost_set_config_call.patch [bz#1905805] - kvm-vhost-vdpa-add-support-for-config-interrupt.patch [bz#1905805] - kvm-virtio-add-support-for-configure-interrupt.patch [bz#1905805] - kvm-vhost-add-support-for-configure-interrupt.patch [bz#1905805] - kvm-virtio-net-add-support-for-configure-interrupt.patch [bz#1905805] - kvm-virtio-mmio-add-support-for-configure-interrupt.patch [bz#1905805] - kvm-virtio-pci-add-support-for-configure-interrupt.patch [bz#1905805] - kvm-s390x-s390-virtio-ccw-Activate-zPCI-features-on-s390.patch [bz#2159408] - kvm-vhost-fix-vq-dirty-bitmap-syncing-when-vIOMMU-is-ena.patch [bz#2124856] - kvm-block-drop-bdrv_remove_filter_or_cow_child.patch [bz#2155112] - kvm-qed-Don-t-yield-in-bdrv_qed_co_drain_begin.patch [bz#2155112] - kvm-test-bdrv-drain-Don-t-yield-in-.bdrv_co_drained_begi.patch [bz#2155112] - kvm-block-Revert-.bdrv_drained_begin-end-to-non-coroutin.patch [bz#2155112] - kvm-block-Remove-drained_end_counter.patch [bz#2155112] - kvm-block-Inline-bdrv_drain_invoke.patch [bz#2155112] - kvm-block-Fix-locking-for-bdrv_reopen_queue_child.patch [bz#2155112] - kvm-block-Drain-individual-nodes-during-reopen.patch [bz#2155112] - kvm-block-Don-t-use-subtree-drains-in-bdrv_drop_intermed.patch [bz#2155112] - kvm-stream-Replace-subtree-drain-with-a-single-node-drai.patch [bz#2155112] - kvm-block-Remove-subtree-drains.patch [bz#2155112] - kvm-block-Call-drain-callbacks-only-once.patch [bz#2155112] - kvm-block-Remove-ignore_bds_parents-parameter-from-drain.patch [bz#2155112] - kvm-block-Drop-out-of-coroutine-in-bdrv_do_drained_begin.patch [bz#2155112] - kvm-block-Don-t-poll-in-bdrv_replace_child_noperm.patch [bz#2155112] - kvm-block-Remove-poll-parameter-from-bdrv_parent_drained.patch [bz#2155112] - kvm-accel-introduce-accelerator-blocker-API.patch [bz#1979276] - kvm-KVM-keep-track-of-running-ioctls.patch [bz#1979276] - kvm-kvm-Atomic-memslot-updates.patch [bz#1979276] - Resolves: bz#1905805 (support config interrupt in vhost-vdpa qemu) - Resolves: bz#2159408 ([s390x] VMs with ISM passthrough don't autostart after leapp upgrade from RHEL 8) - Resolves: bz#2124856 (VM with virtio interface and iommu=on will crash when try to migrate) - Resolves: bz#2155112 (Qemu coredump after do snapshot of mirrored top image and its converted base image(iothread enabled)) - Resolves: bz#1979276 (SVM: non atomic memslot updates cause boot failure with seabios and cpu-pm=on)
154 lines
5.3 KiB
Diff
154 lines
5.3 KiB
Diff
From 093c4a6834f3ec5a05390a3630ae4edec80885b8 Mon Sep 17 00:00:00 2001
|
|
From: Kevin Wolf <kwolf@redhat.com>
|
|
Date: Fri, 18 Nov 2022 18:40:57 +0100
|
|
Subject: [PATCH 15/31] test-bdrv-drain: Don't yield in
|
|
.bdrv_co_drained_begin/end()
|
|
|
|
RH-Author: Stefano Garzarella <sgarzare@redhat.com>
|
|
RH-MergeRequest: 135: block: Simplify drain to prevent QEMU from crashing during snapshot
|
|
RH-Bugzilla: 2155112
|
|
RH-Acked-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
|
RH-Acked-by: Hanna Czenczek <hreitz@redhat.com>
|
|
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
RH-Commit: [3/16] 5282d3e13cb85dfb480edb11b7eb2769248465df (sgarzarella/qemu-kvm-c-9-s)
|
|
|
|
We want to change .bdrv_co_drained_begin/end() back to be non-coroutine
|
|
callbacks, so in preparation, avoid yielding in their implementation.
|
|
|
|
This does almost the same as the existing logic in bdrv_drain_invoke(),
|
|
by creating and entering coroutines internally. However, since the test
|
|
case is by far the heaviest user of coroutine code in drain callbacks,
|
|
it is preferable to have the complexity in the test case rather than the
|
|
drain core, which is already complicated enough without this.
|
|
|
|
The behaviour for bdrv_drain_begin() is unchanged because we increase
|
|
bs->in_flight and this is still polled. However, bdrv_drain_end()
|
|
doesn't wait for the spawned coroutine to complete any more. This is
|
|
fine, we don't rely on bdrv_drain_end() restarting all operations
|
|
immediately before the next aio_poll().
|
|
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
|
|
Reviewed-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
|
|
Reviewed-by: Hanna Reitz <hreitz@redhat.com>
|
|
Message-Id: <20221118174110.55183-3-kwolf@redhat.com>
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
(cherry picked from commit 7bce1c299834557bffd92294608ea528648cfe75)
|
|
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
|
|
---
|
|
tests/unit/test-bdrv-drain.c | 64 ++++++++++++++++++++++++++----------
|
|
1 file changed, 46 insertions(+), 18 deletions(-)
|
|
|
|
diff --git a/tests/unit/test-bdrv-drain.c b/tests/unit/test-bdrv-drain.c
|
|
index 09dc4a4891..24f34e24ad 100644
|
|
--- a/tests/unit/test-bdrv-drain.c
|
|
+++ b/tests/unit/test-bdrv-drain.c
|
|
@@ -38,12 +38,22 @@ typedef struct BDRVTestState {
|
|
bool sleep_in_drain_begin;
|
|
} BDRVTestState;
|
|
|
|
+static void coroutine_fn sleep_in_drain_begin(void *opaque)
|
|
+{
|
|
+ BlockDriverState *bs = opaque;
|
|
+
|
|
+ qemu_co_sleep_ns(QEMU_CLOCK_REALTIME, 100000);
|
|
+ bdrv_dec_in_flight(bs);
|
|
+}
|
|
+
|
|
static void coroutine_fn bdrv_test_co_drain_begin(BlockDriverState *bs)
|
|
{
|
|
BDRVTestState *s = bs->opaque;
|
|
s->drain_count++;
|
|
if (s->sleep_in_drain_begin) {
|
|
- qemu_co_sleep_ns(QEMU_CLOCK_REALTIME, 100000);
|
|
+ Coroutine *co = qemu_coroutine_create(sleep_in_drain_begin, bs);
|
|
+ bdrv_inc_in_flight(bs);
|
|
+ aio_co_enter(bdrv_get_aio_context(bs), co);
|
|
}
|
|
}
|
|
|
|
@@ -1916,6 +1926,21 @@ static int coroutine_fn bdrv_replace_test_co_preadv(BlockDriverState *bs,
|
|
return 0;
|
|
}
|
|
|
|
+static void coroutine_fn bdrv_replace_test_drain_co(void *opaque)
|
|
+{
|
|
+ BlockDriverState *bs = opaque;
|
|
+ BDRVReplaceTestState *s = bs->opaque;
|
|
+
|
|
+ /* Keep waking io_co up until it is done */
|
|
+ while (s->io_co) {
|
|
+ aio_co_wake(s->io_co);
|
|
+ s->io_co = NULL;
|
|
+ qemu_coroutine_yield();
|
|
+ }
|
|
+ s->drain_co = NULL;
|
|
+ bdrv_dec_in_flight(bs);
|
|
+}
|
|
+
|
|
/**
|
|
* If .drain_count is 0, wake up .io_co if there is one; and set
|
|
* .was_drained.
|
|
@@ -1926,20 +1951,27 @@ static void coroutine_fn bdrv_replace_test_co_drain_begin(BlockDriverState *bs)
|
|
BDRVReplaceTestState *s = bs->opaque;
|
|
|
|
if (!s->drain_count) {
|
|
- /* Keep waking io_co up until it is done */
|
|
- s->drain_co = qemu_coroutine_self();
|
|
- while (s->io_co) {
|
|
- aio_co_wake(s->io_co);
|
|
- s->io_co = NULL;
|
|
- qemu_coroutine_yield();
|
|
- }
|
|
- s->drain_co = NULL;
|
|
-
|
|
+ s->drain_co = qemu_coroutine_create(bdrv_replace_test_drain_co, bs);
|
|
+ bdrv_inc_in_flight(bs);
|
|
+ aio_co_enter(bdrv_get_aio_context(bs), s->drain_co);
|
|
s->was_drained = true;
|
|
}
|
|
s->drain_count++;
|
|
}
|
|
|
|
+static void coroutine_fn bdrv_replace_test_read_entry(void *opaque)
|
|
+{
|
|
+ BlockDriverState *bs = opaque;
|
|
+ char data;
|
|
+ QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, &data, 1);
|
|
+ int ret;
|
|
+
|
|
+ /* Queue a read request post-drain */
|
|
+ ret = bdrv_replace_test_co_preadv(bs, 0, 1, &qiov, 0);
|
|
+ g_assert(ret >= 0);
|
|
+ bdrv_dec_in_flight(bs);
|
|
+}
|
|
+
|
|
/**
|
|
* Reduce .drain_count, set .was_undrained once it reaches 0.
|
|
* If .drain_count reaches 0 and the node has a backing file, issue a
|
|
@@ -1951,17 +1983,13 @@ static void coroutine_fn bdrv_replace_test_co_drain_end(BlockDriverState *bs)
|
|
|
|
g_assert(s->drain_count > 0);
|
|
if (!--s->drain_count) {
|
|
- int ret;
|
|
-
|
|
s->was_undrained = true;
|
|
|
|
if (bs->backing) {
|
|
- char data;
|
|
- QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, &data, 1);
|
|
-
|
|
- /* Queue a read request post-drain */
|
|
- ret = bdrv_replace_test_co_preadv(bs, 0, 1, &qiov, 0);
|
|
- g_assert(ret >= 0);
|
|
+ Coroutine *co = qemu_coroutine_create(bdrv_replace_test_read_entry,
|
|
+ bs);
|
|
+ bdrv_inc_in_flight(bs);
|
|
+ aio_co_enter(bdrv_get_aio_context(bs), co);
|
|
}
|
|
}
|
|
}
|
|
--
|
|
2.31.1
|
|
|