[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v19 2/7] add a new qevent: QEVENT_GUEST_PANICKED
From: |
Hu Tao |
Subject: |
[Qemu-devel] [PATCH v19 2/7] add a new qevent: QEVENT_GUEST_PANICKED |
Date: |
Thu, 18 Apr 2013 10:14:41 +0800 |
This event will be emited when qemu detects guest panic.
Signed-off-by: Wen Congyang <address@hidden>
Signed-off-by: Hu Tao <address@hidden>
---
QMP/qmp-events.txt | 14 ++++++++++++++
include/monitor/monitor.h | 1 +
monitor.c | 1 +
3 files changed, 16 insertions(+)
diff --git a/QMP/qmp-events.txt b/QMP/qmp-events.txt
index dcc826d..92fe5fb 100644
--- a/QMP/qmp-events.txt
+++ b/QMP/qmp-events.txt
@@ -446,3 +446,17 @@ Example:
Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is
followed respectively by the RESET, SHUTDOWN, or STOP events.
+
+GUEST_PANICKED
+--------------
+
+Emitted when guest OS panic is detected.
+
+Data:
+
+- "action": Action that has been taken (json-string, currently always "pause").
+
+Example:
+
+{ "event": "GUEST_PANICKED",
+ "data": { "action": "pause" } }
diff --git a/include/monitor/monitor.h b/include/monitor/monitor.h
index b868760..1a6cfcf 100644
--- a/include/monitor/monitor.h
+++ b/include/monitor/monitor.h
@@ -46,6 +46,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 332abe7..059726e 100644
--- a/monitor.c
+++ b/monitor.c
@@ -496,6 +496,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)
--
1.8.1.4
- [Qemu-devel] [PATCH v19 0/7] Add pvpanic device to deal with guest panic event, Hu Tao, 2013/04/17
- [Qemu-devel] [PATCH v19 2/7] add a new qevent: QEVENT_GUEST_PANICKED,
Hu Tao <=
- [Qemu-devel] [PATCH v19 1/7] add a new runstate: RUN_STATE_GUEST_PANICKED, Hu Tao, 2013/04/17
- [Qemu-devel] [PATCH v19 5/7] pvpanic: add document of pvpanic, Hu Tao, 2013/04/17
- [Qemu-devel] [PATCH v19 7/7] Wire up disabled wait a panicked event on s390, Hu Tao, 2013/04/17
- [Qemu-devel] [PATCH v19 4/7] pvpanic: pass configurable ioport to seabios, Hu Tao, 2013/04/17
[Qemu-devel] [PATCH v19 6/7] pvpanic: create pvpanic by default for machine 1.5, Hu Tao, 2013/04/17