diff options
author | Gleb Natapov <gleb@redhat.com> | 2009-03-19 06:20:36 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-06-10 04:48:30 -0400 |
commit | f00be0cae4e6ad0a8c7be381c6d9be3586800b3e (patch) | |
tree | 7109d3198eb73d64e8ac931764a065ca1393f405 /arch/x86/kvm/mmu.c | |
parent | e56d532f20c890a06bbe7cd479f4201e3a03cd73 (diff) |
KVM: MMU: do not free active mmu pages in free_mmu_pages()
free_mmu_pages() should only undo what alloc_mmu_pages() does.
Free mmu pages from the generic VM destruction function, kvm_destroy_vm().
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/mmu.c')
-rw-r--r-- | arch/x86/kvm/mmu.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 32cf11e5728a..8aac67cbd92f 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c | |||
@@ -2638,14 +2638,6 @@ EXPORT_SYMBOL_GPL(kvm_disable_tdp); | |||
2638 | 2638 | ||
2639 | static void free_mmu_pages(struct kvm_vcpu *vcpu) | 2639 | static void free_mmu_pages(struct kvm_vcpu *vcpu) |
2640 | { | 2640 | { |
2641 | struct kvm_mmu_page *sp; | ||
2642 | |||
2643 | while (!list_empty(&vcpu->kvm->arch.active_mmu_pages)) { | ||
2644 | sp = container_of(vcpu->kvm->arch.active_mmu_pages.next, | ||
2645 | struct kvm_mmu_page, link); | ||
2646 | kvm_mmu_zap_page(vcpu->kvm, sp); | ||
2647 | cond_resched(); | ||
2648 | } | ||
2649 | free_page((unsigned long)vcpu->arch.mmu.pae_root); | 2641 | free_page((unsigned long)vcpu->arch.mmu.pae_root); |
2650 | } | 2642 | } |
2651 | 2643 | ||