MIPS: compat: Implement is_compat_task() by testing for 32-bit address space.
authorRalf Baechle <ralf@linux-mips.org>
Thu, 8 Nov 2012 22:59:31 +0000 (23:59 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 9 Nov 2012 09:58:29 +0000 (10:58 +0100)
So far is_compat_task() was testing for 32-bit registers if O32 support
was enabled and if O32 support was disabled but N32 enabled it was testing
for 32-bit address space.  So if both O32 and N32 were enabled a N32
task was not considered a compat task, whops.

This still leaves potential cases where O32 and N32 need different treatment
unsolved.  But that's another commit.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/compat.h

index 58277e0e9cd4075e001f79e48fcaaf928dd53064..3c5d1464b7bde4d93f5d4345fbedd31ccda7e47a 100644 (file)
@@ -290,7 +290,7 @@ struct compat_shmid64_ds {
 
 static inline int is_compat_task(void)
 {
-       return test_thread_flag(TIF_32BIT);
+       return test_thread_flag(TIF_32BIT_ADDR);
 }
 
 #endif /* _ASM_COMPAT_H */
This page took 0.02492 seconds and 5 git commands to generate.