vhost-net: save & restore vhost-user acked features

The initial vhost-user connection sets the features to be negotiated
with the driver. Renegotiation isn't possible without device reset.

To handle reconnection of vhost-user backend, ensure the same set of
features are provided, and reuse already acked features.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Tested-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Reviewed-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Reviewed-by: Victor Kaplansky <victork@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Marc-André Lureau 2016-06-06 18:45:05 +02:00 committed by Michael S. Tsirkin
parent 72b65f922b
commit a463215b08
4 changed files with 40 additions and 1 deletions

View File

@ -120,6 +120,11 @@ uint64_t vhost_net_get_max_queues(VHostNetState *net)
return net->dev.max_queues; return net->dev.max_queues;
} }
uint64_t vhost_net_get_acked_features(VHostNetState *net)
{
return net->dev.acked_features;
}
static int vhost_net_get_fd(NetClientState *backend) static int vhost_net_get_fd(NetClientState *backend)
{ {
switch (backend->info->type) { switch (backend->info->type) {
@ -136,6 +141,7 @@ struct vhost_net *vhost_net_init(VhostNetOptions *options)
int r; int r;
bool backend_kernel = options->backend_type == VHOST_BACKEND_TYPE_KERNEL; bool backend_kernel = options->backend_type == VHOST_BACKEND_TYPE_KERNEL;
struct vhost_net *net = g_malloc(sizeof *net); struct vhost_net *net = g_malloc(sizeof *net);
uint64_t features = 0;
if (!options->net_backend) { if (!options->net_backend) {
fprintf(stderr, "vhost-net requires net backend to be setup\n"); fprintf(stderr, "vhost-net requires net backend to be setup\n");
@ -183,8 +189,21 @@ struct vhost_net *vhost_net_init(VhostNetOptions *options)
goto fail; goto fail;
} }
} }
/* Set sane init value. Override when guest acks. */ /* Set sane init value. Override when guest acks. */
vhost_net_ack_features(net, 0); if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_VHOST_USER) {
features = vhost_user_get_acked_features(net->nc);
if (~net->dev.features & features) {
fprintf(stderr, "vhost lacks feature mask %" PRIu64
" for backend\n",
(uint64_t)(~net->dev.features & features));
vhost_dev_cleanup(&net->dev);
goto fail;
}
}
vhost_net_ack_features(net, features);
return net; return net;
fail: fail:
g_free(net); g_free(net);
@ -447,10 +466,16 @@ uint64_t vhost_net_get_features(struct vhost_net *net, uint64_t features)
{ {
return features; return features;
} }
void vhost_net_ack_features(struct vhost_net *net, uint64_t features) void vhost_net_ack_features(struct vhost_net *net, uint64_t features)
{ {
} }
uint64_t vhost_net_get_acked_features(VHostNetState *net)
{
return 0;
}
bool vhost_net_virtqueue_pending(VHostNetState *net, int idx) bool vhost_net_virtqueue_pending(VHostNetState *net, int idx)
{ {
return false; return false;

View File

@ -13,5 +13,6 @@
struct vhost_net; struct vhost_net;
struct vhost_net *vhost_user_get_vhost_net(NetClientState *nc); struct vhost_net *vhost_user_get_vhost_net(NetClientState *nc);
uint64_t vhost_user_get_acked_features(NetClientState *nc);
#endif /* VHOST_USER_H_ */ #endif /* VHOST_USER_H_ */

View File

@ -31,4 +31,7 @@ int vhost_net_notify_migration_done(VHostNetState *net, char* mac_addr);
VHostNetState *get_vhost_net(NetClientState *nc); VHostNetState *get_vhost_net(NetClientState *nc);
int vhost_set_vring_enable(NetClientState * nc, int enable); int vhost_set_vring_enable(NetClientState * nc, int enable);
uint64_t vhost_net_get_acked_features(VHostNetState *net);
#endif #endif

View File

@ -23,6 +23,7 @@ typedef struct VhostUserState {
CharDriverState *chr; CharDriverState *chr;
VHostNetState *vhost_net; VHostNetState *vhost_net;
int watch; int watch;
uint64_t acked_features;
} VhostUserState; } VhostUserState;
typedef struct VhostUserChardevProps { typedef struct VhostUserChardevProps {
@ -37,6 +38,13 @@ VHostNetState *vhost_user_get_vhost_net(NetClientState *nc)
return s->vhost_net; return s->vhost_net;
} }
uint64_t vhost_user_get_acked_features(NetClientState *nc)
{
VhostUserState *s = DO_UPCAST(VhostUserState, nc, nc);
assert(nc->info->type == NET_CLIENT_OPTIONS_KIND_VHOST_USER);
return s->acked_features;
}
static int vhost_user_running(VhostUserState *s) static int vhost_user_running(VhostUserState *s)
{ {
return (s->vhost_net) ? 1 : 0; return (s->vhost_net) ? 1 : 0;
@ -56,6 +64,8 @@ static void vhost_user_stop(int queues, NetClientState *ncs[])
} }
if (s->vhost_net) { if (s->vhost_net) {
/* save acked features */
s->acked_features = vhost_net_get_acked_features(s->vhost_net);
vhost_net_cleanup(s->vhost_net); vhost_net_cleanup(s->vhost_net);
s->vhost_net = NULL; s->vhost_net = NULL;
} }