]> git.proxmox.com Git - mirror_qemu.git/blob - linux-user/x86_64/target_mman.h
f9ff652b377e61baecc5c6c3283e23ac72cf5e28
[mirror_qemu.git] / linux-user / x86_64 / target_mman.h
1 /*
2 * arch/x86/include/asm/processor.h:
3 * TASK_UNMAPPED_BASE __TASK_UNMAPPED_BASE(TASK_SIZE_LOW)
4 * __TASK_UNMAPPED_BASE(S) PAGE_ALIGN(S / 3)
5 *
6 * arch/x86/include/asm/page_64_types.h:
7 * TASK_SIZE_LOW DEFAULT_MAP_WINDOW
8 * DEFAULT_MAP_WINDOW ((1UL << 47) - PAGE_SIZE)
9 */
10 #define TASK_UNMAPPED_BASE \
11 TARGET_PAGE_ALIGN((1ull << TARGET_VIRT_ADDR_SPACE_BITS) / 3)
12
13 #include "../generic/target_mman.h"