Release 4.11 arch/x86/xen/smp.h
#ifndef _XEN_SMP_H
#ifdef CONFIG_SMP
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);
extern int xen_smp_intr_init(unsigned int cpu);
extern void xen_smp_intr_free(unsigned int cpu);
#else /* CONFIG_SMP */
static inline int xen_smp_intr_init(unsigned int cpu)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Boris Ostrovsky | 14 | 100.00% | 1 | 100.00% |
Total | 14 | 100.00% | 1 | 100.00% |
static inline void xen_smp_intr_free(unsigned int cpu) {}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Boris Ostrovsky | 10 | 100.00% | 1 | 100.00% |
Total | 10 | 100.00% | 1 | 100.00% |
#endif /* CONFIG_SMP */
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Guthro | 57 | 52.78% | 1 | 50.00% |
Boris Ostrovsky | 51 | 47.22% | 1 | 50.00% |
Total | 108 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.