xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86/XPTI: fix S3 resume (and CPU offlining in general)
@ 2018-05-24 13:41 Jan Beulich
  2018-05-24 13:48 ` Andrew Cooper
  2018-05-24 14:00 ` Simon Gaiser
  0 siblings, 2 replies; 20+ messages in thread
From: Jan Beulich @ 2018-05-24 13:41 UTC (permalink / raw)
  To: xen-devel; +Cc: George Dunlap, Andrew Cooper, Simon Gaiser, Juergen Gross

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)
+            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

^ permalink raw reply	[flat|nested] 20+ messages in thread
[parent not found: <5B06C0F902000078001C5925@suse.com>]

end of thread, other threads:[~2018-05-28 15:53 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
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

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).