|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86/nestedhvm: properly clean up after failure to set up all vCPU-s
# HG changeset patch
# User Jan Beulich <jbeulich@xxxxxxxx>
# Date 1359975818 -3600
# Node ID 69398345c10e7c06f9b5a2725b4d9518307b4fb0
# Parent d1bf3b21f78302dad1ed53e540facf7b9a0e2ab5
x86/nestedhvm: properly clean up after failure to set up all vCPU-s
This implies that the individual destroy functions will have to remain
capable of being called for a vCPU that the corresponding init function
was never run on.
Once at it, also clean up some inefficiencies in the corresponding
parameter validation code.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Acked-by: Keir Fraser <keir@xxxxxxx>
---
diff -r d1bf3b21f783 -r 69398345c10e xen/arch/x86/hvm/hvm.c
--- a/xen/arch/x86/hvm/hvm.c Wed Jan 30 09:17:30 2013 -0800
+++ b/xen/arch/x86/hvm/hvm.c Mon Feb 04 12:03:38 2013 +0100
@@ -3900,20 +3900,25 @@ long do_hvm_op(unsigned long op, XEN_GUE
rc = -EPERM;
break;
}
+ if ( !a.value )
+ break;
if ( a.value > 1 )
rc = -EINVAL;
- if ( !is_hvm_domain(d) )
- rc = -EINVAL;
/* Remove the check below once we have
* shadow-on-shadow.
*/
- if ( cpu_has_svm && !paging_mode_hap(d) && a.value )
+ if ( cpu_has_svm && !paging_mode_hap(d) )
rc = -EINVAL;
/* Set up NHVM state for any vcpus that are already up */
if ( !d->arch.hvm_domain.params[HVM_PARAM_NESTEDHVM] )
+ {
for_each_vcpu(d, v)
if ( rc == 0 )
rc = nestedhvm_vcpu_initialise(v);
+ if ( rc )
+ for_each_vcpu(d, v)
+ nestedhvm_vcpu_destroy(v);
+ }
break;
case HVM_PARAM_BUFIOREQ_EVTCHN:
rc = -EINVAL;
diff -r d1bf3b21f783 -r 69398345c10e xen/arch/x86/hvm/nestedhvm.c
--- a/xen/arch/x86/hvm/nestedhvm.c Wed Jan 30 09:17:30 2013 -0800
+++ b/xen/arch/x86/hvm/nestedhvm.c Mon Feb 04 12:03:38 2013 +0100
@@ -87,7 +87,7 @@ nestedhvm_vcpu_initialise(struct vcpu *v
void
nestedhvm_vcpu_destroy(struct vcpu *v)
{
- if ( nestedhvm_enabled(v->domain) && hvm_funcs.nhvm_vcpu_destroy )
+ if ( hvm_funcs.nhvm_vcpu_destroy )
hvm_funcs.nhvm_vcpu_destroy(v);
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |