smp-internal.h 365 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __UM_SMP_INTERNAL_H
  3. #define __UM_SMP_INTERNAL_H
  4. #if IS_ENABLED(CONFIG_SMP)
  5. void prefill_possible_map(void);
  6. #else /* !CONFIG_SMP */
  7. static inline void prefill_possible_map(void) { }
  8. #endif /* CONFIG_SMP */
  9. extern char cpu_irqstacks[NR_CPUS][THREAD_SIZE] __aligned(THREAD_SIZE);
  10. #endif /* __UM_SMP_INTERNAL_H */