public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] do not free active mmu pages in free_mmu_pages()
@ 2009-03-11 10:07 Gleb Natapov
  2009-03-15 12:59 ` Avi Kivity
  2009-03-16 20:15 ` Marcelo Tosatti
  0 siblings, 2 replies; 8+ messages in thread
From: Gleb Natapov @ 2009-03-11 10:07 UTC (permalink / raw)
  To: avi, marcelo; +Cc: kvm

free_mmu_pages() should only undo what alloc_mmu_pages() does.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index 2a36f7f..b625ed4 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -2638,14 +2638,6 @@ EXPORT_SYMBOL_GPL(kvm_disable_tdp);
 
 static void free_mmu_pages(struct kvm_vcpu *vcpu)
 {
-	struct kvm_mmu_page *sp;
-
-	while (!list_empty(&vcpu->kvm->arch.active_mmu_pages)) {
-		sp = container_of(vcpu->kvm->arch.active_mmu_pages.next,
-				  struct kvm_mmu_page, link);
-		kvm_mmu_zap_page(vcpu->kvm, sp);
-		cond_resched();
-	}
 	free_page((unsigned long)vcpu->arch.mmu.pae_root);
 }
 
--
			Gleb.

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-03-16 21:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-11 10:07 [PATCH] do not free active mmu pages in free_mmu_pages() Gleb Natapov
2009-03-15 12:59 ` Avi Kivity
2009-03-16 20:15 ` Marcelo Tosatti
2009-03-16 20:34   ` Gleb Natapov
2009-03-16 21:01     ` Marcelo Tosatti
2009-03-16 21:20       ` Gleb Natapov
2009-03-16 21:33         ` Marcelo Tosatti
2009-03-16 21:32           ` Gleb Natapov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox