* [PATCH 11/12] Nested Virtualization: enablement
@ 2010-12-20 16:12 Christoph Egger
0 siblings, 0 replies; 2+ messages in thread
From: Christoph Egger @ 2010-12-20 16:12 UTC (permalink / raw)
To: xen-devel@lists.xensource.com
[-- Attachment #1: Type: text/plain, Size: 264 bytes --]
--
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632
[-- Attachment #2: xen_nh11_enable.diff --]
[-- Type: text/x-diff, Size: 2574 bytes --]
# HG changeset patch
# User cegger
# Date 1292839444 -3600
Implement generic piece to finally enable nested virtualization
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
diff -r 9d27b197ca34 -r c4837a54b175 xen/arch/x86/hvm/hvm.c
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -939,10 +939,16 @@ int hvm_vcpu_initialise(struct vcpu *v)
if ( (rc = hvm_funcs.vcpu_initialise(v)) != 0 )
goto fail2;
+ rc = nestedhvm_vcpu_initialise(v);
+ if ( rc < 0 ) {
+ printk("%s: nestedhvm_vcpu_initialise returned %i\n", __func__, rc);
+ goto fail3;
+ }
+
/* Create ioreq event channel. */
rc = alloc_unbound_xen_event_channel(v, 0);
if ( rc < 0 )
- goto fail3;
+ goto fail4;
/* Register ioreq event channel. */
v->arch.hvm_vcpu.xen_port = rc;
@@ -957,12 +963,12 @@ int hvm_vcpu_initialise(struct vcpu *v)
#ifdef CONFIG_COMPAT
rc = setup_compat_arg_xlat(v);
if ( rc != 0 )
- goto fail3;
+ goto fail4;
#endif
rc = hvm_vcpu_cacheattr_init(v);
if ( rc != 0 )
- goto fail4;
+ goto fail5;
tasklet_init(&v->arch.hvm_vcpu.assert_evtchn_irq_tasklet,
(void(*)(unsigned long))hvm_assert_evtchn_irq,
@@ -987,10 +993,12 @@ int hvm_vcpu_initialise(struct vcpu *v)
return 0;
- fail4:
+ fail5:
#ifdef CONFIG_COMPAT
free_compat_arg_xlat(v);
#endif
+ fail4:
+ nestedhvm_vcpu_destroy(v);
fail3:
hvm_funcs.vcpu_destroy(v);
fail2:
@@ -1001,9 +1009,16 @@ int hvm_vcpu_initialise(struct vcpu *v)
void hvm_vcpu_destroy(struct vcpu *v)
{
+ int rc;
+
+ rc = nestedhvm_vcpu_destroy(v);
+ if (rc)
+ gdprintk(XENLOG_ERR, "nestedhvm_vcpu_destroy() failed with %i\n", rc);
+
#ifdef CONFIG_COMPAT
free_compat_arg_xlat(v);
#endif
+
tasklet_kill(&v->arch.hvm_vcpu.assert_evtchn_irq_tasklet);
hvm_vcpu_cacheattr_destroy(v);
vlapic_destroy(v);
@@ -3224,6 +3239,16 @@ long do_hvm_op(unsigned long op, XEN_GUE
case HVM_PARAM_ACPI_IOPORTS_LOCATION:
rc = pmtimer_change_ioport(d, a.value);
break;
+ case HVM_PARAM_NESTEDHVM:
+ if ( a.value > 1 )
+ rc = -EINVAL;
+ if ( !is_hvm_domain(d) )
+ rc = -EINVAL;
+ /* Remove the check below once we have
+ * shadow-on-shadow.
+ */
+ if ( !paging_mode_hap(d) && a.value )
+ rc = -EINVAL;
}
if ( rc == 0 )
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 2+ messages in thread* [PATCH 11/12] Nested Virtualization: enablement
@ 2011-03-09 14:26 Christoph Egger
0 siblings, 0 replies; 2+ messages in thread
From: Christoph Egger @ 2011-03-09 14:26 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 264 bytes --]
--
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632
[-- Attachment #2: xen_nh11_enable.diff --]
[-- Type: text/x-diff, Size: 2884 bytes --]
# HG changeset patch
# User cegger
# Date 1299670583 -3600
Implement generic piece to finally enable nested virtualization
Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
diff -r d8a80d4b19aa -r 3ab405e67be6 xen/arch/x86/hvm/hvm.c
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -951,10 +951,23 @@ int hvm_vcpu_initialise(struct vcpu *v)
if ( (rc = hvm_funcs.vcpu_initialise(v)) != 0 )
goto fail2;
+ /* When I start the l1 guest with 'xm/xend' then HVM_PARAM_NESTEDHVM
+ * is already evaluated.
+ *
+ * When I start the l1 guest with 'xl' then HVM_PARAM_NESTEDHVM
+ * has not been evaluated yet so we have to initialise nested
+ * virtualization unconditionally here.
+ */
+ rc = nestedhvm_vcpu_initialise(v);
+ if ( rc < 0 ) {
+ printk("%s: nestedhvm_vcpu_initialise returned %i\n", __func__, rc);
+ goto fail3;
+ }
+
/* Create ioreq event channel. */
rc = alloc_unbound_xen_event_channel(v, 0);
if ( rc < 0 )
- goto fail3;
+ goto fail4;
/* Register ioreq event channel. */
v->arch.hvm_vcpu.xen_port = rc;
@@ -971,12 +984,12 @@ int hvm_vcpu_initialise(struct vcpu *v)
#ifdef CONFIG_COMPAT
rc = setup_compat_arg_xlat(v);
if ( rc != 0 )
- goto fail3;
+ goto fail4;
#endif
rc = hvm_vcpu_cacheattr_init(v);
if ( rc != 0 )
- goto fail4;
+ goto fail5;
tasklet_init(&v->arch.hvm_vcpu.assert_evtchn_irq_tasklet,
(void(*)(unsigned long))hvm_assert_evtchn_irq,
@@ -1001,10 +1014,12 @@ int hvm_vcpu_initialise(struct vcpu *v)
return 0;
- fail4:
+ fail5:
#ifdef CONFIG_COMPAT
free_compat_arg_xlat(v);
#endif
+ fail4:
+ nestedhvm_vcpu_destroy(v);
fail3:
hvm_funcs.vcpu_destroy(v);
fail2:
@@ -1015,9 +1030,16 @@ int hvm_vcpu_initialise(struct vcpu *v)
void hvm_vcpu_destroy(struct vcpu *v)
{
+ int rc;
+
+ rc = nestedhvm_vcpu_destroy(v);
+ if (rc)
+ gdprintk(XENLOG_ERR, "nestedhvm_vcpu_destroy() failed with %i\n", rc);
+
#ifdef CONFIG_COMPAT
free_compat_arg_xlat(v);
#endif
+
tasklet_kill(&v->arch.hvm_vcpu.assert_evtchn_irq_tasklet);
hvm_vcpu_cacheattr_destroy(v);
vlapic_destroy(v);
@@ -3320,6 +3342,17 @@ long do_hvm_op(unsigned long op, XEN_GUE
if ( a.value & HVMPME_onchangeonly )
rc = -EINVAL;
break;
+ case HVM_PARAM_NESTEDHVM:
+ if ( a.value > 1 )
+ rc = -EINVAL;
+ if ( !is_hvm_domain(d) )
+ rc = -EINVAL;
+ /* Remove the check below once we have
+ * shadow-on-shadow.
+ */
+ if ( !paging_mode_hap(d) && a.value )
+ rc = -EINVAL;
+ break;
}
if ( rc == 0 )
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-03-09 14:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-20 16:12 [PATCH 11/12] Nested Virtualization: enablement Christoph Egger
-- strict thread matches above, loose matches on Subject: below --
2011-03-09 14:26 Christoph Egger
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.