5.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Rouven Czerwinski rouven@czerwinskis.de
[ Upstream commit beaf5ae15a13d835a01e30c282c8325ce0f1eb7e ]
Since commit 79b1feba5455 ("RISC-V: Setup exception vector early") exception vectors are setup early and the handle_exception symbol from the asm files is no longer referenced in traps.c. Remove it.
Signed-off-by: Rouven Czerwinski rouven@czerwinskis.de Signed-off-by: Palmer Dabbelt palmerdabbelt@google.com Stable-dep-of: 6a97f4118ac0 ("riscv: Fix sleeping in invalid context in die()") Signed-off-by: Sasha Levin sashal@kernel.org --- arch/riscv/kernel/traps.c | 2 -- 1 file changed, 2 deletions(-)
diff --git a/arch/riscv/kernel/traps.c b/arch/riscv/kernel/traps.c index 030094ac7190..184f7b82c5ae 100644 --- a/arch/riscv/kernel/traps.c +++ b/arch/riscv/kernel/traps.c @@ -23,8 +23,6 @@
int show_unhandled_signals = 1;
-extern asmlinkage void handle_exception(void); - static DEFINE_SPINLOCK(die_lock);
void die(struct pt_regs *regs, const char *str)