From patchwork Mon Aug 6 13:26:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 175349 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E76FE2C00A5 for ; Mon, 6 Aug 2012 23:26:48 +1000 (EST) Received: from localhost ([::1]:48797 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyNKZ-0004yr-0K for incoming@patchwork.ozlabs.org; Mon, 06 Aug 2012 09:26:47 -0400 Received: from eggs.gnu.org ([208.118.235.92]:39685) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyNKM-0004x2-C4 for qemu-devel@nongnu.org; Mon, 06 Aug 2012 09:26:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SyNKE-00089p-Oi for qemu-devel@nongnu.org; Mon, 06 Aug 2012 09:26:34 -0400 Received: from mail-yx0-f173.google.com ([209.85.213.173]:61814) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SyNKE-00088O-Jb for qemu-devel@nongnu.org; Mon, 06 Aug 2012 09:26:26 -0400 Received: by yenm4 with SMTP id m4so58100yen.4 for ; Mon, 06 Aug 2012 06:26:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer; bh=hrfK2SpGFGPSoYQ1eILgfgL7sFSi1eUAuN1a4u1OVdM=; b=Evef0icS5iDOrPOjDGr1eXYDBw2CTnaslkzSpu+nOzT+aROAACs0DgUs9bNqLlfx43 fa2D79uoPZHIEH+RpuqpifQA5JZ8j51aKy1QsOSIxi/Nll86FE9QoQU2ATM05jSFaRHZ My7FrpgzwX0pB+kMWF4Cz6WPFvFhA8MyBa9rm8fQRnyEVeyJUPRRsF/DNx+rsAyW1UtG XOyhLTsoUJGPMkq11b5kdP6B3Pr7T6CgA4pB1nVB+hP0b3R65kMC/8bMZTCVW4GmEVmR 5m8sPxmaHWpsBF6uiYp2c+gMXz30niXGtdrLRjEdKlD6MSkU21vuL37PPWpeZdl8XPwE UJaw== Received: by 10.66.88.202 with SMTP id bi10mr18261729pab.10.1344259585393; Mon, 06 Aug 2012 06:26:25 -0700 (PDT) Received: from yakj.usersys.redhat.com (93-34-169-1.ip50.fastwebnet.it. [93.34.169.1]) by mx.google.com with ESMTPS id pp2sm8979817pbb.1.2012.08.06.06.26.21 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 06 Aug 2012 06:26:23 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Mon, 6 Aug 2012 15:26:14 +0200 Message-Id: <1344259574-20190-1-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.11.2 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.213.173 Cc: avi@redhat.com, Stefan Hajnoczi Subject: [Qemu-devel] [PATCH] virtio: fix vhost handling X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Commit b1f416aa8d870fab71030abc9401cfc77b948e8e breaks vhost_net because it always registers the virtio_pci_host_notifier_read() handler function on the ioeventfd, even when vhost_net.ko is using the ioeventfd. The result is both QEMU and vhost_net.ko polling on the same eventfd and the virtio_net.ko guest driver seeing inconsistent results: # ifconfig eth0 192.168.0.1 netmask 255.255.255.0 virtio_net virtio0: output:id 0 is not a head! To fix this, proceed the same as we do for irqfd: add a parameter to virtio_queue_set_host_notifier_fd_handler and in that case only set the notifier, not the handler. Cc: Stefan Hajnoczi Signed-off-by: Paolo Bonzini Tested-by: Stefan Hajnoczi Reviewed-by: Stefan Hajnoczi --- hw/virtio-pci.c | 14 +++++++------- hw/virtio.c | 7 +++++-- hw/virtio.h | 3 ++- 3 file modificati, 14 inserzioni(+), 10 rimozioni(-) diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c index 3ab9747..6133626 100644 --- a/hw/virtio-pci.c +++ b/hw/virtio-pci.c @@ -160,7 +160,7 @@ static int virtio_pci_load_queue(void * opaque, int n, QEMUFile *f) } static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy *proxy, - int n, bool assign) + int n, bool assign, bool set_handler) { VirtQueue *vq = virtio_get_queue(proxy->vdev, n); EventNotifier *notifier = virtio_queue_get_host_notifier(vq); @@ -173,13 +173,13 @@ static int virtio_pci_set_host_notifier_internal(VirtIOPCIProxy *proxy, __func__, r); return r; } - virtio_queue_set_host_notifier_fd_handler(vq, true); + virtio_queue_set_host_notifier_fd_handler(vq, true, set_handler); memory_region_add_eventfd(&proxy->bar, VIRTIO_PCI_QUEUE_NOTIFY, 2, true, n, notifier); } else { memory_region_del_eventfd(&proxy->bar, VIRTIO_PCI_QUEUE_NOTIFY, 2, true, n, notifier); - virtio_queue_set_host_notifier_fd_handler(vq, false); + virtio_queue_set_host_notifier_fd_handler(vq, false, false); event_notifier_cleanup(notifier); } return r; @@ -200,7 +200,7 @@ static void virtio_pci_start_ioeventfd(VirtIOPCIProxy *proxy) continue; } - r = virtio_pci_set_host_notifier_internal(proxy, n, true); + r = virtio_pci_set_host_notifier_internal(proxy, n, true, true); if (r < 0) { goto assign_error; } @@ -214,7 +214,7 @@ assign_error: continue; } - r = virtio_pci_set_host_notifier_internal(proxy, n, false); + r = virtio_pci_set_host_notifier_internal(proxy, n, false, false); assert(r >= 0); } proxy->ioeventfd_started = false; @@ -235,7 +235,7 @@ static void virtio_pci_stop_ioeventfd(VirtIOPCIProxy *proxy) continue; } - r = virtio_pci_set_host_notifier_internal(proxy, n, false); + r = virtio_pci_set_host_notifier_internal(proxy, n, false, false); assert(r >= 0); } proxy->ioeventfd_started = false; @@ -683,7 +683,7 @@ static int virtio_pci_set_host_notifier(void *opaque, int n, bool assign) * currently only stops on status change away from ok, * reset, vmstop and such. If we do add code to start here, * need to check vmstate, device state etc. */ - return virtio_pci_set_host_notifier_internal(proxy, n, assign); + return virtio_pci_set_host_notifier_internal(proxy, n, assign, false); } static void virtio_pci_vmstate_change(void *opaque, bool running) diff --git a/hw/virtio.c b/hw/virtio.c index d146f86..89e6d6f 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -1021,13 +1021,16 @@ static void virtio_queue_host_notifier_read(EventNotifier *n) } } -void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign) +void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign, + bool set_handler) { - if (assign) { + if (assign && set_handler) { event_notifier_set_handler(&vq->host_notifier, virtio_queue_host_notifier_read); } else { event_notifier_set_handler(&vq->host_notifier, NULL); + } + if (!assign) { /* Test and clear notifier before after disabling event, * in case poll callback didn't have time to run. */ virtio_queue_host_notifier_read(&vq->host_notifier); diff --git a/hw/virtio.h b/hw/virtio.h index f8b5535..d6a8ea3 100644 --- a/hw/virtio.h +++ b/hw/virtio.h @@ -233,7 +233,8 @@ EventNotifier *virtio_queue_get_guest_notifier(VirtQueue *vq); void virtio_queue_set_guest_notifier_fd_handler(VirtQueue *vq, bool assign, bool with_irqfd); EventNotifier *virtio_queue_get_host_notifier(VirtQueue *vq); -void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign); +void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign, + bool set_handler); void virtio_queue_notify_vq(VirtQueue *vq); void virtio_irq(VirtQueue *vq); #endif