Home
last modified time | relevance | path

Searched hist:"812489 ac" (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/arch/openrisc/kernel/
H A Dentry.S812489ac Sat Feb 11 04:14:06 CST 2023 Stafford Horne <shorne@gmail.com> openrisc: Properly store r31 to pt_regs on unhandled exceptions

In commit 91993c8c2ed5 ("openrisc: use shadow registers to save regs on
exception") the unhandled exception path was changed to do an early
store of r30 instead of r31. The entry code was not updated and r31 is
not getting stored to pt_regs.

This patch updates the entry handler to store r31 instead of r30. We
also remove some misleading commented out store r30 and r31
instructrions.

I noticed this while working on adding floating point exception
handling, This issue probably would never impact anything since we kill
the process or Oops right away on unhandled exceptions.

Fixes: 91993c8c2ed5 ("openrisc: use shadow registers to save regs on exception")
Signed-off-by: Stafford Horne <shorne@gmail.com>