All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hu Tao <hutao@cn.fujitsu.com>
To: kvm list <kvm@vger.kernel.org>,
	qemu-devel <qemu-devel@nongnu.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Avi Kivity <avi@redhat.com>,
	"Daniel P. Berrange" <berrange@redhat.com>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Jan Kiszka <jan.kiszka@siemens.com>,
	Gleb Natapov <gleb@redhat.com>, Blue Swirl <blauwirbel@gmail.com>,
	Eric Blake <eblake@redhat.com>, Andrew Jones <drjones@redhat.com>,
	Marcelo Tosatti <mtosatti@redhat.com>,
	Sasha Levin <levinsasha928@gmail.com>,
	Luiz Capitulino <lcapitulino@redhat.com>
Subject: [PATCH v12 8/8] pv event: add document to describe the usage
Date: Wed, 12 Dec 2012 14:13:51 +0800	[thread overview]
Message-ID: <b95303d1824b74c83147b7505bb3bcaf0f183333.1355290850.git.hutao@cn.fujitsu.com> (raw)
In-Reply-To: <cover.1355290850.git.hutao@cn.fujitsu.com>

Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
 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.0.1.240.ge8a1f5a


WARNING: multiple messages have this Message-ID (diff)
From: Hu Tao <hutao@cn.fujitsu.com>
To: kvm list <kvm@vger.kernel.org>,
	qemu-devel <qemu-devel@nongnu.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Avi Kivity <avi@redhat.com>,
	"Daniel P. Berrange" <berrange@redhat.com>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Jan Kiszka <jan.kiszka@siemens.com>,
	Gleb Natapov <gleb@redhat.com>, Blue Swirl <blauwirbel@gmail.com>,
	Eric Blake <eblake@redhat.com>, Andrew Jones <drjones@redhat.com>,
	Marcelo Tosatti <mtosatti@redhat.com>,
	Sasha Levin <levinsasha928@gmail.com>,
	Luiz Capitulino <lcapitulino@redhat.com>
Subject: [Qemu-devel] [PATCH v12 8/8] pv event: add document to describe the usage
Date: Wed, 12 Dec 2012 14:13:51 +0800	[thread overview]
Message-ID: <b95303d1824b74c83147b7505bb3bcaf0f183333.1355290850.git.hutao@cn.fujitsu.com> (raw)
In-Reply-To: <cover.1355290850.git.hutao@cn.fujitsu.com>

Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
 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.0.1.240.ge8a1f5a

  parent reply	other threads:[~2012-12-12  6:14 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-12  6:13 [PATCH v12 0/8] pv event to notify host when the guest is panicked Hu Tao
2012-12-12  6:13 ` [Qemu-devel] " Hu Tao
2012-12-12  6:13 ` [PATCH v12 1/8] save/load cpu runstate Hu Tao
2012-12-12  6:13   ` [Qemu-devel] " Hu Tao
2012-12-12  6:13 ` [PATCH v12 2/8] start vm after resetting it Hu Tao
2012-12-12  6:13   ` [Qemu-devel] " Hu Tao
2012-12-12  6:13 ` [PATCH v12 3/8] update kernel headers Hu Tao
2012-12-12  6:13   ` [Qemu-devel] " Hu Tao
2012-12-12  6:13 ` [PATCH v12 4/8] add a new runstate: RUN_STATE_GUEST_PANICKED Hu Tao
2012-12-12  6:13   ` [Qemu-devel] " Hu Tao
2012-12-12  6:13 ` [PATCH v12 5/8] add a new qevent: QEVENT_GUEST_PANICKED Hu Tao
2012-12-12  6:13   ` [Qemu-devel] " Hu Tao
2012-12-12  6:13 ` [PATCH v12 6/8] introduce a new qom device to deal with panicked event Hu Tao
2012-12-12  6:13   ` [Qemu-devel] " Hu Tao
2012-12-12  6:13   ` Hu Tao
2012-12-12  6:13 ` [PATCH v12 7/8] allower the user to disable pv event support Hu Tao
2012-12-12  6:13   ` [Qemu-devel] " Hu Tao
2012-12-12  6:13 ` Hu Tao [this message]
2012-12-12  6:13   ` [Qemu-devel] [PATCH v12 8/8] pv event: add document to describe the usage Hu Tao
2012-12-12  6:15 ` [PATCH] kvm: notify host when the guest is panicked Hu Tao
2012-12-12  6:15   ` [Qemu-devel] " Hu Tao
2012-12-20  7:53 ` [Qemu-devel] [PATCH v12 0/8] pv event to " Hu Tao
2012-12-25 21:52   ` Marcelo Tosatti
2012-12-25 21:52     ` Marcelo Tosatti
2012-12-25 21:52     ` Marcelo Tosatti
2013-01-14  7:38     ` [Qemu-devel] " Hu Tao
2013-01-14  7:38       ` Hu Tao
2012-12-25 21:54   ` Marcelo Tosatti
2012-12-25 21:54     ` Marcelo Tosatti
2012-12-25 21:54     ` Marcelo Tosatti
2013-01-14  7:46     ` [Qemu-devel] " Hu Tao
2013-01-14  7:46       ` Hu Tao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b95303d1824b74c83147b7505bb3bcaf0f183333.1355290850.git.hutao@cn.fujitsu.com \
    --to=hutao@cn.fujitsu.com \
    --cc=avi@redhat.com \
    --cc=berrange@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=drjones@redhat.com \
    --cc=eblake@redhat.com \
    --cc=gleb@redhat.com \
    --cc=jan.kiszka@siemens.com \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=kvm@vger.kernel.org \
    --cc=lcapitulino@redhat.com \
    --cc=levinsasha928@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.