[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 20/23] xen: connect guest creation with CONFIG_{HVM, PV}
Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- xen/common/domain.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/xen/common/domain.c b/xen/common/domain.c index 171d25e..73b5485 100644 --- a/xen/common/domain.c +++ b/xen/common/domain.c @@ -318,9 +318,23 @@ struct domain *domain_create(domid_t domid, if ( !is_idle_domain(d) ) { if ( config->flags & XEN_DOMCTL_CDF_hvm_guest ) + { +#ifdef CONFIG_HVM d->guest_type = guest_type_hvm; +#else + err = -EINVAL; + goto fail; +#endif + } else + { +#ifdef CONFIG_PV d->guest_type = guest_type_pv; +#else + err = -EINVAL; + goto fail; +#endif + } watchdog_domain_init(d); init_status |= INIT_watchdog; -- git-series 0.9.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |