From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCRtG-0007hP-Bj for qemu-devel@nongnu.org; Mon, 04 Mar 2013 04:41:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCRtC-00018Z-C5 for qemu-devel@nongnu.org; Mon, 04 Mar 2013 04:41:02 -0500 Received: from mx1.redhat.com ([209.132.183.28]:8504) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCRtB-00018T-Ut for qemu-devel@nongnu.org; Mon, 04 Mar 2013 04:40:58 -0500 Message-ID: <51346C15.3050900@redhat.com> Date: Mon, 04 Mar 2013 10:40:37 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <664d63ad19ae6ec25a5a7bd6411c8ab7e289f632.1362051582.git.hutao@cn.fujitsu.com> In-Reply-To: <664d63ad19ae6ec25a5a7bd6411c8ab7e289f632.1362051582.git.hutao@cn.fujitsu.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v13 5/8] add a new qevent: QEVENT_GUEST_PANICKED 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: > This event will be emited when the guest is panicked. > > Signed-off-by: Wen Congyang > --- > include/monitor/monitor.h | 1 + > monitor.c | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/include/monitor/monitor.h b/include/monitor/monitor.h > index 87fb49c..4006905 100644 > --- a/include/monitor/monitor.h > +++ b/include/monitor/monitor.h > @@ -45,6 +45,7 @@ typedef enum MonitorEvent { > QEVENT_WAKEUP, > QEVENT_BALLOON_CHANGE, > QEVENT_SPICE_MIGRATE_COMPLETED, > + QEVENT_GUEST_PANICKED, > > /* Add to 'monitor_event_names' array in monitor.c when > * defining new events here */ > diff --git a/monitor.c b/monitor.c > index bf974b4..d65218d 100644 > --- a/monitor.c > +++ b/monitor.c > @@ -463,6 +463,7 @@ static const char *monitor_event_names[] = { > [QEVENT_WAKEUP] = "WAKEUP", > [QEVENT_BALLOON_CHANGE] = "BALLOON_CHANGE", > [QEVENT_SPICE_MIGRATE_COMPLETED] = "SPICE_MIGRATE_COMPLETED", > + [QEVENT_GUEST_PANICKED] = "GUEST_PANICKED", > }; > QEMU_BUILD_BUG_ON(ARRAY_SIZE(monitor_event_names) != QEVENT_MAX) > > Reviewed-by: Paolo Bonzini Paolo