Message ID | 20230203075232.274282-7-alexghiti@rivosinc.com |
---|---|
State | Accepted |
Commit | 864046c512c2cd8418dc928b91981fb12a80396c |
Headers | show |
Series | RISC-V kasan rework | expand |
Alexandre Ghiti <alexghiti@rivosinc.com> writes: > If KASAN is enabled, VMAP_STACK depends on KASAN_VMALLOC so enable > KASAN_VMALLOC with KASAN so that we can enable VMAP_STACK by default. > > Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com> Reviewed-by: Björn Töpel <bjorn@rivosinc.com>
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig index e2b656043abf..0f226d3261ca 100644 --- a/arch/riscv/Kconfig +++ b/arch/riscv/Kconfig @@ -117,6 +117,7 @@ config RISCV select HAVE_RSEQ select IRQ_DOMAIN select IRQ_FORCED_THREADING + select KASAN_VMALLOC if KASAN select MODULES_USE_ELF_RELA if MODULES select MODULE_SECTIONS if MODULES select OF
If KASAN is enabled, VMAP_STACK depends on KASAN_VMALLOC so enable KASAN_VMALLOC with KASAN so that we can enable VMAP_STACK by default. Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com> --- arch/riscv/Kconfig | 1 + 1 file changed, 1 insertion(+)