]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
KVM: x86 emulator: fix lea to really get the effective address
authorAvi Kivity <avi@qumranet.com>
Mon, 14 Apr 2008 20:46:37 +0000 (23:46 +0300)
committerAvi Kivity <avi@qumranet.com>
Sun, 27 Apr 2008 15:21:35 +0000 (18:21 +0300)
We never hit this, since there is currently no reason to emulate lea.

Signed-off-by: Avi Kivity <avi@qumranet.com>
arch/x86/kvm/x86_emulate.c

index 46ef78f8bb359b93f6c2c865b80da39b785c6605..2ca08386f9937ea43c4d126ca011af96c10abde9 100644 (file)
@@ -1512,7 +1512,7 @@ special_insn:
        case 0x88 ... 0x8b:     /* mov */
                goto mov;
        case 0x8d: /* lea r16/r32, m */
-               c->dst.val = c->modrm_val;
+               c->dst.val = c->modrm_ea;
                break;
        case 0x8f:              /* pop (sole member of Grp1a) */
                rc = emulate_grp1a(ctxt, ops);