diff mbox

[V2] Guest stop notification

Message ID 1322760562-9856-1-git-send-email-emunson@mgebm.net
State New
Headers show

Commit Message

Eric B Munson Dec. 1, 2011, 5:29 p.m. UTC
Often when a guest is stopped from the qemu console, it will report spurious
soft lockup warnings on resume.  There are kernel patches being discussed that
will give the host the ability to tell the guest that it is being stopped and
should ignore the soft lockup warning that generates.  This patch uses the qemu
Notifier system to tell the guest it is about to be stopped.

Signed-off-by: Eric B Munson <emunson@mgebm.net>
Cc: Avi Kivity <avi@redhat.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Jan Kiszka <jan.kiszka@siemens.com>
Cc: ryanh@linux.vnet.ibm.com
Cc: aliguori@us.ibm.com
Cc: linux-kernel@vger.kernel.org
Cc: kvm@vger.kernel.org
---
 target-i386/kvm.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
diff mbox

Patch

diff --git a/target-i386/kvm.c b/target-i386/kvm.c
index 5bfc21f..12ac91a 100644
--- a/target-i386/kvm.c
+++ b/target-i386/kvm.c
@@ -342,6 +342,7 @@  static void cpu_update_state(void *opaque, int running, RunState state)
 
     if (running) {
         env->tsc_valid = false;
+        kvm_vcpu_ioctl(env, KVM_GUEST_PAUSED, 0);
     }
 }