lkml.org 
[lkml]   [2015]   [Apr]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH Bugfix v2 2/4] x86/xsaves: Define and use user_xstate_size for xstate size in signal context
On 04/21/2015 09:51 PM, Fenghua Yu wrote:
> + /*
> + * Copy rest of xstates in compact format to user.
> + */
> + for (i = 2; i < xstate_features; i++) {
> + if (test_bit(i, (unsigned long *)&pcntxt_mask)) {
> + int user_offset, kernel_offset;
> + int size;
> +
> + user_offset = xstate_offsets[i];
> + kernel_offset = xstate_comp_offsets[i];
> + size = xstate_sizes[i];
> +
> + if (__copy_to_user(buf_fx + user_offset,
> + xsave + kernel_offset, size))
> + return -1;
> + }
> + }

Is this checking the right bitmap?

The 'xsaves' documentation says: "If RFBM[i] = 1, XSTATE_BV[i] is set to
the value of XINUSE[i]". Where "XINUSE denotes the state-component
bitmap corresponding to the init optimization".

So shouldn't this be checking xsave->xsave_hdr.xstate_bv instead of
pcntxt_mask? The will be equal unless the "init optimization" is in play.


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