Jason Wang
2023-Feb-22 04:00 UTC
[PATCH v2 09/13] vdpa net: block migration if the device has CVQ
? 2023/2/8 17:42, Eugenio P?rez ??:> Devices with CVQ needs to migrate state beyond vq state. Leaving this > to future series.I may miss something but what is missed to support CVQ/MQ? Thanks> > Signed-off-by: Eugenio P?rez <eperezma at redhat.com> > --- > net/vhost-vdpa.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c > index bca13f97fd..309861e56c 100644 > --- a/net/vhost-vdpa.c > +++ b/net/vhost-vdpa.c > @@ -955,11 +955,17 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name, > } > > if (has_cvq) { > + VhostVDPAState *s; > + > nc = net_vhost_vdpa_init(peer, TYPE_VHOST_VDPA, name, > vdpa_device_fd, i, 1, false, > opts->x_svq, iova_range); > if (!nc) > goto err; > + > + s = DO_UPCAST(VhostVDPAState, nc, nc); > + error_setg(&s->vhost_vdpa.dev->migration_blocker, > + "net vdpa cannot migrate with MQ feature"); > } > > return 0;
Reasonably Related Threads
- [PATCH v4 01/15] vdpa net: move iova tree creation from init to start
- [PATCH v4 12/15] vdpa: block migration if device has unsupported features
- [PATCH v2 07/13] vdpa: add vdpa net migration state notifier
- [PATCH v2 11/13] vdpa: block migration if dev does not have _F_SUSPEND
- [PATCH net-next V2 0/2] virtio-net: don't busy poll for cvq command