mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-25 11:09:59 +07:00
[MIPS] Fix kgdb exception handler from user mode.
Fix a calculation of saved vector address in trap_low.
(damage done by lmo f4c72cc737
)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
1c0c1ae4f3
commit
867a521b4c
@ -54,9 +54,11 @@
|
|||||||
*/
|
*/
|
||||||
mfc0 k0, CP0_CAUSE
|
mfc0 k0, CP0_CAUSE
|
||||||
andi k0, k0, 0x7c
|
andi k0, k0, 0x7c
|
||||||
add k1, k1, k0
|
#ifdef CONFIG_64BIT
|
||||||
PTR_L k0, saved_vectors(k1)
|
dsll k0, k0, 1
|
||||||
jr k0
|
#endif
|
||||||
|
PTR_L k1, saved_vectors(k0)
|
||||||
|
jr k1
|
||||||
nop
|
nop
|
||||||
1:
|
1:
|
||||||
move k0, sp
|
move k0, sp
|
||||||
|
Loading…
Reference in New Issue
Block a user