From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xiao Guangrong Subject: [PATCH 13/15] KVM: VMX: modify the default value of nontrap shadow pte Date: Tue, 07 Jun 2011 21:06:33 +0800 Message-ID: <4DEE2259.7080009@cn.fujitsu.com> References: <4DEE205E.8000601@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Marcelo Tosatti , LKML , KVM To: Avi Kivity Return-path: In-Reply-To: <4DEE205E.8000601@cn.fujitsu.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Modify the default value to identify nontrap shadow pte and mmio shadow pte whill will be introduced in later patch Signed-off-by: Xiao Guangrong --- arch/x86/kvm/vmx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index 20dbf7f..8c3d343 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -7110,7 +7110,7 @@ static int __init vmx_init(void) kvm_disable_tdp(); if (bypass_guest_pf) - kvm_mmu_set_nonpresent_ptes(~0xffeull, 0ull); + kvm_mmu_set_nonpresent_ptes(0xfull << 49 | 1ull, 0ull); return 0; -- 1.7.4.4