diff options
author | Roger Pau Monne <roger.pau@citrix.com> | 2019-04-23 15:04:15 +0200 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2019-04-25 16:36:15 +0200 |
commit | c9f804d64bb93c8dbf957df1d7e9de11380e522d (patch) | |
tree | f3266dda879d192566274a822672c704f6395b69 /arch/x86/xen | |
parent | xenbus: drop useless LIST_HEAD in xenbus_write_watch() and xenbus_file_write() (diff) | |
download | linux-c9f804d64bb93c8dbf957df1d7e9de11380e522d.tar.xz linux-c9f804d64bb93c8dbf957df1d7e9de11380e522d.zip |
xen/pvh: set xen_domain_type to HVM in xen_pvh_init
Or else xen_domain() returns false despite xen_pvh being set.
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: stable@vger.kernel.org # 4.19+
Diffstat (limited to 'arch/x86/xen')
-rw-r--r-- | arch/x86/xen/enlighten_pvh.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/xen/enlighten_pvh.c b/arch/x86/xen/enlighten_pvh.c index 35b7599d2d0b..bbffa409e0e8 100644 --- a/arch/x86/xen/enlighten_pvh.c +++ b/arch/x86/xen/enlighten_pvh.c @@ -27,6 +27,7 @@ void __init xen_pvh_init(void) u64 pfn; xen_pvh = 1; + xen_domain_type = XEN_HVM_DOMAIN; xen_start_flags = pvh_start_info.flags; msr = cpuid_ebx(xen_cpuid_base() + 2); |