]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
virtio-net: set/clear vhost_started in reverse order
authorMichael S. Tsirkin <mst@redhat.com>
Tue, 25 Dec 2012 15:38:59 +0000 (17:38 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 7 Jan 2013 17:42:23 +0000 (19:42 +0200)
As vhost started is cleared last thing on stop,
set it first things on start. This makes it
possible to use vhost_started while start is in
progress which is used by follow-up patches.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
hw/virtio-net.c

index 5d03b31c1b9938cfd6b7432241f9ea8dde9feb08..b756d57b1a768725da47d8672ef04c9d8c2b73bf 100644 (file)
@@ -126,12 +126,12 @@ static void virtio_net_vhost_status(VirtIONet *n, uint8_t status)
         if (!vhost_net_query(tap_get_vhost_net(n->nic->nc.peer), &n->vdev)) {
             return;
         }
+        n->vhost_started = 1;
         r = vhost_net_start(tap_get_vhost_net(n->nic->nc.peer), &n->vdev);
         if (r < 0) {
             error_report("unable to start vhost net: %d: "
                          "falling back on userspace virtio", -r);
-        } else {
-            n->vhost_started = 1;
+            n->vhost_started = 0;
         }
     } else {
         vhost_net_stop(tap_get_vhost_net(n->nic->nc.peer), &n->vdev);