diff options
author | Avi Kivity <avi@qumranet.com> | 2008-06-16 01:45:54 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-07-20 05:42:34 -0400 |
commit | 0adc8675d645940139d12477e5e05b8a0a7a1117 (patch) | |
tree | 87605d1c7b12da3fb6caf2fd96ae82f863c09883 /arch/x86/kvm/x86_emulate.c | |
parent | f5b4edcd52e78556800f90d08bfc9126416ac82f (diff) |
KVM: x86 emulator: avoid segment base adjust for lea
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/x86_emulate.c')
-rw-r--r-- | arch/x86/kvm/x86_emulate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/x86_emulate.c b/arch/x86/kvm/x86_emulate.c index 20b604489c3c..38926b7da64a 100644 --- a/arch/x86/kvm/x86_emulate.c +++ b/arch/x86/kvm/x86_emulate.c | |||
@@ -940,7 +940,7 @@ done_prefixes: | |||
940 | c->override_base != &ctxt->gs_base) | 940 | c->override_base != &ctxt->gs_base) |
941 | c->override_base = NULL; | 941 | c->override_base = NULL; |
942 | 942 | ||
943 | if (c->override_base) | 943 | if (c->override_base && !(!c->twobyte && c->b == 0x8d)) |
944 | c->modrm_ea += *c->override_base; | 944 | c->modrm_ea += *c->override_base; |
945 | 945 | ||
946 | if (c->ad_bytes != 8) | 946 | if (c->ad_bytes != 8) |