aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/i387.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/i387.h')
-rw-r--r--arch/x86/include/asm/i387.h35
1 files changed, 23 insertions, 12 deletions
diff --git a/arch/x86/include/asm/i387.h b/arch/x86/include/asm/i387.h
index 74c607b37e87..247904945d3f 100644
--- a/arch/x86/include/asm/i387.h
+++ b/arch/x86/include/asm/i387.h
@@ -32,6 +32,8 @@ extern int init_fpu(struct task_struct *child);
32extern void math_state_restore(void); 32extern void math_state_restore(void);
33extern int dump_fpu(struct pt_regs *, struct user_i387_struct *); 33extern int dump_fpu(struct pt_regs *, struct user_i387_struct *);
34 34
35DECLARE_PER_CPU(struct task_struct *, fpu_owner_task);
36
35extern user_regset_active_fn fpregs_active, xfpregs_active; 37extern user_regset_active_fn fpregs_active, xfpregs_active;
36extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get, 38extern user_regset_get_fn fpregs_get, xfpregs_get, fpregs_soft_get,
37 xstateregs_get; 39 xstateregs_get;
@@ -276,7 +278,7 @@ static inline int restore_fpu_checking(struct task_struct *tsk)
276 "emms\n\t" /* clear stack tags */ 278 "emms\n\t" /* clear stack tags */
277 "fildl %P[addr]", /* set F?P to defined value */ 279 "fildl %P[addr]", /* set F?P to defined value */
278 X86_FEATURE_FXSAVE_LEAK, 280 X86_FEATURE_FXSAVE_LEAK,
279 [addr] "m" (tsk->thread.has_fpu)); 281 [addr] "m" (tsk->thread.fpu.has_fpu));
280 282
281 return fpu_restore_checking(&tsk->thread.fpu); 283 return fpu_restore_checking(&tsk->thread.fpu);
282} 284}
@@ -288,19 +290,21 @@ static inline int restore_fpu_checking(struct task_struct *tsk)
288 */ 290 */
289static inline int __thread_has_fpu(struct task_struct *tsk) 291static inline int __thread_has_fpu(struct task_struct *tsk)
290{ 292{
291 return tsk->thread.has_fpu; 293 return tsk->thread.fpu.has_fpu;
292} 294}
293 295
294/* Must be paired with an 'stts' after! */ 296/* Must be paired with an 'stts' after! */
295static inline void __thread_clear_has_fpu(struct task_struct *tsk) 297static inline void __thread_clear_has_fpu(struct task_struct *tsk)
296{ 298{
297 tsk->thread.has_fpu = 0; 299 tsk->thread.fpu.has_fpu = 0;
300 percpu_write(fpu_owner_task, NULL);
298} 301}
299 302
300/* Must be paired with a 'clts' before! */ 303/* Must be paired with a 'clts' before! */
301static inline void __thread_set_has_fpu(struct task_struct *tsk) 304static inline void __thread_set_has_fpu(struct task_struct *tsk)
302{ 305{
303 tsk->thread.has_fpu = 1; 306 tsk->thread.fpu.has_fpu = 1;
307 percpu_write(fpu_owner_task, tsk);
304} 308}
305 309
306/* 310/*
@@ -345,18 +349,22 @@ typedef struct { int preload; } fpu_switch_t;
345 * We don't do that yet, so "fpu_lazy_restore()" always returns 349 * We don't do that yet, so "fpu_lazy_restore()" always returns
346 * false, but some day.. 350 * false, but some day..
347 */ 351 */
348#define fpu_lazy_restore(tsk) (0) 352static inline int fpu_lazy_restore(struct task_struct *new, unsigned int cpu)
349#define fpu_lazy_state_intact(tsk) do { } while (0) 353{
354 return new == percpu_read_stable(fpu_owner_task) &&
355 cpu == new->thread.fpu.last_cpu;
356}
350 357
351static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new) 358static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct task_struct *new, int cpu)
352{ 359{
353 fpu_switch_t fpu; 360 fpu_switch_t fpu;
354 361
355 fpu.preload = tsk_used_math(new) && new->fpu_counter > 5; 362 fpu.preload = tsk_used_math(new) && new->fpu_counter > 5;
356 if (__thread_has_fpu(old)) { 363 if (__thread_has_fpu(old)) {
357 if (__save_init_fpu(old)) 364 if (!__save_init_fpu(old))
358 fpu_lazy_state_intact(old); 365 cpu = ~0;
359 __thread_clear_has_fpu(old); 366 old->thread.fpu.last_cpu = cpu;
367 old->thread.fpu.has_fpu = 0; /* But leave fpu_owner_task! */
360 368
361 /* Don't change CR0.TS if we just switch! */ 369 /* Don't change CR0.TS if we just switch! */
362 if (fpu.preload) { 370 if (fpu.preload) {
@@ -367,9 +375,10 @@ static inline fpu_switch_t switch_fpu_prepare(struct task_struct *old, struct ta
367 stts(); 375 stts();
368 } else { 376 } else {
369 old->fpu_counter = 0; 377 old->fpu_counter = 0;
378 old->thread.fpu.last_cpu = ~0;
370 if (fpu.preload) { 379 if (fpu.preload) {
371 new->fpu_counter++; 380 new->fpu_counter++;
372 if (fpu_lazy_restore(new)) 381 if (fpu_lazy_restore(new, cpu))
373 fpu.preload = 0; 382 fpu.preload = 0;
374 else 383 else
375 prefetch(new->thread.fpu.state); 384 prefetch(new->thread.fpu.state);
@@ -463,8 +472,10 @@ static inline void kernel_fpu_begin(void)
463 __save_init_fpu(me); 472 __save_init_fpu(me);
464 __thread_clear_has_fpu(me); 473 __thread_clear_has_fpu(me);
465 /* We do 'stts()' in kernel_fpu_end() */ 474 /* We do 'stts()' in kernel_fpu_end() */
466 } else 475 } else {
476 percpu_write(fpu_owner_task, NULL);
467 clts(); 477 clts();
478 }
468} 479}
469 480
470static inline void kernel_fpu_end(void) 481static inline void kernel_fpu_end(void)