From: kfraser@localhost.localdomain Date: Wed, 8 Nov 2006 10:48:55 +0000 (+0000) Subject: [HVM] Remove bogus free of vlapic structure. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15567^2~61 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d8db1e728aa9083b1565917a6a4685fd2427e82a;p=xen.git [HVM] Remove bogus free of vlapic structure. It is incorrect now that vlapic is embedded inside the vcpu structure. Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/hvm/vlapic.c b/xen/arch/x86/hvm/vlapic.c index 9f97a69839..31f7d20aab 100644 --- a/xen/arch/x86/hvm/vlapic.c +++ b/xen/arch/x86/hvm/vlapic.c @@ -1026,5 +1026,4 @@ void vlapic_destroy(struct vcpu *v) kill_timer(&vlapic->vlapic_timer); unmap_domain_page_global(vlapic->regs); free_domheap_page(vlapic->regs_page); - xfree(vlapic); }