From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38131) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vu36U-00005J-Gz for qemu-devel@nongnu.org; Fri, 20 Dec 2013 11:39:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vu36P-0000xe-3u for qemu-devel@nongnu.org; Fri, 20 Dec 2013 11:39:10 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48461) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vu36O-0000xM-Li for qemu-devel@nongnu.org; Fri, 20 Dec 2013 11:39:05 -0500 From: Luiz Capitulino Date: Fri, 20 Dec 2013 11:38:55 -0500 Message-Id: <1387557536-10593-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1387557536-10593-1-git-send-email-lcapitulino@redhat.com> References: <1387557536-10593-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PULL 1/2] 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