Displaying 1 result from an estimated 1 matches for "94c6fc048d8e".
2005 Sep 27
0
[PATCH][VT] add "wbinvd" instruction emulattion for real mode code
This patch adds "wbinvd" instruction emulation for vm86 mode.
This is needed when we bring up AP of SMP VMX guest.
Signed-off-by: Xin Li <xin.b.li@intel.com>
diff -r 94c6fc048d8e tools/firmware/vmxassist/vm86.c
--- a/tools/firmware/vmxassist/vm86.c Fri Sep 23 11:52:43 2005
+++ b/tools/firmware/vmxassist/vm86.c Tue Sep 27 17:17:25 2005
@@ -752,6 +752,9 @@
goto invalid;
}
break;
+ case 0x09: /* wbinvd */
+...