aboutsummaryrefslogtreecommitdiffstats
path: root/arch/riscv/include/asm
diff options
context:
space:
mode:
authorConor Dooley <conor.dooley@microchip.com>2022-08-14 15:12:38 +0100
committerPalmer Dabbelt <palmer@rivosinc.com>2022-08-18 14:42:58 -0700
commitd951b20b9def73dcc39a5379831525d0d2a537e9 (patch)
tree20490ac6b9f863707c1c496f366b0992d1261741 /arch/riscv/include/asm
parentriscv: signal: fix missing prototype warning (diff)
downloadlinux-dev-d951b20b9def73dcc39a5379831525d0d2a537e9.tar.xz
linux-dev-d951b20b9def73dcc39a5379831525d0d2a537e9.zip
riscv: traps: add missing prototype
Sparse complains: arch/riscv/kernel/traps.c:213:6: warning: symbol 'shadow_stack' was not declared. Should it be static? The variable is used in entry.S, so declare shadow_stack there alongside SHADOW_OVERFLOW_STACK_SIZE. Fixes: 31da94c25aea ("riscv: add VMAP_STACK overflow detection") Signed-off-by: Conor Dooley <conor.dooley@microchip.com> Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20220814141237.493457-5-mail@conchuod.ie Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'arch/riscv/include/asm')
-rw-r--r--arch/riscv/include/asm/thread_info.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/riscv/include/asm/thread_info.h b/arch/riscv/include/asm/thread_info.h
index 78933ac04995..67322f878e0d 100644
--- a/arch/riscv/include/asm/thread_info.h
+++ b/arch/riscv/include/asm/thread_info.h
@@ -42,6 +42,8 @@
#ifndef __ASSEMBLY__
+extern long shadow_stack[SHADOW_OVERFLOW_STACK_SIZE / sizeof(long)];
+
#include <asm/processor.h>
#include <asm/csr.h>