diff options
Diffstat (limited to 'arch/mips/kernel/ptrace32.c')
-rw-r--r-- | arch/mips/kernel/ptrace32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/ptrace32.c b/arch/mips/kernel/ptrace32.c index 456ec438728c..0c82b25d8c6d 100644 --- a/arch/mips/kernel/ptrace32.c +++ b/arch/mips/kernel/ptrace32.c | |||
@@ -375,7 +375,7 @@ asmlinkage int sys32_ptrace(int request, int pid, int addr, int data) | |||
375 | break; | 375 | break; |
376 | 376 | ||
377 | case PTRACE_GET_THREAD_AREA: | 377 | case PTRACE_GET_THREAD_AREA: |
378 | ret = put_user(child->thread_info->tp_value, | 378 | ret = put_user(task_thread_info(child)->tp_value, |
379 | (unsigned int __user *) (unsigned long) data); | 379 | (unsigned int __user *) (unsigned long) data); |
380 | break; | 380 | break; |
381 | 381 | ||
@@ -389,7 +389,7 @@ asmlinkage int sys32_ptrace(int request, int pid, int addr, int data) | |||
389 | break; | 389 | break; |
390 | 390 | ||
391 | case PTRACE_GET_THREAD_AREA_3264: | 391 | case PTRACE_GET_THREAD_AREA_3264: |
392 | ret = put_user(child->thread_info->tp_value, | 392 | ret = put_user(task_thread_info(child)->tp_value, |
393 | (unsigned long __user *) (unsigned long) data); | 393 | (unsigned long __user *) (unsigned long) data); |
394 | break; | 394 | break; |
395 | 395 | ||