From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46682) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCRlD-0005RP-4L for qemu-devel@nongnu.org; Mon, 04 Mar 2013 04:32:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCRl9-0006pa-5a for qemu-devel@nongnu.org; Mon, 04 Mar 2013 04:32:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49971) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCRl8-0006pV-Tb for qemu-devel@nongnu.org; Mon, 04 Mar 2013 04:32:39 -0500 Message-ID: <51346A21.3010601@redhat.com> Date: Mon, 04 Mar 2013 10:32:17 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v13 2/8] start vm after resetting it List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Hu Tao Cc: Peter Maydell , Gleb Natapov , "Michael S. Tsirkin" , Jan Kiszka , qemu-devel , Markus Armbruster , Blue Swirl , Orit Wasserman , kvm list , Juan Quintela , Alexander Graf , Andrew Jones , Alex Williamson , Sasha Levin , Stefan Hajnoczi , Luiz Capitulino , KAMEZAWA Hiroyuki , Kevin Wolf , Anthony Liguori , Marcelo Tosatti , "linux-kernel@vger.kernel.org" Il 28/02/2013 13:13, Hu Tao ha scritto: > From: Wen Congyang > > The guest should run after resetting it, but it does not run if its > old state is RUN_STATE_INTERNAL_ERROR or RUN_STATE_PAUSED. > > We don't set runstate to RUN_STATE_PAUSED when resetting the guest, > so the runstate will be changed from RUN_STATE_INTERNAL_ERROR or > RUN_STATE_PAUSED to RUN_STATE_RUNNING(not RUN_STATE_PAUSED). This is also debatable. In particular, restarting an INTERNAL_ERROR guest makes it harder to inspect the state at the time of the failure. INTERNAL_ERROR should never happen, let's separate this patch too. Paolo