@@ -247,6 +247,7 @@ BlockDriverState *bdrv_new(void)
qemu_co_queue_init(&bs->throttled_reqs[1]);
bs->refcnt = 1;
bs->aio_context = qemu_get_aio_context();
+ qemu_event_init(&bs->in_flight_event, true);
QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
@@ -2385,6 +2386,7 @@ static void bdrv_delete(BlockDriverState *bs)
bdrv_make_anon(bs);
QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
+ qemu_event_destroy(&bs->in_flight_event);
g_free(bs);
}
@@ -239,11 +239,21 @@ bool bdrv_requests_pending(BlockDriverState *bs)
static bool bdrv_drain_io_recurse(BlockDriverState *bs)
{
- BdrvChild *child;
+ AioContext *ctx = bdrv_get_aio_context(bs);
bool waited = false;
+ BdrvChild *child;
while (atomic_read(&bs->in_flight) > 0) {
- aio_poll(bdrv_get_aio_context(bs), true);
+ if (aio_context_in_iothread(ctx)) {
+ aio_poll(ctx, true);
+ } else {
+ qemu_event_reset(&bs->in_flight_event);
+ if (atomic_read(&bs->in_flight) > 0) {
+ aio_context_release(ctx);
+ qemu_event_wait(&bs->in_flight_event);
+ aio_context_acquire(ctx);
+ }
+ }
waited = true;
}
@@ -455,7 +465,9 @@ void bdrv_inc_in_flight(BlockDriverState *bs)
void bdrv_dec_in_flight(BlockDriverState *bs)
{
- atomic_dec(&bs->in_flight);
+ if (atomic_fetch_dec(&bs->in_flight) == 1) {
+ qemu_event_set(&bs->in_flight_event);
+ }
}
static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self)
@@ -404,9 +404,12 @@ struct BlockDriverState {
/* Callback before write request is processed */
NotifierWithReturnList before_write_notifiers;
- /* number of in-flight requests; overall and serialising */
+ /* number of in-flight requests; overall and serialising.
+ * in_flight_event is set when in_flight becomes 0.
+ */
unsigned int in_flight;
unsigned int serialising_in_flight;
+ QemuEvent in_flight_event;
/* I/O throttling.
* throttle_state tells us if this BDS has I/O limits configured.