From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Jan Beulich <JBeulich@suse.com>,
xen-devel <xen-devel@lists.xenproject.org>
Cc: George Dunlap <George.Dunlap@eu.citrix.com>,
Simon Gaiser <simon@invisiblethingslab.com>,
Juergen Gross <jgross@suse.com>
Subject: Re: [PATCH] x86/XPTI: fix S3 resume (and CPU offlining in general)
Date: Thu, 24 May 2018 14:48:21 +0100 [thread overview]
Message-ID: <4c2574fb-eebb-68d5-8b4d-a60509dd51e6@citrix.com> (raw)
In-Reply-To: <5B06C0F902000078001C5925@prv1-mh.provo.novell.com>
On 24/05/18 14:41, Jan Beulich wrote:
> In commit d1d6fc97d6 ("x86/xpti: really hide almost all of Xen image")
> I've failed to remember the fact that multiple CPUs share a stub
> mapping page. Therefore it is wrong to unconditionally zap the mapping
> when bringing down a CPU; it may only be unmapped when no other online
> CPU uses that same page.
>
> Reported-by: Simon Gaiser <simon@invisiblethingslab.com>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
>
> --- a/xen/arch/x86/smpboot.c
> +++ b/xen/arch/x86/smpboot.c
> @@ -876,7 +876,21 @@ static void cleanup_cpu_root_pgt(unsigne
>
> free_xen_pagetable(rpt);
>
> - /* Also zap the stub mapping for this CPU. */
> + /*
> + * Also zap the stub mapping for this CPU, if no other online one uses
> + * the same page.
> + */
> + if ( stub_linear )
> + {
> + unsigned int other;
> +
> + for_each_online_cpu(other)
Look over the code, it seems that with spaces is the more common style,
but it is admittedly fairly mixed.
Either way (as that's trivial to fix), Acked-by: Andrew Cooper
<andrew.cooper3@citrix.com>
> + if ( !((per_cpu(stubs.addr, other) ^ stub_linear) >> PAGE_SHIFT) )
> + {
> + stub_linear = 0;
> + break;
> + }
> + }
> if ( stub_linear )
> {
> l3_pgentry_t *l3t = l4e_to_l3e(common_pgt);
>
>
>
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2018-05-24 13:48 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-24 13:41 [PATCH] x86/XPTI: fix S3 resume (and CPU offlining in general) Jan Beulich
2018-05-24 13:48 ` Andrew Cooper [this message]
2018-05-24 14:05 ` Jan Beulich
2018-05-24 14:00 ` Simon Gaiser
2018-05-24 14:08 ` Jan Beulich
2018-05-24 14:14 ` Simon Gaiser
2018-05-24 14:18 ` Andrew Cooper
2018-05-24 14:22 ` Jan Beulich
2018-05-24 14:24 ` Andrew Cooper
2018-05-24 14:31 ` Jan Beulich
2018-05-24 14:35 ` Simon Gaiser
2018-05-24 14:53 ` Andrew Cooper
2018-05-24 15:10 ` George Dunlap
2018-05-24 15:16 ` Simon Gaiser
2018-05-24 14:28 ` Jan Beulich
2018-05-24 15:10 ` Simon Gaiser
2018-05-24 15:31 ` Jan Beulich
2018-05-24 15:46 ` Jan Beulich
2018-05-24 16:12 ` Simon Gaiser
[not found] <5B06C0F902000078001C5925@suse.com>
2018-05-28 4:26 ` Juergen Gross
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=4c2574fb-eebb-68d5-8b4d-a60509dd51e6@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=George.Dunlap@eu.citrix.com \
--cc=JBeulich@suse.com \
--cc=jgross@suse.com \
--cc=simon@invisiblethingslab.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).