Discussion:
[Xen-changelog] [xen master] arm: fix Dom0 creation after ef72c93df9
p***@xen.org
2018-11-04 05:00:50 UTC
Permalink
commit 76bfbcec423e83c4ed975645ebf5a9a4ad2494f7
Author: Wei Liu <***@citrix.com>
AuthorDate: Mon Oct 22 14:40:21 2018 +0100
Commit: Wei Liu <***@citrix.com>
CommitDate: Mon Oct 22 14:43:40 2018 +0100

arm: fix Dom0 creation after ef72c93df9

ARM Dom0 creation was broken by the said commit because ARM neither
provided XEN_DOMCTL_CDF_hvm_guest nor had CONFIG_PV set.

Set XEN_DOMCTL_CDF_hvm_guest flag for ARM Dom0 to fix the issue. Also
set XEN_DOMCTL_CDF_hap while at it.

Signed-off-by: Wei Liu <***@citrix.com>
Acked-by: Julien Grall <***@arm.com>
---
xen/arch/arm/setup.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c
index ea2495a73b..80f00286d3 100644
--- a/xen/arch/arm/setup.c
+++ b/xen/arch/arm/setup.c
@@ -693,6 +693,7 @@ void __init start_xen(unsigned long boot_phys_offset,
struct bootmodule *xen_bootmodule;
struct domain *dom0;
struct xen_domctl_createdomain dom0_cfg = {
+ .flags = XEN_DOMCTL_CDF_hvm_guest | XEN_DOMCTL_CDF_hap,
.max_evtchn_port = -1,
.max_grant_frames = gnttab_dom0_frames(),
.max_maptrack_frames = opt_max_maptrack_frames,
--
generated by git-patchbot for /home/xen/git/xen.git#master

Loading...