diff options
author | Ankur Arora <ankur.a.arora@oracle.com> | 2017-06-03 02:06:02 +0200 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2017-06-13 16:10:58 +0200 |
commit | ae039001054b34c4a624539b32a8b6ff3403aaf9 (patch) | |
tree | 593737839f22262a0c46b39d86987d741f1df8d7 /arch/x86/xen/smp.h | |
parent | xen/vcpu: Handle xen_vcpu_setup() failure in hotplug (diff) | |
download | linux-ae039001054b34c4a624539b32a8b6ff3403aaf9.tar.xz linux-ae039001054b34c4a624539b32a8b6ff3403aaf9.zip |
xen/vcpu: Handle xen_vcpu_setup() failure at boot
On PVH, PVHVM, at failure in the VCPUOP_register_vcpu_info hypercall
we limit the number of cpus to to MAX_VIRT_CPUS. However, if this
failure had occurred for a cpu beyond MAX_VIRT_CPUS, we continue
to function with > MAX_VIRT_CPUS.
This leads to problems at the next save/restore cycle when there
are > MAX_VIRT_CPUS threads going into stop_machine() but coming
back up there's valid state for only the first MAX_VIRT_CPUS.
This patch pulls the excess CPUs down via cpu_down().
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Ankur Arora <ankur.a.arora@oracle.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch/x86/xen/smp.h')
-rw-r--r-- | arch/x86/xen/smp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/xen/smp.h b/arch/x86/xen/smp.h index 8ebb6acca64a..87d3c76cba37 100644 --- a/arch/x86/xen/smp.h +++ b/arch/x86/xen/smp.h @@ -14,6 +14,8 @@ extern void xen_smp_intr_free(unsigned int cpu); int xen_smp_intr_init_pv(unsigned int cpu); void xen_smp_intr_free_pv(unsigned int cpu); +void xen_smp_cpus_done(unsigned int max_cpus); + void xen_smp_send_reschedule(int cpu); void xen_smp_send_call_function_ipi(const struct cpumask *mask); void xen_smp_send_call_function_single_ipi(int cpu); |