|
@@ -56,6 +56,9 @@ EXPORT_SYMBOL_GPL(hypercall_page);
|
|
|
DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
|
|
|
DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
|
|
|
|
|
|
+enum xen_domain_type xen_domain_type = XEN_NATIVE;
|
|
|
+EXPORT_SYMBOL_GPL(xen_domain_type);
|
|
|
+
|
|
|
/*
|
|
|
* Identity map, in addition to plain kernel map. This needs to be
|
|
|
* large enough to allocate page table pages to allocate the rest.
|
|
@@ -1613,6 +1616,8 @@ asmlinkage void __init xen_start_kernel(void)
|
|
|
if (!xen_start_info)
|
|
|
return;
|
|
|
|
|
|
+ xen_domain_type = XEN_PV_DOMAIN;
|
|
|
+
|
|
|
BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
|
|
|
|
|
|
xen_setup_features();
|
|
@@ -1650,7 +1655,7 @@ asmlinkage void __init xen_start_kernel(void)
|
|
|
|
|
|
/* Prevent unwanted bits from being set in PTEs. */
|
|
|
__supported_pte_mask &= ~_PAGE_GLOBAL;
|
|
|
- if (!is_initial_xendomain())
|
|
|
+ if (!xen_initial_domain())
|
|
|
__supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
|
|
|
|
|
|
/* Don't do the full vcpu_info placement stuff until we have a
|
|
@@ -1685,7 +1690,7 @@ asmlinkage void __init xen_start_kernel(void)
|
|
|
boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
|
|
|
boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
|
|
|
|
|
|
- if (!is_initial_xendomain()) {
|
|
|
+ if (!xen_initial_domain()) {
|
|
|
add_preferred_console("xenboot", 0, NULL);
|
|
|
add_preferred_console("tty", 0, NULL);
|
|
|
add_preferred_console("hvc", 0, NULL);
|