Commit 3d45830c authored by Avi Kivity's avatar Avi Kivity

KVM: Free apic access page on vm destruction

Noticed by Marcelo Tosatti.
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent 3ee16c81
......@@ -3853,6 +3853,8 @@ void kvm_arch_destroy_vm(struct kvm *kvm)
kfree(kvm->arch.vioapic);
kvm_free_vcpus(kvm);
kvm_free_physmem(kvm);
if (kvm->arch.apic_access_page)
put_page(kvm->arch.apic_access_page);
kfree(kvm);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment