qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] qemu-kvm: fix improper nmi emulation (was: Re: [PAT


From: Lai Jiangshan
Subject: [Qemu-devel] [PATCH] qemu-kvm: fix improper nmi emulation (was: Re: [PATCH] qemu: Fix inject-nmi)
Date: Mon, 10 Oct 2011 14:06:12 +0800
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.9) Gecko/20100921 Fedora/3.1.4-1.fc14 Thunderbird/3.1.4

From: Kenji Kaneshige <address@hidden>

Currently, NMI interrupt is blindly sent to all the vCPUs when NMI
button event happens. This doesn't properly emulate real hardware on
which NMI button event triggers LINT1. Because of this, NMI is sent to
the processor even when LINT1 is maskied in LVT. For example, this
causes the problem that kdump initiated by NMI sometimes doesn't work
on KVM, because kdump assumes NMI is masked on CPUs other than CPU0.

With this patch, inject-nmi request is handled as follows.

- When in-kernel irqchip is disabled, inject LINT1 instead of NMI
  interrupt.
- When in-kernel irqchip is enabled, send nmi event to kernel as the
  current code does. LINT1 should be emulated in kernel.

Signed-off-by: Kenji Kaneshige <address@hidden>
Tested-by: Lai Jiangshan <address@hidden>
---
 hw/apic.c |   16 ++++++++++++++++
 hw/apic.h |    1 +
 monitor.c |    5 ++---
 3 files changed, 19 insertions(+), 3 deletions(-)

Index: qemu-kvm/hw/apic.c
===================================================================
--- qemu-kvm.orig/hw/apic.c
+++ qemu-kvm/hw/apic.c
@@ -205,6 +205,22 @@ void apic_deliver_pic_intr(DeviceState *
     }
 }
 
+void apic_deliver_nmi(CPUState *env)
+{
+    APICState *apic;
+
+    if (kvm_enabled() && kvm_irqchip_in_kernel()) {
+        cpu_interrupt(env, CPU_INTERRUPT_NMI);
+       return;
+    }
+
+    apic = DO_UPCAST(APICState, busdev.qdev, env->apic_state);
+    if (!apic)
+        cpu_interrupt(env, CPU_INTERRUPT_NMI);
+    else
+        apic_local_deliver(apic, APIC_LVT_LINT1);
+}
+
 #define foreach_apic(apic, deliver_bitmask, code) \
 {\
     int __i, __j, __mask;\
Index: qemu-kvm/hw/apic.h
===================================================================
--- qemu-kvm.orig/hw/apic.h
+++ qemu-kvm/hw/apic.h
@@ -10,6 +10,7 @@ void apic_deliver_irq(uint8_t dest, uint
                              uint8_t trigger_mode);
 int apic_accept_pic_intr(DeviceState *s);
 void apic_deliver_pic_intr(DeviceState *s, int level);
+void apic_deliver_nmi(CPUState *env);
 int apic_get_interrupt(DeviceState *s);
 void apic_reset_irq_delivered(void);
 int apic_get_irq_delivered(void);
Index: qemu-kvm/monitor.c
===================================================================
--- qemu-kvm.orig/monitor.c
+++ qemu-kvm/monitor.c
@@ -2615,9 +2615,8 @@ static int do_inject_nmi(Monitor *mon, c
 {
     CPUState *env;
 
-    for (env = first_cpu; env != NULL; env = env->next_cpu) {
-        cpu_interrupt(env, CPU_INTERRUPT_NMI);
-    }
+    for (env = first_cpu; env != NULL; env = env->next_cpu)
+       apic_deliver_nmi(env);
 
     return 0;
 }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]