powerpc: Update compat_arch_ptrace
Update compat_arch_ptrace to follow recent changes in PTRACE_GET_DEBUGREG and the addition of PPC_PTRACE_{GETHWDBGINFO|{SET|DEL}HWDEBUG}. The latter three can be forwarded to arch_ptrace unchanged. Signed-off-by: Andreas Schwab <schwab@linux-m68k.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
4dfbf290ae
commit
bb2c458b8b
@ -280,7 +280,11 @@ long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
|
|||||||
/* We only support one DABR and no IABRS at the moment */
|
/* We only support one DABR and no IABRS at the moment */
|
||||||
if (addr > 0)
|
if (addr > 0)
|
||||||
break;
|
break;
|
||||||
|
#ifdef CONFIG_PPC_ADV_DEBUG_REGS
|
||||||
|
ret = put_user(child->thread.dac1, (u32 __user *)data);
|
||||||
|
#else
|
||||||
ret = put_user(child->thread.dabr, (u32 __user *)data);
|
ret = put_user(child->thread.dabr, (u32 __user *)data);
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -312,6 +316,9 @@ long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
|
|||||||
case PTRACE_SET_DEBUGREG:
|
case PTRACE_SET_DEBUGREG:
|
||||||
case PTRACE_SYSCALL:
|
case PTRACE_SYSCALL:
|
||||||
case PTRACE_CONT:
|
case PTRACE_CONT:
|
||||||
|
case PPC_PTRACE_GETHWDBGINFO:
|
||||||
|
case PPC_PTRACE_SETHWDEBUG:
|
||||||
|
case PPC_PTRACE_DELHWDEBUG:
|
||||||
ret = arch_ptrace(child, request, addr, data);
|
ret = arch_ptrace(child, request, addr, data);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user