summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2014-05-06 14:03:29 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2014-06-19 12:52:07 +0200
commitbdc907222c5e4edd848da0c031deb55b59f1cf9a (patch)
tree8e3db8028e305fe84b459e8f63295f2119b07f41 /arch
parent968889771749d8e730d794deed2bd2e363a98a54 (diff)
downloadlinux-bdc907222c5e4edd848da0c031deb55b59f1cf9a.tar.bz2
KVM: emulate: fix harmless typo in MMX decoding
It was using the wrong member of the union. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kvm/emulate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index ea976e478dca..8a1796b1eef2 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -1093,7 +1093,7 @@ static int decode_modrm(struct x86_emulate_ctxt *ctxt,
if (ctxt->d & Mmx) {
op->type = OP_MM;
op->bytes = 8;
- op->addr.xmm = ctxt->modrm_rm & 7;
+ op->addr.mm = ctxt->modrm_rm & 7;
return rc;
}
fetch_register_operand(op);