mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 da2b71fab6
			
		
	
	
		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>
		
			
				
	
	
		
			18 lines
		
	
	
		
			550 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			550 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * arch/x86/include/asm/processor.h:
 | |
|  * TASK_UNMAPPED_BASE         __TASK_UNMAPPED_BASE(TASK_SIZE_LOW)
 | |
|  * __TASK_UNMAPPED_BASE(S)    PAGE_ALIGN(S / 3)
 | |
|  *
 | |
|  * arch/x86/include/asm/page_32_types.h:
 | |
|  * TASK_SIZE_LOW              TASK_SIZE
 | |
|  * TASK_SIZE                  __PAGE_OFFSET
 | |
|  * __PAGE_OFFSET              CONFIG_PAGE_OFFSET
 | |
|  * CONFIG_PAGE_OFFSET         0xc0000000 (default in Kconfig)
 | |
|  */
 | |
| #define TASK_UNMAPPED_BASE    0x40000000
 | |
| 
 | |
| /* arch/x86/include/asm/elf.h */
 | |
| #define ELF_ET_DYN_BASE       0x00400000
 | |
| 
 | |
| #include "../generic/target_mman.h"
 |