Home
last modified time | relevance | path

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

/linux-5.19.10/include/xen/
Dxen.h5 enum xen_domain_type { enum
12 extern enum xen_domain_type xen_domain_type;
14 #define xen_domain_type XEN_NATIVE macro
23 #define xen_domain() (xen_domain_type != XEN_NATIVE)
24 #define xen_pv_domain() (xen_domain_type == XEN_PV_DOMAIN)
25 #define xen_hvm_domain() (xen_domain_type == XEN_HVM_DOMAIN)
/linux-5.19.10/arch/x86/xen/
Denlighten.c61 enum xen_domain_type __ro_after_init xen_domain_type = XEN_NATIVE; variable
62 EXPORT_SYMBOL_GPL(xen_domain_type);
Denlighten_pvh.c34 xen_domain_type = XEN_HVM_DOMAIN; in xen_pvh_init()
Denlighten_hvm.c101 xen_domain_type = XEN_HVM_DOMAIN; in init_hvm_pv_info()
Denlighten_pv.c1206 xen_domain_type = XEN_PV_DOMAIN; in xen_start_kernel()
/linux-5.19.10/arch/arm/xen/
Denlighten.c45 enum xen_domain_type xen_domain_type = XEN_NATIVE; variable
46 EXPORT_SYMBOL(xen_domain_type);
273 xen_domain_type = XEN_HVM_DOMAIN; in xen_early_init()
/linux-5.19.10/drivers/xen/
Dsys-hypervisor.c53 switch (xen_domain_type) { in guest_type_show()