public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 07/10] x86/xsaves: Fix init_fpstate.header.xcomp_bv
@ 2016-02-22 18:59 Yu-cheng Yu
  2016-02-22 19:55 ` Dave Hansen
  0 siblings, 1 reply; 3+ messages in thread
From: Yu-cheng Yu @ 2016-02-22 18:59 UTC (permalink / raw)
  To: x86, H. Peter Anvin, Thomas Gleixner, Ingo Molnar, linux-kernel
  Cc: Dave Hansen, Andy Lutomirski, Borislav Petkov,
	Sai Praneeth Prakhya, Ravi V. Shankar, Fenghua Yu, Yu-cheng Yu

In setup_init_fpu_buf(), we use XRSTOR/XRSTORS with xfeatures (xstate_bv)
of 0x0 to effectively set all xstate components to init values. We then
execute XSAVE/XSAVES on the same buffer to save back init values.

This actually does not apply to XSAVES as XSAVES uses optimization. After
init, all components are in INIT and not MODIFIED state and will not be
saved. There is no need of setting xcomp_bv except for bit 63 to indicate
a compacted format.

Currently, init_fpstate is used in two ways:

(1) With copy_kernel_to_xregs(): because header.xfeatures is zero, the
    content is not actually read;

(2) With memcpy(): to sanitize a standard-format xsave area; the buffer is
    setup as expected.

Signed-off-by: Yu-cheng Yu <yu-cheng.yu@intel.com>
---
 arch/x86/kernel/fpu/xstate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/kernel/fpu/xstate.c b/arch/x86/kernel/fpu/xstate.c
index 13829e1..4087261 100644
--- a/arch/x86/kernel/fpu/xstate.c
+++ b/arch/x86/kernel/fpu/xstate.c
@@ -371,10 +371,10 @@ static void __init setup_init_fpu_buf(void)
 	print_xstate_features();
 
 	if (cpu_has_xsaves)
-		init_fpstate.xsave.header.xcomp_bv = (u64)1 << 63 | xfeatures_mask;
+		init_fpstate.xsave.header.xcomp_bv = (u64)1 << 63;
 
 	/*
-	 * Init all the features state with header_bv being 0x0
+	 * Init all the features state with header.xfeatures being 0x0
 	 */
 	copy_kernel_to_xregs_booting(&init_fpstate.xsave);
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 07/10] x86/xsaves: Fix init_fpstate.header.xcomp_bv
  2016-02-22 18:59 [PATCH 07/10] x86/xsaves: Fix init_fpstate.header.xcomp_bv Yu-cheng Yu
@ 2016-02-22 19:55 ` Dave Hansen
  2016-02-22 20:42   ` Yu-cheng Yu
  0 siblings, 1 reply; 3+ messages in thread
From: Dave Hansen @ 2016-02-22 19:55 UTC (permalink / raw)
  To: Yu-cheng Yu, x86, H. Peter Anvin, Thomas Gleixner, Ingo Molnar,
	linux-kernel
  Cc: Andy Lutomirski, Borislav Petkov, Sai Praneeth Prakhya,
	Ravi V. Shankar, Fenghua Yu

On 02/22/2016 10:59 AM, Yu-cheng Yu wrote:
> This actually does not apply to XSAVES as XSAVES uses optimization. After
> init, all components are in INIT and not MODIFIED state and will not be
> saved. There is no need of setting xcomp_bv except for bit 63 to indicate
> a compacted format.

I look at it this way: xcomp_bv tells you the format of the buffer
xstate_bv tells you which components of the buffer are valid (not in
init state).

As it stands, every kernel xcomp_bv value should be identical, since the
kernel buffer is always in the same state and XSAVES is always called
with the same Requested Feature BitMap (RFBM).

While I don't think this patch _hurts_ anything, I think it might be a
bit confusing.  Wouldn't it just be easier if *EVERY* xcomp_bv value was
the same?

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 07/10] x86/xsaves: Fix init_fpstate.header.xcomp_bv
  2016-02-22 19:55 ` Dave Hansen
@ 2016-02-22 20:42   ` Yu-cheng Yu
  0 siblings, 0 replies; 3+ messages in thread
From: Yu-cheng Yu @ 2016-02-22 20:42 UTC (permalink / raw)
  To: Dave Hansen
  Cc: x86, H. Peter Anvin, Thomas Gleixner, Ingo Molnar, linux-kernel,
	Andy Lutomirski, Borislav Petkov, Sai Praneeth Prakhya,
	Ravi V. Shankar, Fenghua Yu

On Mon, Feb 22, 2016 at 11:55:50AM -0800, Dave Hansen wrote:
> On 02/22/2016 10:59 AM, Yu-cheng Yu wrote:
> > This actually does not apply to XSAVES as XSAVES uses optimization. After
> > init, all components are in INIT and not MODIFIED state and will not be
> > saved. There is no need of setting xcomp_bv except for bit 63 to indicate
> > a compacted format.
> 
> I look at it this way: xcomp_bv tells you the format of the buffer
> xstate_bv tells you which components of the buffer are valid (not in
> init state).
> 
> As it stands, every kernel xcomp_bv value should be identical, since the
> kernel buffer is always in the same state and XSAVES is always called
> with the same Requested Feature BitMap (RFBM).
> 
> While I don't think this patch _hurts_ anything, I think it might be a
> bit confusing.  Wouldn't it just be easier if *EVERY* xcomp_bv value was
> the same?

Agree. This patch can be skipped if it turns out not needed.

--Yu-cheng
 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-22 20:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-22 18:59 [PATCH 07/10] x86/xsaves: Fix init_fpstate.header.xcomp_bv Yu-cheng Yu
2016-02-22 19:55 ` Dave Hansen
2016-02-22 20:42   ` Yu-cheng Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox