aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/machine_kexec.c
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2011-08-19 09:58:22 +0100
committerAndrew Cooper <andrew.cooper3@citrix.com>2011-08-19 09:58:22 +0100
commitb5a0e71dd79e976796098f415e30dfcb276de9f8 (patch)
treecfa0cfb876be7f477549fdebaeaa3857337de515 /xen/arch/x86/machine_kexec.c
parentb57bd6d2732468362c1dd3be0b26ccf5f4afbf0d (diff)
downloadxen-b5a0e71dd79e976796098f415e30dfcb276de9f8.tar.gz
xen-b5a0e71dd79e976796098f415e30dfcb276de9f8.tar.bz2
xen-b5a0e71dd79e976796098f415e30dfcb276de9f8.zip
x86/KEXEC: disable hpet legacy broadcasts earlier
On x2apic machines which booted in xapic mode, hpet_disable_legacy_broadcast() sends an event check IPI to all online processors. This leads to a protection fault as the genapic blindly pokes x2apic MSRs while the local apic is in xapic mode. One option is to change genapic when we shut down the local apic, but there are still problems with trying to IPI processors in the online processor map which are actually sitting in NMI loops Another option is to have each CPU take itself out of the online CPU map during the NMI shootdown. Realistically however, disabling hpet legacy broadcasts earlier in the kexec path is the easiest fix to the problem. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Diffstat (limited to 'xen/arch/x86/machine_kexec.c')
-rw-r--r--xen/arch/x86/machine_kexec.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/xen/arch/x86/machine_kexec.c b/xen/arch/x86/machine_kexec.c
index b6fb5d9f60..78279c8ef1 100644
--- a/xen/arch/x86/machine_kexec.c
+++ b/xen/arch/x86/machine_kexec.c
@@ -85,9 +85,6 @@ void machine_kexec(xen_kexec_image_t *image)
.limit = LAST_RESERVED_GDT_BYTE
};
- if ( hpet_broadcast_is_available() )
- hpet_disable_legacy_broadcast();
-
/* We are about to permenantly jump out of the Xen context into the kexec
* purgatory code. We really dont want to be still servicing interupts.
*/