From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51762) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VovvK-0003PO-91 for qemu-devel@nongnu.org; Fri, 06 Dec 2013 08:58:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VovvE-0005Z2-ML for qemu-devel@nongnu.org; Fri, 06 Dec 2013 08:58:30 -0500 Date: Fri, 6 Dec 2013 08:57:42 -0500 From: Luiz Capitulino Message-ID: <20131206085742.5493eb0e@redhat.com> In-Reply-To: <1386072015-1543-1-git-send-email-pbonzini@redhat.com> References: <1386072015-1543-1-git-send-email-pbonzini@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] vl: add missing transition debug->finish_migrate List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org, qemu-stable@nongnu.org On Tue, 3 Dec 2013 13:00:15 +0100 Paolo Bonzini wrote: > 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 Applied to the qmp branch, thanks. > --- > vl.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/vl.c b/vl.c > index 8d5d874..31e3411 100644 > --- a/vl.c > +++ b/vl.c > @@ -589,6 +589,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 },