|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] xen/domain: Reposition config copying in domain_create()
This is cleanup for two pending series which will copy more data than just
flags from config.
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
CC: Jan Beulich <JBeulich@xxxxxxxx>
CC: Roger Pau Monné <roger.pau@xxxxxxxxxx>
CC: Wei Liu <wl@xxxxxxx>
CC: Stefano Stabellini <sstabellini@xxxxxxxxxx>
CC: Julien Grall <julien@xxxxxxx>
CC: Volodymyr Babchuk <Volodymyr_Babchuk@xxxxxxxx>
The series in question are my fault-ttl series, and Michal's Processor Trace
series.
---
xen/common/domain.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/xen/common/domain.c b/xen/common/domain.c
index d151be3f36..164c9d14e9 100644
--- a/xen/common/domain.c
+++ b/xen/common/domain.c
@@ -421,14 +421,15 @@ struct domain *domain_create(domid_t domid,
if ( (d = alloc_domain_struct()) == NULL )
return ERR_PTR(-ENOMEM);
- d->options = config ? config->flags : 0;
-
/* Sort out our idea of is_system_domain(). */
d->domain_id = domid;
/* Debug sanity. */
ASSERT(is_system_domain(d) ? config == NULL : config != NULL);
+ if ( config )
+ d->options = config->flags;
+
/* Sort out our idea of is_control_domain(). */
d->is_privileged = is_priv;
--
2.11.0
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |