smp.h 488 B

12345678910111213141516171819
  1. #ifndef _XEN_SMP_H
  2. extern void xen_send_IPI_mask(const struct cpumask *mask,
  3. int vector);
  4. extern void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
  5. int vector);
  6. extern void xen_send_IPI_allbutself(int vector);
  7. extern void xen_send_IPI_all(int vector);
  8. extern void xen_send_IPI_self(int vector);
  9. #ifdef CONFIG_XEN_PVH
  10. extern void xen_pvh_early_cpu_init(int cpu, bool entry);
  11. #else
  12. static inline void xen_pvh_early_cpu_init(int cpu, bool entry)
  13. {
  14. }
  15. #endif
  16. #endif