diff options
author | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2014-10-31 11:49:32 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2014-11-10 11:16:40 +0100 |
commit | 54279552bd260532d90e7a59fbc931924bbb0f7b (patch) | |
tree | f62846d03d74c2571742ba070dcfc9664748078b /arch/x86/include | |
parent | e6023367d779060fddc9a52d1f474085b2b36298 (diff) | |
download | linux-54279552bd260532d90e7a59fbc931924bbb0f7b.tar.gz linux-54279552bd260532d90e7a59fbc931924bbb0f7b.tar.bz2 linux-54279552bd260532d90e7a59fbc931924bbb0f7b.zip |
x86/core, x86/xen/smp: Use 'die_complete' completion when taking CPU down
Commit 2ed53c0d6cc9 ("x86/smpboot: Speed up suspend/resume by
avoiding 100ms sleep for CPU offline during S3") introduced
completions to CPU offlining process. These completions are not
initialized on Xen kernels causing a panic in
play_dead_common().
Move handling of die_complete into common routines to make them
available to Xen guests.
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: David Vrabel <david.vrabel@citrix.com>
Cc: tianyu.lan@intel.com
Cc: konrad.wilk@oracle.com
Cc: xen-devel@lists.xenproject.org
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Link: http://lkml.kernel.org/r/1414770572-7950-1-git-send-email-boris.ostrovsky@oracle.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/smp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index 8cd27e08e23c..8cd1cc3bc835 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h @@ -150,6 +150,7 @@ static inline void arch_send_call_function_ipi_mask(const struct cpumask *mask) } void cpu_disable_common(void); +void cpu_die_common(unsigned int cpu); void native_smp_prepare_boot_cpu(void); void native_smp_prepare_cpus(unsigned int max_cpus); void native_smp_cpus_done(unsigned int max_cpus); |