diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-20 11:59:03 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-01 09:58:14 -0400 |
commit | 64482bd8ef1700e98d96fb6e240c501d68c8371c (patch) | |
tree | 243bf1ad99b4d1b640d5623bdaf37a551a1b276d /arch/parisc/kernel | |
parent | e3b880c6ee55e8858a75e3dcf6c3dda04d5e3605 (diff) | |
download | op-kernel-dev-64482bd8ef1700e98d96fb6e240c501d68c8371c.zip op-kernel-dev-64482bd8ef1700e98d96fb6e240c501d68c8371c.tar.gz |
parisc: decide whether to go to slow path (tracesys) based on thread flags
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/parisc/kernel')
-rw-r--r-- | arch/parisc/kernel/syscall.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/parisc/kernel/syscall.S b/arch/parisc/kernel/syscall.S index 54a9cbf..86742df 100644 --- a/arch/parisc/kernel/syscall.S +++ b/arch/parisc/kernel/syscall.S @@ -180,9 +180,10 @@ linux_gateway_entry: /* Are we being ptraced? */ mfctl %cr30, %r1 - LDREG TI_TASK(%r1),%r1 - ldw TASK_PTRACE(%r1), %r1 - bb,<,n %r1,31,.Ltracesys + LDREG TI_FLAGS(%r1),%r1 + ldi _TIF_SYSCALL_TRACE_MASK, %r19 + and,COND(=) %r1, %r19, %r0 + b,n .Ltracesys /* Note! We cannot use the syscall table that is mapped nearby since the gateway page is mapped execute-only. */ |