[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v13 8/8] pv event: add document to describe the usag
From: |
Hu Tao |
Subject: |
[Qemu-devel] [PATCH v13 8/8] pv event: add document to describe the usage |
Date: |
Thu, 28 Feb 2013 20:13:19 +0800 |
Signed-off-by: Hu Tao <address@hidden>
---
docs/pv-event.txt | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
create mode 100644 docs/pv-event.txt
diff --git a/docs/pv-event.txt b/docs/pv-event.txt
new file mode 100644
index 0000000..ac9e7fa
--- /dev/null
+++ b/docs/pv-event.txt
@@ -0,0 +1,17 @@
+KVM PV EVENT
+============
+
+kvm pv event allows guest OS to notify host OS of some events, for
+example, guest panic. Currently, there is one event supported, that
+is, guest panic. More events can be added later.
+
+By default, kvm pv event is disabled. In order to enable it, you have
+to specify enable_pv_event=on for -machine command line option, along
+with -global kvm_pv_event.panicked_action to specify the action taken
+when panic event has occurred. Aviable panic actions are: "none",
+"pause", "poweroff" and "reset". Following is example:
+
+ qemu-system-x86_64 -enable-kvm -machine pc-0.12,enable_pv_event=on \
+ -global kvm_pv_event.panicked_action=pause <other options>
+
+kvm pv event needs kvm support.
--
1.8.1.4
- [Qemu-devel] [PATCH v13 0/8] pv event interface between host and guest, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13 5/8] add a new qevent: QEVENT_GUEST_PANICKED, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13 2/8] start vm after resetting it, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13 3/8] update kernel headers, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13 4/8] add a new runstate: RUN_STATE_GUEST_PANICKED, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13 1/8] save/load cpu runstate, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13] kvm: notify host when the guest is panicked, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13 8/8] pv event: add document to describe the usage,
Hu Tao <=
- [Qemu-devel] [PATCH v13 7/8] allower the user to disable pv event support, Hu Tao, 2013/02/28
- [Qemu-devel] [PATCH v13 6/8] introduce a new qom device to deal with panicked event, Hu Tao, 2013/02/28