From: Avi Kivity Date: Tue, 20 May 2008 13:21:13 +0000 (+0300) Subject: KVM: MMU: Fix is_empty_shadow_page() check X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3c9155106d589584f67b026ec444e69c4a68d7dc;p=deliverable%2Flinux.git KVM: MMU: Fix is_empty_shadow_page() check The check is only looking at one of two possible empty ptes. Signed-off-by: Avi Kivity --- diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index c2fd6a4a58c3..ee3f53098f0c 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -658,7 +658,7 @@ static int is_empty_shadow_page(u64 *spt) u64 *end; for (pos = spt, end = pos + PAGE_SIZE / sizeof(u64); pos != end; pos++) - if (*pos != shadow_trap_nonpresent_pte) { + if (is_shadow_present_pte(*pos)) { printk(KERN_ERR "%s: %p %llx\n", __func__, pos, *pos); return 0;