Skip to content

Commit 8779e05

Browse files
committed
parisc: Fix ptrace check on syscall return
The TIF_XXX flags are stored in the flags field in the thread_info struct (TI_FLAGS), not in the flags field of the task_struct structure (TASK_FLAGS). It seems this bug didn't generate any important side-effects, otherwise it wouldn't have went unnoticed for 12 years (since v2.6.32). Signed-off-by: Helge Deller <[email protected]> Fixes: ecd3d4b ("parisc: stop using task->ptrace for {single,block}step flags") Cc: Kyle McMartin <[email protected]> Cc: [email protected]
1 parent 9cc2fa4 commit 8779e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/parisc/kernel/entry.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,7 @@ syscall_restore:
18341834
LDREG TI_TASK-THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r1
18351835

18361836
/* Are we being ptraced? */
1837-
ldw TASK_FLAGS(%r1),%r19
1837+
LDREG TI_FLAGS-THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r19
18381838
ldi _TIF_SYSCALL_TRACE_MASK,%r2
18391839
and,COND(=) %r19,%r2,%r0
18401840
b,n syscall_restore_rfi

0 commit comments

Comments
 (0)