Commit 1a1f239b authored by Ralf Baechle's avatar Ralf Baechle Committed by Sasha Levin

MIPS: Fix 64k page support for 32 bit kernels.

[ Upstream commit d7de4134 ]

TASK_SIZE was defined as 0x7fff8000UL which for 64k pages is not a
multiple of the page size.  Somewhere further down the math fails
such that executing an ELF binary fails.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
Tested-by: default avatarJoshua Henderson <joshua.henderson@microchip.com>
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 445ff22b
...@@ -51,7 +51,7 @@ extern unsigned int vced_count, vcei_count; ...@@ -51,7 +51,7 @@ extern unsigned int vced_count, vcei_count;
* User space process size: 2GB. This is hardcoded into a few places, * User space process size: 2GB. This is hardcoded into a few places,
* so don't change it unless you know what you are doing. * so don't change it unless you know what you are doing.
*/ */
#define TASK_SIZE 0x7fff8000UL #define TASK_SIZE 0x80000000UL
#endif #endif
#define STACK_TOP_MAX TASK_SIZE #define STACK_TOP_MAX TASK_SIZE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment