summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/riscv/Makefile
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@rivosinc.com>2023-08-24 00:54:17 +0300
committerPalmer Dabbelt <palmer@rivosinc.com>2023-08-31 10:18:36 +0300
commit94f00388c2a4623700f030e90161744f4bdb8225 (patch)
tree477e26e4c5f59a12ee200808c9ce25798761a158 /tools/testing/selftests/riscv/Makefile
parent52b77c2806fe97a1166944f4b8bf77153ff27435 (diff)
parent7998abe69d3c4cd611d586384fa33f561c1bd61e (diff)
downloadlinux-94f00388c2a4623700f030e90161744f4bdb8225.tar.xz
Merge patch series "RISC-V: mm: Make SV48 the default address space"
Charlie Jenkins <charlie@rivosinc.com> says: Make sv48 the default address space for mmap as some applications currently depend on this assumption. Users can now select a desired address space using a non-zero hint address to mmap. Previously, requesting the default address space from mmap by passing zero as the hint address would result in using the largest address space possible. Some applications depend on empty bits in the virtual address space, like Go and Java, so this patch provides more flexibility for application developers. * b4-shazam-merge: RISC-V: mm: Document mmap changes RISC-V: mm: Update pgtable comment documentation RISC-V: mm: Add tests for RISC-V mm RISC-V: mm: Restrict address space for sv39,sv48,sv57 Link: https://lore.kernel.org/r/20230809232218.849726-1-charlie@rivosinc.com Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'tools/testing/selftests/riscv/Makefile')
-rw-r--r--tools/testing/selftests/riscv/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/riscv/Makefile b/tools/testing/selftests/riscv/Makefile
index 9dd629cc86aa..1b79da90396e 100644
--- a/tools/testing/selftests/riscv/Makefile
+++ b/tools/testing/selftests/riscv/Makefile
@@ -5,7 +5,7 @@
ARCH ?= $(shell uname -m 2>/dev/null || echo not)
ifneq (,$(filter $(ARCH),riscv))
-RISCV_SUBTARGETS ?= hwprobe vector
+RISCV_SUBTARGETS ?= hwprobe vector mm
else
RISCV_SUBTARGETS :=
endif