From: David Vrabel <david.vrabel@citrix.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
xen-devel@lists.xenproject.org
Subject: Re: [PATCHv3 2/3] x86/fpu: Add a per-domain field to set the width of FIP/FDP
Date: Thu, 25 Feb 2016 11:38:51 +0000 [thread overview]
Message-ID: <56CEE7CB.3040407@citrix.com> (raw)
In-Reply-To: <56CEF27402000078000D61A2@prv-mh.provo.novell.com>
On 25/02/16 11:24, Jan Beulich wrote:
>>>> On 25.02.16 at 11:58, <david.vrabel@citrix.com> wrote:
>> @@ -261,7 +261,15 @@ void xsave(struct vcpu *v, uint64_t mask)
>> "=m" (*ptr), \
>> "a" (lmask), "d" (hmask), "D" (ptr))
>>
>> - if ( word_size <= 0 || !is_pv_32bit_vcpu(v) )
>> + if ( fip_width == 8 )
>> + {
>> + XSAVE("0x48,");
>> + }
>> + else if ( fip_width == 4 )
>> + {
>> + XSAVE("");
>> + }
>> + else
>
> Both conditions would now better also check mask & XSTATE_FP,
> since going these routes (and namely bypassing the FIP check, as
> was done before) is fine when FP state is not being saved.
Is this what you mean?
--- a/xen/arch/x86/xstate.c
+++ b/xen/arch/x86/xstate.c
@@ -261,7 +261,7 @@ void xsave(struct vcpu *v, uint64_t mask)
"=m" (*ptr), \
"a" (lmask), "d" (hmask), "D" (ptr))
- if ( fip_width == 8 )
+ if ( fip_width == 8 || !(mask & XSTATE_FP) )
{
XSAVE("0x48,");
}
David
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-02-25 11:38 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-25 10:58 [PATCHv3 0/3] x86: workaround inability to fully restore FPU state David Vrabel
2016-02-25 10:58 ` [PATCHv3 1/3] x86/fpu: improve check for XSAVE* not writing FIP/FDP fields David Vrabel
2016-02-25 11:32 ` Jan Beulich
2016-02-25 12:18 ` David Vrabel
2016-02-25 12:27 ` Jan Beulich
2016-02-25 12:49 ` David Vrabel
2016-02-25 13:16 ` Andrew Cooper
2016-02-25 14:27 ` Jan Beulich
2016-02-25 15:07 ` Andrew Cooper
2016-02-25 15:09 ` David Vrabel
2016-03-01 6:27 ` Tian, Kevin
2016-03-01 9:31 ` Jan Beulich
2016-02-25 10:58 ` [PATCHv3 2/3] x86/fpu: Add a per-domain field to set the width of FIP/FDP David Vrabel
2016-02-25 11:24 ` Jan Beulich
2016-02-25 11:38 ` David Vrabel [this message]
2016-02-25 11:55 ` Jan Beulich
2016-02-25 10:58 ` [PATCHv3 3/3] x86/hvm: add HVM_PARAM_X87_FIP_WIDTH David Vrabel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56CEE7CB.3040407@citrix.com \
--to=david.vrabel@citrix.com \
--cc=JBeulich@suse.com \
--cc=andrew.cooper3@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.