https://github.com/torvalds/linux
Raw File
Tip revision: f114040e3ea6e07372334ade75d1ee0775c355e1 authored by Linus Torvalds on 20 October 2014, 01:08:38 UTC
Linux 3.18-rc1
Tip revision: f114040
smp.h
#ifndef _XEN_SMP_H

extern void xen_send_IPI_mask(const struct cpumask *mask,
			      int vector);
extern void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
				int vector);
extern void xen_send_IPI_allbutself(int vector);
extern void xen_send_IPI_all(int vector);
extern void xen_send_IPI_self(int vector);

#ifdef CONFIG_XEN_PVH
extern void xen_pvh_early_cpu_init(int cpu, bool entry);
#else
static inline void xen_pvh_early_cpu_init(int cpu, bool entry)
{
}
#endif

#endif
back to top