Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752190AbbKCLlK (ORCPT ); Tue, 3 Nov 2015 06:41:10 -0500 Received: from blu004-omc1s9.hotmail.com ([65.55.116.20]:62587 "EHLO BLU004-OMC1S9.hotmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750887AbbKCLlI (ORCPT ); Tue, 3 Nov 2015 06:41:08 -0500 X-TMN: [SH4eBmtyDLK1peiWh2wTkyrgPaI2BC7n] X-Originating-Email: [wanpeng.li@hotmail.com] Message-ID: From: Wanpeng Li To: Paolo Bonzini CC: Nadav Amit , kvm@vger.kernel.org, linux-kernel@vger.kernel.org, Wanpeng Li Subject: [PATCH v2] KVM: x86: Reset RFLAGS state following processor init/reset Date: Tue, 3 Nov 2015 19:40:20 +0800 X-Mailer: git-send-email 1.9.1 X-OriginalArrivalTime: 03 Nov 2015 11:41:04.0727 (UTC) FILETIME=[85A8F670:01D1162C] MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1166 Lines: 40 Reference SDM Volume 1 3.4.3: Following initialization of the processor (either by asserting the RESET pin or the INIT pin), the state of the EFLAGS register is 00000002H. However, the eflags fixed bit is not set and other bits are also not cleared during the init/reset in kvm. This patch reset eflags register to 00000002H following initialization of the processor. Signed-off-by: Wanpeng Li --- v1 -> v2: * use vmcs_writel arch/x86/kvm/vmx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index b680c2e..1a95ef7 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -4935,6 +4935,7 @@ static void vmx_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event) vmx_set_efer(vcpu, 0); vmx_fpu_activate(vcpu); update_exception_bitmap(vcpu); + vmcs_writel(GUEST_RFLAGS, X86_EFLAGS_FIXED); vpid_sync_context(vmx->vpid); } -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/