23 lines
660 B
Diff
23 lines
660 B
Diff
|
xen: free domain's vcpu array
|
||
|
|
||
|
This was overlooked in fb442e2171 ("x86_64: allow more vCPU-s per
|
||
|
guest").
|
||
|
|
||
|
This is XSA-149.
|
||
|
|
||
|
Signed-off-by: Jan Beulich <jbeulich@suse.com>
|
||
|
Reviewed-by: Ian Campbell <ian.campbell@citrix.com>
|
||
|
|
||
|
Index: xen-4.5.1-testing/xen/common/domain.c
|
||
|
===================================================================
|
||
|
--- xen-4.5.1-testing.orig/xen/common/domain.c
|
||
|
+++ xen-4.5.1-testing/xen/common/domain.c
|
||
|
@@ -831,6 +831,7 @@ static void complete_domain_destroy(stru
|
||
|
|
||
|
xsm_free_security_domain(d);
|
||
|
free_cpumask_var(d->domain_dirty_cpumask);
|
||
|
+ xfree(d->vcpu);
|
||
|
free_domain_struct(d);
|
||
|
|
||
|
send_global_virq(VIRQ_DOM_EXC);
|