diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-10-21 22:48:13 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-10-30 20:06:20 +0200 |
commit | e616c2f390634a241f7899ff4c52bed9803103c6 (patch) | |
tree | bda679e5cbf2fd8d577f703b5bc2fda5f5aa93a4 /include/hw | |
parent | 6019f3b966d5764fd655b57887599e5e2d544f73 (diff) | |
download | qemu-e616c2f390634a241f7899ff4c52bed9803103c6.tar.gz qemu-e616c2f390634a241f7899ff4c52bed9803103c6.tar.bz2 qemu-e616c2f390634a241f7899ff4c52bed9803103c6.zip |
virtio: remove ioeventfd_disabled altogether
Now that there is not anymore a switch from the generic ioeventfd handler
to the dataplane handler, virtio_bus_set_host_notifier(assign=true) is
always called with !bus->ioeventfd_started, hence virtio_bus_stop_ioeventfd
does nothing in this case. Move the invocation to vhost.c, which is the
only place that needs it.
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/virtio/virtio-bus.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/hw/virtio/virtio-bus.h b/include/hw/virtio/virtio-bus.h index af6b5c4368..cbdf745c84 100644 --- a/include/hw/virtio/virtio-bus.h +++ b/include/hw/virtio/virtio-bus.h @@ -94,12 +94,6 @@ struct VirtioBusState { BusState parent_obj; /* - * Set if the default ioeventfd handlers are disabled by vhost - * or dataplane. - */ - bool ioeventfd_disabled; - - /* * Set if ioeventfd has been started. */ bool ioeventfd_started; |