Skip to content

Commit

Permalink
failover: Remove primary_device_opts
Browse files Browse the repository at this point in the history
It was really only used once, in failover_add_primary().  Just search
for it on global opts when it is needed.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-Id: <20201118083748.1328-11-quintela@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
  • Loading branch information
Juan Quintela authored and mstsirkin committed Dec 8, 2020
1 parent 518eda9 commit 19e49bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
21 changes: 5 additions & 16 deletions hw/net/virtio-net.c
Expand Up @@ -791,17 +791,17 @@ static inline uint64_t virtio_net_supported_guest_offloads(VirtIONet *n)
static void failover_add_primary(VirtIONet *n, Error **errp)
{
Error *err = NULL;
QemuOpts *opts;

if (n->primary_dev) {
return;
}

n->primary_device_opts = qemu_opts_find(qemu_find_opts("device"),
n->primary_device_id);
if (n->primary_device_opts) {
n->primary_dev = qdev_device_add(n->primary_device_opts, &err);
opts = qemu_opts_find(qemu_find_opts("device"), n->primary_device_id);
if (opts) {
n->primary_dev = qdev_device_add(opts, &err);
if (err) {
qemu_opts_del(n->primary_device_opts);
qemu_opts_del(opts);
}
} else {
error_setg(errp, "Primary device not found");
Expand Down Expand Up @@ -856,7 +856,6 @@ static DeviceState *virtio_connect_failover_devices(VirtIONet *n, Error **errp)
prim_dev = virtio_net_find_primary(n, &err);
if (prim_dev) {
n->primary_device_id = g_strdup(prim_dev->id);
n->primary_device_opts = prim_dev->opts;
} else {
error_propagate(errp, err);
}
Expand Down Expand Up @@ -3113,14 +3112,6 @@ static bool failover_replug_primary(VirtIONet *n, Error **errp)
if (!pdev->partially_hotplugged) {
return true;
}
if (!n->primary_device_opts) {
n->primary_device_opts = qemu_opts_from_qdict(qemu_find_opts("device"),
n->primary_device_dict,
errp);
if (!n->primary_device_opts) {
return false;
}
}
primary_bus = n->primary_dev->parent_bus;
if (!primary_bus) {
error_setg(errp, "virtio_net: couldn't find primary bus");
Expand Down Expand Up @@ -3211,8 +3202,6 @@ static int virtio_net_primary_should_be_hidden(DeviceListener *listener,
goto out;
}

n->primary_device_opts = device_opts;

/* failover_primary_hidden is set during feature negotiation */
hide = qatomic_read(&n->failover_primary_hidden);

Expand Down
1 change: 0 additions & 1 deletion include/hw/virtio/virtio-net.h
Expand Up @@ -202,7 +202,6 @@ struct VirtIONet {
AnnounceTimer announce_timer;
bool needs_vnet_hdr_swap;
bool mtu_bypass_backend;
QemuOpts *primary_device_opts;
QDict *primary_device_dict;
DeviceState *primary_dev;
char *primary_device_id;
Expand Down

0 comments on commit 19e49bc

Please sign in to comment.