On 01/30, Dave Hansen wrote:
>
> +void *tsk_get_xsave_field(struct task_struct *tsk, int xsave_field)
> +{
> +     union thread_xstate *xstate;
> +
> +     unlazy_fpu(tsk);

ack, but to remind this depends on 2/3 I sent.

> +     xstate = tsk->thread.fpu.state;
> +     /*
> +      * This might be unallocated if the FPU
> +      * was never in use.
> +      */
> +     if (!xstate)
> +             return NULL;

This is cosmetic, unlazy_fpu() is safe if !xstate, __thread_has_fpu()
is not possible in this case.

But perhaps

        if (!used_math())
                return NULL;

will look better.

Oleg.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to