/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SMP_H #define __ASM_SMP_H #include <linux/cpumask.h> #define raw_smp_processor_id() (current_thread_info()->cpu) enum ipi_msg_type { IPI_CALL_FUNC, IPI_RESCHEDULE, }; extern void arch_send_call_function_single_ipi(int cpu); extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); asmlinkage void secondary_start_kernel(void); extern void secondary_startup(void); #ifdef CONFIG_HOTPLUG_CPU extern void __cpu_die(unsigned int cpu); extern int __cpu_disable(void); extern void cpu_die(void); #endif extern void smp_init_cpus(void); #endif /* __ASM_SMP_H */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
James Hogan | 93 | 98.94% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 1.06% | 1 | 50.00% |
Total | 94 | 100.00% | 2 | 100.00% |