diff options
Diffstat (limited to 'include/mach')
-rw-r--r-- | include/mach/xen.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mach/xen.h b/include/mach/xen.h index 6fc626f2..44620820 100644 --- a/include/mach/xen.h +++ b/include/mach/xen.h @@ -48,11 +48,15 @@ extern unsigned long la_shift; #define la_to_kv(a) phystokv(la_to_pa(a)) #ifdef MACH_PSEUDO_PHYS +#ifdef __i386__ #if PAE #define PFN_LIST MACH2PHYS_VIRT_START_PAE #else #define PFN_LIST MACH2PHYS_VIRT_START_NONPAE #endif +#else +#define PFN_LIST MACH2PHYS_VIRT_START +#endif #if VM_MIN_KERNEL_ADDRESS != LINEAR_MIN_KERNEL_ADDRESS extern unsigned long *pfn_list; #else |