|
@@ -247,11 +247,11 @@ extern int force_personality32;
|
|
|
|
|
|
/*
|
|
/*
|
|
* This is the base location for PIE (ET_DYN with INTERP) loads. On
|
|
* This is the base location for PIE (ET_DYN with INTERP) loads. On
|
|
- * 64-bit, this is raised to 4GB to leave the entire 32-bit address
|
|
|
|
|
|
+ * 64-bit, this is above 4GB to leave the entire 32-bit address
|
|
* space open for things that want to use the area for 32-bit pointers.
|
|
* space open for things that want to use the area for 32-bit pointers.
|
|
*/
|
|
*/
|
|
#define ELF_ET_DYN_BASE (mmap_is_ia32() ? 0x000400000UL : \
|
|
#define ELF_ET_DYN_BASE (mmap_is_ia32() ? 0x000400000UL : \
|
|
- 0x100000000UL)
|
|
|
|
|
|
+ (TASK_SIZE / 3 * 2))
|
|
|
|
|
|
/* This yields a mask that user programs can use to figure out what
|
|
/* This yields a mask that user programs can use to figure out what
|
|
instruction set this CPU supports. This could be done in user space,
|
|
instruction set this CPU supports. This could be done in user space,
|