diff options
author | Juan Quintela | 2020-11-18 09:37:28 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2020-12-08 19:48:57 +0100 |
commit | 3d1c7a9782d19052505aabc8f2c134ccd6f3f3fb (patch) | |
tree | f01ad42307ad5496303b5962c39110c452c7d2ff /hw | |
parent | failover: Remove external partially_hotplugged property (diff) | |
download | qemu-3d1c7a9782d19052505aabc8f2c134ccd6f3f3fb.tar.gz qemu-3d1c7a9782d19052505aabc8f2c134ccd6f3f3fb.tar.xz qemu-3d1c7a9782d19052505aabc8f2c134ccd6f3f3fb.zip |
failover: qdev_device_add() returns err or dev set
Never both.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20201118083748.1328-8-quintela@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/net/virtio-net.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c index 6ca85627d8..3e82108d42 100644 --- a/hw/net/virtio-net.c +++ b/hw/net/virtio-net.c @@ -803,13 +803,6 @@ static void failover_add_primary(VirtIONet *n, Error **errp) if (err) { qemu_opts_del(n->primary_device_opts); } - if (n->primary_dev) { - if (err) { - qdev_unplug(n->primary_dev, &err); - qdev_set_id(n->primary_dev, ""); - - } - } } else { error_setg(errp, "Primary device not found"); error_append_hint(errp, "Virtio-net failover will not work. Make " |