Explicitly initialize the fpu when SSE is enabled since this no
longer happens as a side effect of calling npxsave. Reviewed by: peter, bde
This commit is contained in:
parent
268aeb1ed3
commit
4c8f0aced5
@ -575,6 +575,11 @@ npxinit(control)
|
||||
savecrit = critical_enter();
|
||||
npxsave(&dummy);
|
||||
stop_emulating();
|
||||
#ifdef CPU_ENABLE_SSE
|
||||
/* XXX npxsave() doesn't actually initialize the fpu in the SSE case. */
|
||||
if (cpu_fxsr)
|
||||
fninit();
|
||||
#endif
|
||||
fldcw(&control);
|
||||
if (PCPU_GET(curpcb) != NULL)
|
||||
fpusave(&PCPU_GET(curpcb)->pcb_save);
|
||||
|
@ -575,6 +575,11 @@ npxinit(control)
|
||||
savecrit = critical_enter();
|
||||
npxsave(&dummy);
|
||||
stop_emulating();
|
||||
#ifdef CPU_ENABLE_SSE
|
||||
/* XXX npxsave() doesn't actually initialize the fpu in the SSE case. */
|
||||
if (cpu_fxsr)
|
||||
fninit();
|
||||
#endif
|
||||
fldcw(&control);
|
||||
if (PCPU_GET(curpcb) != NULL)
|
||||
fpusave(&PCPU_GET(curpcb)->pcb_save);
|
||||
|
@ -575,6 +575,11 @@ npxinit(control)
|
||||
savecrit = critical_enter();
|
||||
npxsave(&dummy);
|
||||
stop_emulating();
|
||||
#ifdef CPU_ENABLE_SSE
|
||||
/* XXX npxsave() doesn't actually initialize the fpu in the SSE case. */
|
||||
if (cpu_fxsr)
|
||||
fninit();
|
||||
#endif
|
||||
fldcw(&control);
|
||||
if (PCPU_GET(curpcb) != NULL)
|
||||
fpusave(&PCPU_GET(curpcb)->pcb_save);
|
||||
|
Loading…
Reference in New Issue
Block a user