aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/include/asm/stacktrace.h
diff options
context:
space:
mode:
authorLinus Torvalds <[email protected]>2024-02-09 11:19:36 -0800
committerLinus Torvalds <[email protected]>2024-02-09 11:19:36 -0800
commit9ed18b0b7765ec3aa5f10843d1c3daaa1a225337 (patch)
treebcd64ea4f057baae900fea6b41373242479ba52c /arch/riscv/include/asm/stacktrace.h
parentca8a66738a444e05fb256ca0081224d066318401 (diff)
parent3951f6add519a8e954bf78691a412f65b24f4715 (diff)
Merge tag 'riscv-for-linus-6.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux
Pull RISC-V fixes from Palmer Dabbelt: - fix missing TLB flush during early boot on SPARSEMEM_VMEMMAP configurations - fixes to correctly implement the break-before-make behavior requried by the ISA for NAPOT mappings - fix a missing TLB flush on intermediate mapping changes - fix build warning about a missing declaration of overflow_stack - fix performace regression related to incorrect tracking of completed batch TLB flushes * tag 'riscv-for-linus-6.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux: riscv: Fix arch_tlbbatch_flush() by clearing the batch cpumask riscv: declare overflow_stack as exported from traps.c riscv: Fix arch_hugetlb_migration_supported() for NAPOT riscv: Flush the tlb when a page directory is freed riscv: Fix hugetlb_mask_last_page() when NAPOT is enabled riscv: Fix set_huge_pte_at() for NAPOT mapping riscv: mm: execute local TLB flush after populating vmemmap
Diffstat (limited to 'arch/riscv/include/asm/stacktrace.h')
-rw-r--r--arch/riscv/include/asm/stacktrace.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/riscv/include/asm/stacktrace.h b/arch/riscv/include/asm/stacktrace.h
index f7e8ef2418b9..b1495a7e06ce 100644
--- a/arch/riscv/include/asm/stacktrace.h
+++ b/arch/riscv/include/asm/stacktrace.h
@@ -21,4 +21,9 @@ static inline bool on_thread_stack(void)
return !(((unsigned long)(current->stack) ^ current_stack_pointer) & ~(THREAD_SIZE - 1));
}
+
+#ifdef CONFIG_VMAP_STACK
+DECLARE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack);
+#endif /* CONFIG_VMAP_STACK */
+
#endif /* _ASM_RISCV_STACKTRACE_H */