diff options
Diffstat (limited to 'include/asm-mips/a.out.h')
-rw-r--r-- | include/asm-mips/a.out.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-mips/a.out.h b/include/asm-mips/a.out.h index ef33c3f1348..bf55a5b34be 100644 --- a/include/asm-mips/a.out.h +++ b/include/asm-mips/a.out.h @@ -38,8 +38,10 @@ struct exec #define STACK_TOP TASK_SIZE #endif #ifdef CONFIG_64BIT -#define STACK_TOP (current->thread.mflags & MF_32BIT_ADDR ? TASK_SIZE32 : TASK_SIZE) +#define STACK_TOP \ + (test_thread_flag(TIF_32BIT_ADDR) ? TASK_SIZE32 : TASK_SIZE) #endif +#define STACK_TOP_MAX TASK_SIZE #endif |