]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
openrisc: fix trap for debugger breakpoint signalling
authorStafford Horne <shorne@gmail.com>
Sat, 17 Oct 2020 21:37:01 +0000 (06:37 +0900)
committerStafford Horne <shorne@gmail.com>
Wed, 11 Nov 2020 21:32:20 +0000 (06:32 +0900)
I have been working on getting native Linux GDB support working for the
OpenRISC port.  The trap signal handler here was wrong in a few ways.
During trap handling address (from the EEAR register) is not set by the
CPU, so it is not correct to use here.  We want to use trap as a
break-point so use TRAP_BRKPT.  Adding 4 to the pc was incorrect and
causing GDB to think the breakpoint was not hit.

Fixing these allows GDB to work now.

Signed-off-by: Stafford Horne <shorne@gmail.com>
arch/openrisc/kernel/traps.c

index 206e5325e61bc7f938969efb72fc6bf72e5a264f..4d61333c262325bd652d0b120ff40050527c0ac3 100644 (file)
@@ -238,9 +238,7 @@ void __init trap_init(void)
 
 asmlinkage void do_trap(struct pt_regs *regs, unsigned long address)
 {
-       force_sig_fault(SIGTRAP, TRAP_TRACE, (void __user *)address);
-
-       regs->pc += 4;
+       force_sig_fault(SIGTRAP, TRAP_BRKPT, (void __user *)regs->pc);
 }
 
 asmlinkage void do_unaligned_access(struct pt_regs *regs, unsigned long address)