From: Laurent Vivier <lvivier@redhat.com>
To: qemu-devel@nongnu.org
Cc: Juan Quintela <quintela@redhat.com>,
Jason Wang <jasowang@redhat.com>,
Jens Freimann <jfreimann@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>
Subject: [PATCH v2 1/1] virtio: failover: define the default device to use in case of error
Date: Mon, 9 Aug 2021 19:13:42 +0200 [thread overview]
Message-ID: <20210809171342.18146-2-lvivier@redhat.com> (raw)
In-Reply-To: <20210809171342.18146-1-lvivier@redhat.com>
If the guest driver doesn't support the STANDBY feature, by default
we keep the virtio-net device and don't hotplug the VFIO device,
but in some cases, user can prefer to use the VFIO device rather
than the virtio-net one. We can't unplug the virtio-net device
(because on migration it is expected on the destination side)
but we can force the guest driver to be disabled. Then, we can
hotplug the VFIO device that will be unplugged before the migration
like in the normal failover migration but without the failover device.
This patch adds a new property to virtio-net device: "failover-default".
By default, "failover-default" is set to true and thus the default NIC
to use if the failover cannot be enabled is the virtio-net device
(this is what is done until now with the virtio-net failover).
If "failover-default" is set to false, in case of error, the virtio-net
device is not the default anymore and the failover primary device
is used instead.
If the STANDBY feature is supported by guest and host, the virtio-net
failover acts as usual.
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
include/hw/virtio/virtio-net.h | 1 +
hw/net/virtio-net.c | 49 +++++++++++++++++++++++++++++-----
2 files changed, 44 insertions(+), 6 deletions(-)
diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h
index 824a69c23f06..ab77930a327e 100644
--- a/include/hw/virtio/virtio-net.h
+++ b/include/hw/virtio/virtio-net.h
@@ -208,6 +208,7 @@ struct VirtIONet {
/* primary failover device is hidden*/
bool failover_primary_hidden;
bool failover;
+ bool failover_default;
DeviceListener primary_listener;
Notifier migration_state;
VirtioNetRssData rss_data;
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index 16d20cdee52a..972c03232a96 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -935,12 +935,23 @@ static void virtio_net_set_features(VirtIODevice *vdev, uint64_t features)
memset(n->vlans, 0xff, MAX_VLAN >> 3);
}
- if (virtio_has_feature(features, VIRTIO_NET_F_STANDBY)) {
- qapi_event_send_failover_negotiated(n->netclient_name);
- qatomic_set(&n->failover_primary_hidden, false);
- failover_add_primary(n, &err);
- if (err) {
- warn_report_err(err);
+ /*
+ * if the virtio-net driver has the STANDBY feature, we can plug the primary
+ * if not but is not the default failover device,
+ * we need to plug the primary alone and the virtio-net driver will
+ * be disabled in the validate_features() function but validate_features()
+ * is only available with virtio 1.0 spec
+ */
+ if (n->failover) {
+ if (virtio_has_feature(features, VIRTIO_NET_F_STANDBY) ||
+ (virtio_has_feature(features, VIRTIO_F_VERSION_1) &&
+ !n->failover_default)) {
+ qapi_event_send_failover_negotiated(n->netclient_name);
+ qatomic_set(&n->failover_primary_hidden, false);
+ failover_add_primary(n, &err);
+ if (err) {
+ warn_report_err(err);
+ }
}
}
}
@@ -3625,9 +3636,34 @@ static Property virtio_net_properties[] = {
DEFINE_PROP_INT32("speed", VirtIONet, net_conf.speed, SPEED_UNKNOWN),
DEFINE_PROP_STRING("duplex", VirtIONet, net_conf.duplex_str),
DEFINE_PROP_BOOL("failover", VirtIONet, failover, false),
+ DEFINE_PROP_BOOL("failover-default", VirtIONet, failover_default, true),
DEFINE_PROP_END_OF_LIST(),
};
+/* validate_features() is only available with VIRTIO_F_VERSION_1 */
+static int failover_validate_features(VirtIODevice *vdev)
+{
+ VirtIONet *n = VIRTIO_NET(vdev);
+
+ /*
+ * If the guest driver doesn't support the STANDBY feature, by default
+ * we keep the virtio-net device and don't hotplug the VFIO device,
+ * but in some cases, user can prefer to use the VFIO device rather
+ * than the virtio-net one. We can't unplug the virtio-net device
+ * (because on migration it is expected on the destination side)
+ * but we can force the guest driver to be disabled. In this case, We can
+ * hotplug the VFIO device that will be unplugged before the migration
+ * like in the normal failover migration but without the failover device.
+ */
+ if (n->failover && !n->failover_default &&
+ !virtio_vdev_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
+ /* disable virtio-net */
+ return -ENODEV;
+ }
+
+ return 0;
+}
+
static void virtio_net_class_init(ObjectClass *klass, void *data)
{
DeviceClass *dc = DEVICE_CLASS(klass);
@@ -3651,6 +3687,7 @@ static void virtio_net_class_init(ObjectClass *klass, void *data)
vdc->post_load = virtio_net_post_load_virtio;
vdc->vmsd = &vmstate_virtio_net_device;
vdc->primary_unplug_pending = primary_unplug_pending;
+ vdc->validate_features = failover_validate_features;
}
static const TypeInfo virtio_net_info = {
--
2.31.1
next prev parent reply other threads:[~2021-08-09 17:15 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-09 17:13 [PATCH v2 0/1] virtio: failover: allow to keep the VFIO device rather than the virtio-net one Laurent Vivier
2021-08-09 17:13 ` Laurent Vivier [this message]
2021-08-11 4:18 ` [PATCH v2 1/1] virtio: failover: define the default device to use in case of error Jason Wang
2021-08-11 6:29 ` Laurent Vivier
2021-08-23 23:25 ` Michael S. Tsirkin
2021-08-26 15:56 ` Laurent Vivier
2021-08-11 4:17 ` [PATCH v2 0/1] virtio: failover: allow to keep the VFIO device rather than the virtio-net one Jason Wang
2021-08-11 6:27 ` Laurent Vivier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210809171342.18146-2-lvivier@redhat.com \
--to=lvivier@redhat.com \
--cc=jasowang@redhat.com \
--cc=jfreimann@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).