diff options
Diffstat (limited to 'include/asm-mips/system.h')
| -rw-r--r-- | include/asm-mips/system.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/asm-mips/system.h b/include/asm-mips/system.h index 8d0b1cd4a45e..357251f42518 100644 --- a/include/asm-mips/system.h +++ b/include/asm-mips/system.h | |||
| @@ -46,10 +46,12 @@ struct task_struct; | |||
| 46 | 46 | ||
| 47 | #define __mips_mt_fpaff_switch_to(prev) \ | 47 | #define __mips_mt_fpaff_switch_to(prev) \ |
| 48 | do { \ | 48 | do { \ |
| 49 | struct thread_info *__prev_ti = task_thread_info(prev); \ | ||
| 50 | \ | ||
| 49 | if (cpu_has_fpu && \ | 51 | if (cpu_has_fpu && \ |
| 50 | (prev->thread.mflags & MF_FPUBOUND) && \ | 52 | test_ti_thread_flag(__prev_ti, TIF_FPUBOUND) && \ |
| 51 | (!(KSTK_STATUS(prev) & ST0_CU1))) { \ | 53 | (!(KSTK_STATUS(prev) & ST0_CU1))) { \ |
| 52 | prev->thread.mflags &= ~MF_FPUBOUND; \ | 54 | clear_ti_thread_flag(__prev_ti, TIF_FPUBOUND); \ |
| 53 | prev->cpus_allowed = prev->thread.user_cpus_allowed; \ | 55 | prev->cpus_allowed = prev->thread.user_cpus_allowed; \ |
| 54 | } \ | 56 | } \ |
| 55 | next->thread.emulated_fp = 0; \ | 57 | next->thread.emulated_fp = 0; \ |
