* [Qemu-devel] [4206] x86: Raise inter-processor NMI and SMI
@ 2008-04-13 16:08 Aurelien Jarno
0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2008-04-13 16:08 UTC (permalink / raw)
To: qemu-devel
Revision: 4206
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4206
Author: aurel32
Date: 2008-04-13 16:08:23 +0000 (Sun, 13 Apr 2008)
Log Message:
-----------
x86: Raise inter-processor NMI and SMI
(Jan Kiszka)
Modified Paths:
--------------
trunk/hw/apic.c
Modified: trunk/hw/apic.c
===================================================================
--- trunk/hw/apic.c 2008-04-13 16:08:15 UTC (rev 4205)
+++ trunk/hw/apic.c 2008-04-13 16:08:23 UTC (rev 4206)
@@ -216,8 +216,14 @@
break;
case APIC_DM_SMI:
+ foreach_apic(apic_iter, deliver_bitmask,
+ cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_SMI) );
+ return;
+
case APIC_DM_NMI:
- break;
+ foreach_apic(apic_iter, deliver_bitmask,
+ cpu_interrupt(apic_iter->cpu_env, CPU_INTERRUPT_NMI) );
+ return;
case APIC_DM_INIT:
/* normal INIT IPI sent to processors */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-04-13 16:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-13 16:08 [Qemu-devel] [4206] x86: Raise inter-processor NMI and SMI Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).