aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/mmu.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2009-12-02 15:17:00 +0200
committerMarcelo Tosatti <mtosatti@redhat.com>2010-03-01 12:35:39 -0300
commit186a3e526ac1b4063a723f90ae4893beedb24fc6 (patch)
tree3c82f8c60afca12987165c5749b6940c008a7fb7 /arch/x86/kvm/mmu.c
parentKVM: x86: raise TSS exception for NULL CS and SS segments (diff)
downloadlinux-dev-186a3e526ac1b4063a723f90ae4893beedb24fc6.tar.xz
linux-dev-186a3e526ac1b4063a723f90ae4893beedb24fc6.zip
KVM: MMU: Report spte not found in rmap before BUG()
In the past we've had errors of single-bit in the other two cases; the printk() may confirm it for the third case (many->many). Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to '')
-rw-r--r--arch/x86/kvm/mmu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index 89a49fb46a27..4f499d7f7106 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -662,6 +662,7 @@ static void rmap_remove(struct kvm *kvm, u64 *spte)
prev_desc = desc;
desc = desc->more;
}
+ pr_err("rmap_remove: %p %llx many->many\n", spte, *spte);
BUG();
}
}