From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: [PATCH 0/3] Fix #GP at wrong rip for mov cr instructions Date: Thu, 10 Jun 2010 17:02:13 +0300 Message-ID: <1276178536-10888-1-git-send-email-avi@redhat.com> Cc: kvm@vger.kernel.org To: Marcelo Tosatti , Sheng Yang Return-path: Received: from mx1.redhat.com ([209.132.183.28]:56919 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753013Ab0FJOCU (ORCPT ); Thu, 10 Jun 2010 10:02:20 -0400 Sender: kvm-owner@vger.kernel.org List-ID: Three mov cr instructions fail in a similar way when they fault: the fault rip points at the next instead of faulting instructions. This patch set fixes the problem. Avi Kivity (3): KVM: Fix mov cr0 #GP at wrong instruction KVM: Fix mov cr4 #GP at wrong instruction KVM: Fix mov cr3 #GP at wrong instruction arch/x86/include/asm/kvm_host.h | 6 +++--- arch/x86/kvm/mmu.c | 2 +- arch/x86/kvm/svm.c | 6 +++--- arch/x86/kvm/vmx.c | 21 +++++++++++++++------ arch/x86/kvm/x86.c | 32 +++++++------------------------- 5 files changed, 29 insertions(+), 38 deletions(-)