Message ID | 1248109564-32540-1-git-send-email-glommer@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/hw/virtio-net.c b/hw/virtio-net.c index bda2397..75c9695 100644 --- a/hw/virtio-net.c +++ b/hw/virtio-net.c @@ -344,12 +344,9 @@ static void virtio_net_handle_rx(VirtIODevice *vdev, VirtQueue *vq) qemu_flush_queued_packets(n->vc); -#ifdef CONFIG_KVM /* We now have RX buffers, signal to the IO thread to break out of the select to re-poll the tap file descriptor */ - if (kvm_enabled()) - qemu_kvm_notify_work(); -#endif + qemu_notify_event(); } static int do_virtio_net_can_receive(VirtIONet *n, int bufsize)
replace qemu_kvm_notify_work() with qemu_notify_event(), that ends up calling it anyway. Signed-off-by: Glauber Costa <glommer@redhat.com> --- hw/virtio-net.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-)