From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54065) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhDBP-0000PN-1C for qemu-devel@nongnu.org; Wed, 30 Sep 2015 04:56:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZhDBK-0001Fg-UG for qemu-devel@nongnu.org; Wed, 30 Sep 2015 04:56:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:35480) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhDBK-0001FZ-Ow for qemu-devel@nongnu.org; Wed, 30 Sep 2015 04:56:10 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 5BF6BA2C16 for ; Wed, 30 Sep 2015 08:56:10 +0000 (UTC) From: Juan Quintela Date: Wed, 30 Sep 2015 10:56:01 +0200 Message-Id: <1443603366-4686-2-git-send-email-quintela@redhat.com> In-Reply-To: <1443603366-4686-1-git-send-email-quintela@redhat.com> References: <1443603366-4686-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PULL 1/6] migration: yet more possible state transitions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: amit.shah@redhat.com, dgilbert@redhat.com On destination, we move from INMIGRATE to FINISH_MIGRATE. Add that to the list of allowed states. Signed-off-by: Juan Quintela Reviewed-by: Juan Quintela --- vl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vl.c b/vl.c index e211f6a..8d1846c 100644 --- a/vl.c +++ b/vl.c @@ -580,6 +580,7 @@ static const RunStateTransition runstate_transitions_def[] = { { RUN_STATE_INMIGRATE, RUN_STATE_SUSPENDED }, { RUN_STATE_INMIGRATE, RUN_STATE_WATCHDOG }, { RUN_STATE_INMIGRATE, RUN_STATE_GUEST_PANICKED }, + { RUN_STATE_INMIGRATE, RUN_STATE_FINISH_MIGRATE }, { RUN_STATE_INTERNAL_ERROR, RUN_STATE_PAUSED }, { RUN_STATE_INTERNAL_ERROR, RUN_STATE_FINISH_MIGRATE }, -- 2.4.3