]> git.hungrycats.org Git - linux/commitdiff
MIPS: Fix 64k page support for 32 bit kernels.
authorRalf Baechle <ralf@linux-mips.org>
Thu, 4 Feb 2016 00:24:40 +0000 (01:24 +0100)
committerBen Hutchings <ben@decadent.org.uk>
Thu, 12 Oct 2017 14:28:17 +0000 (15:28 +0100)
commit d7de413475f443957a0c1d256e405d19b3a2cb22 upstream.

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: Ralf Baechle <ralf@linux-mips.org>
Tested-by: Joshua Henderson <joshua.henderson@microchip.com>
Cc: James Hogan <james.hogan@imgtec.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
arch/mips/include/asm/processor.h

index ad70cba8daffaeaeb7f62a7a47308dc1597a8be4..3a05491b851ef0d3e72e1c72279cd88051c8573c 100644 (file)
@@ -51,7 +51,7 @@ extern unsigned int vced_count, vcei_count;
  * User space process size: 2GB. This is hardcoded into a few places,
  * so don't change it unless you know what you are doing.
  */
-#define TASK_SIZE      0x7fff8000UL
+#define TASK_SIZE      0x80000000UL
 #endif
 
 #ifdef __KERNEL__