[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-changelog] [xen-3.4-testing] Even 'dummy' domains (e.g., dom_xen a.k.a. DOMID_XEN) must have valid I/O caps.



# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1273743619 -3600
# Node ID d11bdc25b36d1c852117d308fe70db461f5dabe8
# Parent  0d699edcd3d476a0a6ee28848cf13ceba4726441
Even 'dummy' domains (e.g., dom_xen a.k.a. DOMID_XEN) must have valid I/O caps.

Ensure the rangesets are always initialised. Certain (privileged)
invocations of hypercalls such as mmu_update can end up interrogating
these special domains for possible I/O capabilities.

Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
xen-unstable changeset:   21373:1ec412805622
xen-unstable date:        Thu May 13 10:09:02 2010 +0100
---
 xen/common/domain.c |   48 ++++++++++++++++++++++++------------------------
 1 files changed, 24 insertions(+), 24 deletions(-)

diff -r 0d699edcd3d4 -r d11bdc25b36d xen/common/domain.c
--- a/xen/common/domain.c       Thu May 13 10:38:59 2010 +0100
+++ b/xen/common/domain.c       Thu May 13 10:40:19 2010 +0100
@@ -229,37 +229,37 @@ struct domain *domain_create(
     if ( (domid == 0) && opt_dom0_vcpus_pin )
         d->is_pinned = 1;
 
-    if ( domcr_flags & DOMCRF_dummy )
-        return d;
-
     rangeset_domain_initialise(d);
     init_status |= INIT_rangeset;
-
-    if ( !is_idle_domain(d) )
-    {
-        if ( xsm_domain_create(d, ssidref) != 0 )
-            goto fail;
-
-        d->is_paused_by_controller = 1;
-        atomic_inc(&d->pause_count);
-
-        if ( evtchn_init(d) != 0 )
-            goto fail;
-        init_status |= INIT_evtchn;
-
-        if ( grant_table_create(d) != 0 )
-            goto fail;
-        init_status |= INIT_gnttab;
-    }
-
-    if ( arch_domain_create(d, domcr_flags) != 0 )
-        goto fail;
-    init_status |= INIT_arch;
 
     d->iomem_caps = rangeset_new(d, "I/O Memory", RANGESETF_prettyprint_hex);
     d->irq_caps   = rangeset_new(d, "Interrupts", 0);
     if ( (d->iomem_caps == NULL) || (d->irq_caps == NULL) )
         goto fail;
+
+    if ( domcr_flags & DOMCRF_dummy )
+        return d;
+
+    if ( !is_idle_domain(d) )
+    {
+        if ( xsm_domain_create(d, ssidref) != 0 )
+            goto fail;
+
+        d->is_paused_by_controller = 1;
+        atomic_inc(&d->pause_count);
+
+        if ( evtchn_init(d) != 0 )
+            goto fail;
+        init_status |= INIT_evtchn;
+
+        if ( grant_table_create(d) != 0 )
+            goto fail;
+        init_status |= INIT_gnttab;
+    }
+
+    if ( arch_domain_create(d, domcr_flags) != 0 )
+        goto fail;
+    init_status |= INIT_arch;
 
     if ( sched_init_domain(d) != 0 )
         goto fail;

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.