lkml.org 
[lkml]   [2015]   [Apr]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] x86/fpu: always restore_xinit_state() when !use_eager_cpu()
On 04/26, Bobby Powers wrote:
>
> Oleg's commit f893959b ("x86/fpu: Don't abuse drop_init_fpu() in
> flush_thread()") removed drop_init_fpu() usage from flush_thread.
> This seems to break things for me - the Go 1.4 test suite fails all
> over the place with floating point comparision errors (offending
> commit found through bisection).

Ah, sorry. And thanks a lot!

I simply can't understand what I was thinking about. Of course, we
need to reset FPU state unconditionally, exec should start with the
new FPU state.

ACK, but could you please fix the subject and update the changelog?

The subject says "when !use_eager_cpu()", but we need to do this
if use_eager_cpu() == T.

> Note: used_math() looks at current, and should be switch to
> tsk_used_math(tsk), but even with this I see test suite breakage.

Agreed, tsk_used_math(tsk) looks more consistent even if used_math()
is technically correct. You can change this as well.

Thanks!

> arch/x86/kernel/process.c | 12 +++++++-----
> 1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
> index 8213da6..c820baf5 100644
> --- a/arch/x86/kernel/process.c
> +++ b/arch/x86/kernel/process.c
> @@ -156,11 +156,13 @@ void flush_thread(void)
> /* FPU state will be reallocated lazily at the first use. */
> drop_fpu(tsk);
> free_thread_xstate(tsk);
> - } else if (!used_math()) {
> - /* kthread execs. TODO: cleanup this horror. */
> - if (WARN_ON(init_fpu(tsk)))
> - force_sig(SIGKILL, tsk);
> - user_fpu_begin();
> + } else {
> + if (!used_math()) {
> + /* kthread execs. TODO: cleanup this horror. */
> + if (WARN_ON(init_fpu(tsk)))
> + force_sig(SIGKILL, tsk);
> + user_fpu_begin();
> + }
> restore_init_xstate();
> }
> }
> --
> 2.3.6
>



\
 
 \ /
  Last update: 2015-04-27 17:21    [W:0.087 / U:2.824 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site