mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00

Provide default values that are as close as possible to the values used by the guest's kernel. Tested-by: Helge Deller <deller@gmx.de> Reviewed-by: Helge Deller <deller@gmx.de> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
11 lines
318 B
C
11 lines
318 B
C
/*
|
|
* arch/s390/include/asm/processor.h:
|
|
* TASK_UNMAPPED_BASE (... : (_REGION2_SIZE >> 1))
|
|
*
|
|
* arch/s390/include/asm/pgtable.h:
|
|
* _REGION2_SIZE (1UL << _REGION2_SHIFT)
|
|
* _REGION2_SHIFT 42
|
|
*/
|
|
#define TASK_UNMAPPED_BASE (1ull << 41)
|
|
|
|
#include "../generic/target_mman.h"
|