Home
last modified time | relevance | path

Searched refs:xen_domain_type (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/include/xen/
H A Dxen.h7 enum xen_domain_type { enum
14 extern enum xen_domain_type xen_domain_type;
16 #define xen_domain_type XEN_NATIVE macro
25 #define xen_domain() (xen_domain_type != XEN_NATIVE)
26 #define xen_pv_domain() (xen_domain_type == XEN_PV_DOMAIN)
27 #define xen_hvm_domain() (xen_domain_type == XEN_HVM_DOMAIN)
/openbmc/linux/arch/x86/xen/
H A Denlighten.c65 enum xen_domain_type __ro_after_init xen_domain_type = XEN_NATIVE; variable
66 EXPORT_SYMBOL_GPL(xen_domain_type);
H A Denlighten_pvh.c35 xen_domain_type = XEN_HVM_DOMAIN; in xen_pvh_init()
H A Denlighten_hvm.c106 xen_domain_type = XEN_HVM_DOMAIN; in init_hvm_pv_info()
H A Denlighten_pv.c1330 xen_domain_type = XEN_PV_DOMAIN; in xen_start_kernel()
/openbmc/linux/arch/arm/xen/
H A Denlighten.c45 enum xen_domain_type xen_domain_type = XEN_NATIVE; variable
46 EXPORT_SYMBOL(xen_domain_type);
270 xen_domain_type = XEN_HVM_DOMAIN; in xen_early_init()
/openbmc/linux/drivers/xen/
H A Dsys-hypervisor.c56 switch (xen_domain_type) { in guest_type_show()