xen_domain_type
xen_domain_type = XEN_HVM_DOMAIN;
enum xen_domain_type xen_domain_type = XEN_NATIVE;
EXPORT_SYMBOL(xen_domain_type);
enum xen_domain_type __ro_after_init xen_domain_type = XEN_NATIVE;
EXPORT_SYMBOL_GPL(xen_domain_type);
xen_domain_type = XEN_HVM_DOMAIN;
xen_domain_type = XEN_PV_DOMAIN;
xen_domain_type = XEN_HVM_DOMAIN;
switch (xen_domain_type) {
extern enum xen_domain_type xen_domain_type;
#define xen_domain() (xen_domain_type != XEN_NATIVE)
#define xen_hvm_domain() (xen_domain_type == XEN_HVM_DOMAIN)