Home
last modified time | relevance | path

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

/linux-6.12.1/include/xen/
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)
/linux-6.12.1/arch/x86/xen/
Denlighten.c60 enum xen_domain_type __ro_after_init xen_domain_type = XEN_NATIVE; variable
61 EXPORT_SYMBOL_GPL(xen_domain_type);
Denlighten_pvh.c136 xen_domain_type = XEN_HVM_DOMAIN; in xen_pvh_init()
Denlighten_hvm.c104 xen_domain_type = XEN_HVM_DOMAIN; in init_hvm_pv_info()
Denlighten_pv.c1342 xen_domain_type = XEN_PV_DOMAIN; in xen_start_kernel()
/linux-6.12.1/arch/arm/xen/
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()
/linux-6.12.1/drivers/xen/
Dsys-hypervisor.c56 switch (xen_domain_type) { in guest_type_show()