From: Wei Liu Date: Thu, 13 Sep 2018 16:38:08 +0000 (+0100) Subject: xen: connect guest creation with CONFIG_HVM X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=558408cab99f7d422ab80ed6bf85c67bf13c5ef8;p=people%2Fiwj%2Fxen.git xen: connect guest creation with CONFIG_HVM Signed-off-by: Wei Liu Acked-by: Jan Beulich --- diff --git a/xen/common/domain.c b/xen/common/domain.c index a043812687..6dfcea494a 100644 --- a/xen/common/domain.c +++ b/xen/common/domain.c @@ -315,7 +315,14 @@ struct domain *domain_create(domid_t domid, /* Sort out our idea of is_{pv,hvm}_domain(). */ if ( config && (config->flags & XEN_DOMCTL_CDF_hvm_guest) ) + { +#ifdef CONFIG_HVM d->guest_type = guest_type_hvm; +#else + err = -EINVAL; + goto fail; +#endif + } else d->guest_type = guest_type_pv;