diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2009-02-18 14:54:37 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-03-24 11:03:10 +0200 |
commit | 452425dbaa1974e9fc489e64a8de46a47b4c2754 (patch) | |
tree | 4378ae498667954fee0b9d18fe351c4812eee85d | |
parent | 6bed6b9e84bf5e6b468847a50c0751389fdd01d4 (diff) | |
download | linux-3.10-452425dbaa1974e9fc489e64a8de46a47b4c2754.tar.gz linux-3.10-452425dbaa1974e9fc489e64a8de46a47b4c2754.tar.bz2 linux-3.10-452425dbaa1974e9fc489e64a8de46a47b4c2754.zip |
KVM: MMU: remove assertion in kvm_mmu_alloc_page
The assertion no longer makes sense since we don't clear page tables on
allocation; instead we clear them during prefetch.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r-- | arch/x86/kvm/mmu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index c90b4b2f2ab..4a21b0f8491 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c @@ -802,7 +802,6 @@ static struct kvm_mmu_page *kvm_mmu_alloc_page(struct kvm_vcpu *vcpu, set_page_private(virt_to_page(sp->spt), (unsigned long)sp); list_add(&sp->link, &vcpu->kvm->arch.active_mmu_pages); INIT_LIST_HEAD(&sp->oos_link); - ASSERT(is_empty_shadow_page(sp->spt)); bitmap_zero(sp->slot_bitmap, KVM_MEMORY_SLOTS + KVM_PRIVATE_MEM_SLOTS); sp->multimapped = 0; sp->parent_pte = parent_pte; |