at v6.19 17 lines 365 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __UM_SMP_INTERNAL_H 3#define __UM_SMP_INTERNAL_H 4 5#if IS_ENABLED(CONFIG_SMP) 6 7void prefill_possible_map(void); 8 9#else /* !CONFIG_SMP */ 10 11static inline void prefill_possible_map(void) { } 12 13#endif /* CONFIG_SMP */ 14 15extern char cpu_irqstacks[NR_CPUS][THREAD_SIZE] __aligned(THREAD_SIZE); 16 17#endif /* __UM_SMP_INTERNAL_H */