diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-08-02 15:17:33 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-08-08 13:27:15 -0700 |
| commit | da2b71fab63f2396396021917eed9d52f33a45c0 (patch) | |
| tree | 59f4b4fde6d99cb6e61f81bf40832ec344716a1f /linux-user/ppc/target_mman.h | |
| parent | 2d708164e0475064e0e2167bd73e8570e22df1e0 (diff) | |
| download | focaccia-qemu-da2b71fab63f2396396021917eed9d52f33a45c0.tar.gz focaccia-qemu-da2b71fab63f2396396021917eed9d52f33a45c0.zip | |
linux-user: Define ELF_ET_DYN_BASE in $guest/target_mman.h
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>
Diffstat (limited to 'linux-user/ppc/target_mman.h')
| -rw-r--r-- | linux-user/ppc/target_mman.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linux-user/ppc/target_mman.h b/linux-user/ppc/target_mman.h index 04f99c6077..646d1ccae7 100644 --- a/linux-user/ppc/target_mman.h +++ b/linux-user/ppc/target_mman.h @@ -17,6 +17,13 @@ #define TASK_UNMAPPED_BASE 0x40000000 #endif +/* arch/powerpc/include/asm/elf.h */ +#ifdef TARGET_PPC64 +#define ELF_ET_DYN_BASE 0x100000000ull +#else +#define ELF_ET_DYN_BASE 0x000400000 +#endif + #include "../generic/target_mman.h" #endif |