]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
net/virtio: fix dev_unplug_pending
authorJens Freimann <jfreimann@redhat.com>
Wed, 20 Nov 2019 15:49:48 +0000 (16:49 +0100)
committerJason Wang <jasowang@redhat.com>
Mon, 25 Nov 2019 15:30:28 +0000 (23:30 +0800)
.dev_unplug_pending is set up by virtio-net code indepent of failover
support was set for the device or not. This gives a wrong result when
we check for existing primary devices in migration code.

Fix this by actually calling dev_unplug_pending() instead of just
checking if the function pointer was set. When the feature was not
negotiated dev_unplug_pending() will always return false. This prevents
us from going into the wait-unplug state when there's no primary device
present.

Fixes: 9711cd0dfc3f ("net/virtio: add failover support")
Signed-off-by: Jens Freimann <jfreimann@redhat.com>
Reported-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
hw/net/virtio-net.c
migration/savevm.c

index 97a5113f7e472b82070203d5e97b98abfa39ac55..946039c0dc3d2b9e9ea8875fea483c930af164ca 100644 (file)
@@ -3124,6 +3124,9 @@ static bool primary_unplug_pending(void *opaque)
     VirtIODevice *vdev = VIRTIO_DEVICE(dev);
     VirtIONet *n = VIRTIO_NET(vdev);
 
+    if (!virtio_vdev_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
+        return false;
+    }
     return n->primary_dev ? n->primary_dev->pending_deleted_event : false;
 }
 
index 966a9c3bdbcd136373f01a316fa77204f82ac53c..a71b930b91f71ed9763fcb07b525a2b7a8b5dc7c 100644 (file)
@@ -1119,7 +1119,8 @@ int qemu_savevm_nr_failover_devices(void)
     int n = 0;
 
     QTAILQ_FOREACH(se, &savevm_state.handlers, entry) {
-        if (se->vmsd && se->vmsd->dev_unplug_pending) {
+        if (se->vmsd && se->vmsd->dev_unplug_pending &&
+            se->vmsd->dev_unplug_pending(se->opaque)) {
             n++;
         }
     }