diff options
author | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2016-03-17 09:03:25 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2016-03-29 09:34:10 -0400 |
commit | dc6416f1d711eb4c1726e845d653235dcaae12e1 (patch) | |
tree | 5b3c0fcc0868d47790f5dc36d721eabe5e8f70c0 /arch/x86/xen | |
parent | 8041dcc881c928134c546ae85e6e59e65804357c (diff) | |
download | op-kernel-dev-dc6416f1d711eb4c1726e845d653235dcaae12e1.zip op-kernel-dev-dc6416f1d711eb4c1726e845d653235dcaae12e1.tar.gz |
xen/x86: Call cpu_startup_entry(CPUHP_AP_ONLINE_IDLE) from xen_play_dead()
This call has always been missing from xen_play dead() but until
recently this was rather benign. With new cpu hotplug framework
(commit 8df3e07e7f21 ("cpu/hotplug: Let upcoming cpu bring itself fully up").
however this call is required, otherwise a hot-plugged CPU will not
be properly brough up (by never calling cpuhp_online_idle())
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'arch/x86/xen')
-rw-r--r-- | arch/x86/xen/smp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/xen/smp.c b/arch/x86/xen/smp.c index 3c6d17f..719cf29 100644 --- a/arch/x86/xen/smp.c +++ b/arch/x86/xen/smp.c @@ -545,6 +545,8 @@ static void xen_play_dead(void) /* used only with HOTPLUG_CPU */ * data back is to call: */ tick_nohz_idle_enter(); + + cpu_startup_entry(CPUHP_AP_ONLINE_IDLE); } #else /* !CONFIG_HOTPLUG_CPU */ |