[PATCH v9 4/6] add a new qevent: QEVENT_GUEST_PANICKED
From: Wen Congyang <hidden>
Date: 2012-08-23 02:26:29
Also in:
lkml, qemu-devel
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Wen Congyang <hidden>
Date: 2012-08-23 02:26:29
Also in:
lkml, qemu-devel
Subsystem:
the rest · Maintainer:
Linus Torvalds
This event will be emited when the guest is panicked. Signed-off-by: Wen Congyang <redacted> --- monitor.c | 1 + monitor.h | 1 + 2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/monitor.c b/monitor.c
index 480f583..cd2adb7 100644
--- a/monitor.c
+++ b/monitor.c@@ -455,6 +455,7 @@ static const char *monitor_event_names[] = { [QEVENT_SUSPEND_DISK] = "SUSPEND_DISK", [QEVENT_WAKEUP] = "WAKEUP", [QEVENT_BALLOON_CHANGE] = "BALLOON_CHANGE", + [QEVENT_GUEST_PANICKED] = "GUEST_PANICKED", }; QEMU_BUILD_BUG_ON(ARRAY_SIZE(monitor_event_names) != QEVENT_MAX)
diff --git a/monitor.h b/monitor.h
index 47d556b..f48a502 100644
--- a/monitor.h
+++ b/monitor.h@@ -43,6 +43,7 @@ typedef enum MonitorEvent { QEVENT_SUSPEND_DISK, QEVENT_WAKEUP, QEVENT_BALLOON_CHANGE, + QEVENT_GUEST_PANICKED, /* Add to 'monitor_event_names' array in monitor.c when * defining new events here */
--
1.7.1