summaryrefslogtreecommitdiffstats
path: root/arch/riscv
diff options
context:
space:
mode:
authorAlexandre Ghiti <aghiti@upmem.com>2018-12-10 06:21:46 +0000
committerPalmer Dabbelt <palmer@sifive.com>2019-01-25 10:50:53 -0800
commitae662eec8a515ab550524e04c793b5ddf1aae3a1 (patch)
tree06913ca3f17b61d32c612392bac28ef885ee247f /arch/riscv
parent28198c4639b39899a728ac89aea29d2a7a72562f (diff)
downloadlinux-0-day-ae662eec8a515ab550524e04c793b5ddf1aae3a1.tar.gz
linux-0-day-ae662eec8a515ab550524e04c793b5ddf1aae3a1.tar.xz
riscv: Adjust mmap base address at a third of task size
This ratio is the most used among all other architectures and make icache_hygiene libhugetlbfs test pass: this test mmap lots of hugepages whose addresses, without this patch, reach the end of the process user address space. Signed-off-by: Alexandre Ghiti <aghiti@upmem.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'arch/riscv')
-rw-r--r--arch/riscv/include/asm/processor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h
index 0531f49af5c30..ce70bceb8872e 100644
--- a/arch/riscv/include/asm/processor.h
+++ b/arch/riscv/include/asm/processor.h
@@ -22,7 +22,7 @@
* This decides where the kernel will search for a free chunk of vm
* space during mmap's.
*/
-#define TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE >> 1)
+#define TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3)
#define STACK_TOP TASK_SIZE
#define STACK_TOP_MAX STACK_TOP