From bd39e9efb7034077f5516debd8b504ffcc10c780 Mon Sep 17 00:00:00 2001 From: Thibaut Collet Date: Tue, 13 Oct 2015 14:01:44 +0200 Subject: [PATCH] FIXUP: vhost user: add support of live migration Removal of receive disable has been lost during rebase with multiqueue feature. Without this fixup migration of old guest (without GUEST_ANNOUNCE) is not notified as the RARP request is not sent to the vhost user backend. Signed-off-by: Thibaut Collet --- net/vhost-user.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/net/vhost-user.c b/net/vhost-user.c index cfe11b8..17b5c2a 100644 --- a/net/vhost-user.c +++ b/net/vhost-user.c @@ -212,8 +212,6 @@ static int net_vhost_user_init(NetClientState *peer, const char *device, snprintf(nc->info_str, sizeof(nc->info_str), "vhost-user%d to %s", i, chr->label); - /* We don't provide a receive callback */ - nc->receive_disabled = 1; nc->queue_index = i; s = DO_UPCAST(VhostUserState, nc, nc); -- 2.1.4