lkml.org 
[lkml]   [2018]   [Jun]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: Lazy FPU restoration / moving kernel_fpu_end() to context switch
From
Date
On 06/15/2018 11:31 AM, Andy Lutomirski wrote:
> for (thing) {
> kernel_fpu_begin();
> encrypt(thing);
> kernel_fpu_end();
> }

Don't forget that the processor has optimizations for this, too. The
"modified optimization" will notice that between:

kernel_fpu_end(); -> XRSTOR
and
kernel_fpu_start(); -> XSAVE(S|OPT)

the processor has not modified the states. It'll skip doing any writes
of the state. Doing what Andy is describing is still way better than
letting the processor do it, but you should just know up front that this
may not be as much of a win as you would expect.

\
 
 \ /
  Last update: 2018-06-15 20:51    [W:0.118 / U:0.612 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site