From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51692) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0IGf-0008O5-BJ for qemu-devel@nongnu.org; Mon, 06 Jan 2014 17:03:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W0IGa-0000x9-7L for qemu-devel@nongnu.org; Mon, 06 Jan 2014 17:03:29 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0IGZ-0000wo-Vz for qemu-devel@nongnu.org; Mon, 06 Jan 2014 17:03:24 -0500 From: Luiz Capitulino Date: Mon, 6 Jan 2014 17:03:02 -0500 Message-Id: <1389045795-18706-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1389045795-18706-1-git-send-email-lcapitulino@redhat.com> References: <1389045795-18706-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 01/14] vl: add missing transition debug->finish_migrate List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: qemu-devel@nongnu.org From: Paolo Bonzini This fixes an abort if you invoke the "migrate" command while the guest is being debugged. Cc: qemu-stable@nongnu.org Cc: lcapitulino@redhat.com Signed-off-by: Paolo Bonzini Signed-off-by: Luiz Capitulino --- vl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vl.c b/vl.c index 7511e70..0f67545 100644 --- a/vl.c +++ b/vl.c @@ -591,6 +591,7 @@ typedef struct { static const RunStateTransition runstate_transitions_def[] = { /* from -> to */ { RUN_STATE_DEBUG, RUN_STATE_RUNNING }, + { RUN_STATE_DEBUG, RUN_STATE_FINISH_MIGRATE }, { RUN_STATE_INMIGRATE, RUN_STATE_RUNNING }, { RUN_STATE_INMIGRATE, RUN_STATE_PAUSED }, -- 1.8.1.4