failover: Rename to failover_find_primary_device()
This commit: * Rename them to failover_find_primary_devices() so - it starts with failover_ - it don't connect anything, just find the primary device * Create documentation for the function Signed-off-by: Juan Quintela <quintela@redhat.com> Message-Id: <20201118083748.1328-19-quintela@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
0763db4f2d
commit
85d3b93196
@ -826,7 +826,13 @@ static int is_my_primary(void *opaque, QemuOpts *opts, Error **errp)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static DeviceState *virtio_net_find_primary(VirtIONet *n, Error **errp)
|
/**
|
||||||
|
* Find the primary device for this failover virtio-net
|
||||||
|
*
|
||||||
|
* @n: VirtIONet device
|
||||||
|
* @errp: returns an error if this function fails
|
||||||
|
*/
|
||||||
|
static DeviceState *failover_find_primary_device(VirtIONet *n, Error **errp)
|
||||||
{
|
{
|
||||||
Error *err = NULL;
|
Error *err = NULL;
|
||||||
|
|
||||||
@ -891,7 +897,7 @@ static void virtio_net_set_features(VirtIODevice *vdev, uint64_t features)
|
|||||||
qatomic_set(&n->failover_primary_hidden, false);
|
qatomic_set(&n->failover_primary_hidden, false);
|
||||||
failover_add_primary(n, &err);
|
failover_add_primary(n, &err);
|
||||||
if (err) {
|
if (err) {
|
||||||
n->primary_dev = virtio_net_find_primary(n, &err);
|
n->primary_dev = failover_find_primary_device(n, &err);
|
||||||
if (err) {
|
if (err) {
|
||||||
goto out_err;
|
goto out_err;
|
||||||
}
|
}
|
||||||
@ -3115,7 +3121,7 @@ static void virtio_net_handle_migration_primary(VirtIONet *n,
|
|||||||
should_be_hidden = qatomic_read(&n->failover_primary_hidden);
|
should_be_hidden = qatomic_read(&n->failover_primary_hidden);
|
||||||
|
|
||||||
if (!n->primary_dev) {
|
if (!n->primary_dev) {
|
||||||
n->primary_dev = virtio_net_find_primary(n, &err);
|
n->primary_dev = failover_find_primary_device(n, &err);
|
||||||
if (!n->primary_dev) {
|
if (!n->primary_dev) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user