1b78387def
- fate#309901: Add Xen support for SVM TSC scaling in AMD family 15h - fate#311951: Ivy Bridge: XEN support for Supervisor Mode Execution Protection (SMEP) 23437-amd-fam15-TSC-scaling.patch 23462-libxc-cpu-feature.patch 23481-x86-SMEP.patch 23504-x86-SMEP-hvm.patch 23505-x86-cpu-add-arg-check.patch 23508-vmx-proc-based-ctls-probe.patch 23510-hvm-cpuid-DRNG.patch 23511-amd-fam15-no-flush-for-C3.patch 23516-cpuid-ERMS.patch 23538-hvm-pio-emul-no-host-crash.patch 23539-hvm-cpuid-FSGSBASE.patch 23543-x86_64-maddr_to_virt-assertion.patch 23546-fucomip.patch - Fix libxc reentrancy issues 23383-libxc-rm-static-vars.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=128
24 lines
852 B
Diff
24 lines
852 B
Diff
# HG changeset patch
|
|
# User Keir Fraser <keir@xen.org>
|
|
# Date 1308167438 -3600
|
|
# Node ID b58c4ec2f6939b31d56307599b517b5bcfc90279
|
|
# Parent 649372e3d46a795040a358075869336b15b6b627
|
|
x86_emulate: Fix decode of FUCOMIP %stN.
|
|
|
|
Signed-off-by: Keir Fraser <keir@xen.org>
|
|
xen-unstable changeset: 23546:d25f2c114ace
|
|
xen-unstable date: Wed Jun 15 20:33:58 2011 +0100
|
|
|
|
--- a/xen/arch/x86/x86_emulate/x86_emulate.c
|
|
+++ b/xen/arch/x86/x86_emulate/x86_emulate.c
|
|
@@ -2936,8 +2936,8 @@ x86_emulate(
|
|
dst.reg = (unsigned long *)&_regs.eax;
|
|
emulate_fpu_insn_memdst("fnstsw", dst.val);
|
|
break;
|
|
+ case 0xe8 ... 0xef: /* fucomip %stN */
|
|
case 0xf0 ... 0xf7: /* fcomip %stN */
|
|
- case 0xf8 ... 0xff: /* fucomip %stN */
|
|
emulate_fpu_insn_stub(0xdf, modrm);
|
|
break;
|
|
default:
|