From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: [PATCH 5/5] KVM: x86 emulator: implement MMX MOVQ (opcodes 0f 6f, 0f 7f) Date: Mon, 9 Apr 2012 18:40:03 +0300 Message-ID: <1333986003-28050-6-git-send-email-avi@redhat.com> References: <1333986003-28050-1-git-send-email-avi@redhat.com> Cc: Stefan Hajnoczi To: Marcelo Tosatti , kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:48243 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932099Ab2DIPkg (ORCPT ); Mon, 9 Apr 2012 11:40:36 -0400 In-Reply-To: <1333986003-28050-1-git-send-email-avi@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: Needed by some framebuffer drivers. See https://bugzilla.kernel.org/show_bug.cgi?id=42779 Signed-off-by: Avi Kivity --- arch/x86/kvm/emulate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index 0011b4a..d5729a9 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c @@ -3488,7 +3488,7 @@ static int check_perm_out(struct x86_emulate_ctxt *ctxt) }; static struct gprefix pfx_0f_6f_0f_7f = { - N, I(Sse | Aligned, em_mov), N, I(Sse | Unaligned, em_mov), + I(Mmx, em_mov), I(Sse | Aligned, em_mov), N, I(Sse | Unaligned, em_mov), }; static struct gprefix pfx_vmovntpx = { -- 1.7.10