da2b71fab6
Copy each guest kernel's default value, then bound it against reserved_va or the host address space. Tested-by: Helge Deller <deller@gmx.de> Reviewed-by: Helge Deller <deller@gmx.de> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
13 lines
393 B
C
13 lines
393 B
C
/*
|
|
* arch/loongarch/include/asm/processor.h:
|
|
* TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3)
|
|
* TASK_SIZE64 0x1UL << (... ? VA_BITS : ...)
|
|
*/
|
|
#define TASK_UNMAPPED_BASE \
|
|
TARGET_PAGE_ALIGN((1ull << TARGET_VIRT_ADDR_SPACE_BITS) / 3)
|
|
|
|
/* arch/loongarch/include/asm/elf.h */
|
|
#define ELF_ET_DYN_BASE (TASK_UNMAPPED_BASE * 2)
|
|
|
|
#include "../generic/target_mman.h"
|