diff options
Diffstat (limited to 'arch/s390/kernel/process.c')
-rw-r--r-- | arch/s390/kernel/process.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c index a3acd8e60aff..355f7a30c3f1 100644 --- a/arch/s390/kernel/process.c +++ b/arch/s390/kernel/process.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/elfcore.h> | 32 | #include <linux/elfcore.h> |
33 | #include <linux/kernel_stat.h> | 33 | #include <linux/kernel_stat.h> |
34 | #include <linux/syscalls.h> | 34 | #include <linux/syscalls.h> |
35 | #include <asm/compat.h> | ||
35 | #include <asm/uaccess.h> | 36 | #include <asm/uaccess.h> |
36 | #include <asm/pgtable.h> | 37 | #include <asm/pgtable.h> |
37 | #include <asm/system.h> | 38 | #include <asm/system.h> |
@@ -204,7 +205,7 @@ int copy_thread(unsigned long clone_flags, unsigned long new_stackp, | |||
204 | save_fp_regs(&p->thread.fp_regs); | 205 | save_fp_regs(&p->thread.fp_regs); |
205 | /* Set a new TLS ? */ | 206 | /* Set a new TLS ? */ |
206 | if (clone_flags & CLONE_SETTLS) { | 207 | if (clone_flags & CLONE_SETTLS) { |
207 | if (test_thread_flag(TIF_31BIT)) { | 208 | if (is_compat_task()) { |
208 | p->thread.acrs[0] = (unsigned int) regs->gprs[6]; | 209 | p->thread.acrs[0] = (unsigned int) regs->gprs[6]; |
209 | } else { | 210 | } else { |
210 | p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32); | 211 | p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32); |