blob: 963d62a35c824f69400675b51c2f4dc95e947826 [file] [log] [blame]
Ben Guthrof447d562012-04-21 00:11:04 +08001#ifndef _XEN_SMP_H
2
3extern void xen_send_IPI_mask(const struct cpumask *mask,
4 int vector);
5extern void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
6 int vector);
7extern void xen_send_IPI_allbutself(int vector);
Ben Guthrof447d562012-04-21 00:11:04 +08008extern void xen_send_IPI_all(int vector);
9extern void xen_send_IPI_self(int vector);
10
Mukesh Rathora2ef5dc2014-09-10 16:36:06 -070011#ifdef CONFIG_XEN_PVH
12extern void xen_pvh_early_cpu_init(int cpu, bool entry);
13#else
14static inline void xen_pvh_early_cpu_init(int cpu, bool entry)
15{
16}
17#endif
18
Ben Guthrof447d562012-04-21 00:11:04 +080019#endif