Displaying 1 result from an estimated 1 matches for "vdpa_net_migration_state_notifier".
2023 Feb 22
0
[PATCH v2 07/13] vdpa: add vdpa net migration state notifier
...s in this case?
Thanks
> + }
> +
> + r = vhost_net_start(vdev, n->nic->ncs, data_queue_pairs, cvq);
> + if (unlikely(r < 0)) {
> + error_report("unable to start vhost net: %s(%d)", g_strerror(-r), -r);
> + }
> +}
> +
> +static void vdpa_net_migration_state_notifier(Notifier *notifier, void *data)
> +{
> + MigrationState *migration = data;
> + VhostVDPAState *s = container_of(notifier, VhostVDPAState,
> + migration_state);
> +
> + if (migration_in_setup(migration)) {
> + vhost_vdpa_net_lo...