.. | .. |
---|
42 | 42 | * inline to try to keep the overhead down. If we have been forced to run on |
---|
43 | 43 | * a "CPU" with an FPU because of a previous high level of FP computation, |
---|
44 | 44 | * but did not actually use the FPU during the most recent time-slice (CU1 |
---|
45 | | - * isn't set), we undo the restriction on cpus_allowed. |
---|
| 45 | + * isn't set), we undo the restriction on cpus_mask. |
---|
46 | 46 | * |
---|
47 | 47 | * We're not calling set_cpus_allowed() here, because we have no need to |
---|
48 | 48 | * force prompt migration - we're already switching the current CPU to a |
---|
.. | .. |
---|
57 | 57 | test_ti_thread_flag(__prev_ti, TIF_FPUBOUND) && \ |
---|
58 | 58 | (!(KSTK_STATUS(prev) & ST0_CU1))) { \ |
---|
59 | 59 | clear_ti_thread_flag(__prev_ti, TIF_FPUBOUND); \ |
---|
60 | | - prev->cpus_allowed = prev->thread.user_cpus_allowed; \ |
---|
| 60 | + prev->cpus_mask = prev->thread.user_cpus_allowed; \ |
---|
61 | 61 | } \ |
---|
62 | 62 | next->thread.emulated_fp = 0; \ |
---|
63 | 63 | } while(0) |
---|