public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* qemu-kvm: event writeback can overwrite interrupts with -no-kvm-irqchip
@ 2010-05-04  2:15 Marcelo Tosatti
  2010-05-04  8:45 ` Jan Kiszka
  2010-05-05  8:46 ` Avi Kivity
  0 siblings, 2 replies; 3+ messages in thread
From: Marcelo Tosatti @ 2010-05-04  2:15 UTC (permalink / raw)
  To: kvm; +Cc: Jan Kiszka


Interrupts that are injected during a vcpu event save/writeback cycle
are lost.

Fix by writebacking the state before injecting interrupts.

Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>

diff --git a/qemu-kvm.c b/qemu-kvm.c
index 91f0222..90ace20 100644
--- a/qemu-kvm.c
+++ b/qemu-kvm.c
@@ -885,11 +885,6 @@ int pre_kvm_run(kvm_context_t kvm, CPUState *env)
 {
     kvm_arch_pre_run(env, env->kvm_run);
 
-    if (env->kvm_vcpu_dirty) {
-        kvm_arch_load_regs(env, KVM_PUT_RUNTIME_STATE);
-        env->kvm_vcpu_dirty = 0;
-    }
-
     pthread_mutex_unlock(&qemu_mutex);
     return 0;
 }
@@ -907,6 +902,10 @@ int kvm_run(CPUState *env)
     int fd = env->kvm_fd;
 
   again:
+    if (env->kvm_vcpu_dirty) {
+        kvm_arch_load_regs(env, KVM_PUT_RUNTIME_STATE);
+        env->kvm_vcpu_dirty = 0;
+    }
     push_nmi(kvm);
 #if !defined(__s390__)
     if (!kvm->irqchip_in_kernel)

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-05-05  8:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-04  2:15 qemu-kvm: event writeback can overwrite interrupts with -no-kvm-irqchip Marcelo Tosatti
2010-05-04  8:45 ` Jan Kiszka
2010-05-05  8:46 ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox