Displaying 2 results from an estimated 2 matches for "bca13f97fd".
2023 Feb 22
0
[PATCH v2 09/13] vdpa net: block migration if the device has CVQ
...ries.
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,...
2023 Feb 22
0
[PATCH v2 07/13] vdpa: add vdpa net migration state notifier
...migration_in_setup and migration_has_failed instead of a
> complicated switch case.
> ---
> net/vhost-vdpa.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 76 insertions(+)
>
> diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
> index dd686b4514..bca13f97fd 100644
> --- a/net/vhost-vdpa.c
> +++ b/net/vhost-vdpa.c
> @@ -26,12 +26,14 @@
> #include <err.h>
> #include "standard-headers/linux/virtio_net.h"
> #include "monitor/monitor.h"
> +#include "migration/misc.h"
> #include "hw/vi...