]> git.proxmox.com Git - mirror_qemu.git/commit
xen-bus/block: explicitly assign event channels to an AioContext
authorPaul Durrant <pdurrant@amazon.com>
Mon, 16 Dec 2019 14:34:51 +0000 (14:34 +0000)
committerAnthony PERARD <anthony.perard@citrix.com>
Thu, 27 Feb 2020 11:50:30 +0000 (11:50 +0000)
commit32d0b7be68216f130dc962533c6fc2f9ad848a8b
tree67a0eb443b63b2e1ec3d00261cf354aa54710847
parentb8030af450b629ce8066512c6f2a69afacf8324a
xen-bus/block: explicitly assign event channels to an AioContext

It is not safe to close an event channel from the QEMU main thread when
that channel's poller is running in IOThread context.

This patch adds a new xen_device_set_event_channel_context() function
to explicitly assign the channel AioContext, and modifies
xen_device_bind_event_channel() to initially assign the channel's poller
to the QEMU main thread context. The code in xen-block's dataplane is
then modified to assign the channel to IOThread context during
xen_block_dataplane_start() and de-assign it during in
xen_block_dataplane_stop(), such that the channel is always assigned
back to main thread context before it is closed. aio_set_fd_handler()
already deals with all the necessary synchronization when moving an fd
between AioContext-s so no extra code is needed to manage this.

Reported-by: Julien Grall <jgrall@amazon.com>
Signed-off-by: Paul Durrant <pdurrant@amazon.com>
Reviewed-by: Anthony PERARD <anthony.perard@citrix.com>
Message-Id: <20191216143451.19024-1-pdurrant@amazon.com>
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
hw/block/dataplane/xen-block.c
hw/xen/xen-bus.c
include/hw/xen/xen-bus.h