22 lines
832 B
Diff
22 lines
832 B
Diff
# HG changeset patch
|
|
# User Keir Fraser <keir.fraser@citrix.com>
|
|
# Date 1201096764 0
|
|
# Node ID 7f940c605893749225a5605fb8a1fa38972bdeb6
|
|
# Parent c364f80eb4b591f8ecd9dd803081923b94a8c688
|
|
x86_emulate: Fix CLTS emulation.
|
|
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
|
|
|
|
Index: xen-3.2-testing/xen/arch/x86/x86_emulate.c
|
|
===================================================================
|
|
--- xen-3.2-testing.orig/xen/arch/x86/x86_emulate.c
|
|
+++ xen-3.2-testing/xen/arch/x86/x86_emulate.c
|
|
@@ -177,7 +177,7 @@ static uint8_t opcode_table[256] = {
|
|
|
|
static uint8_t twobyte_table[256] = {
|
|
/* 0x00 - 0x07 */
|
|
- 0, ImplicitOps|ModRM, 0, 0, 0, ImplicitOps, 0, 0,
|
|
+ 0, ImplicitOps|ModRM, 0, 0, 0, 0, ImplicitOps, 0,
|
|
/* 0x08 - 0x0F */
|
|
ImplicitOps, ImplicitOps, 0, 0, 0, ImplicitOps|ModRM, 0, 0,
|
|
/* 0x10 - 0x17 */
|