1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
26 lines
517 B
C
26 lines
517 B
C
#ifndef __ASM_MACH_IPI_H
|
|
#define __ASM_MACH_IPI_H
|
|
|
|
void send_IPI_mask_sequence(cpumask_t mask, int vector);
|
|
|
|
static inline void send_IPI_mask(cpumask_t mask, int vector)
|
|
{
|
|
send_IPI_mask_sequence(mask, vector);
|
|
}
|
|
|
|
static inline void send_IPI_allbutself(int vector)
|
|
{
|
|
cpumask_t mask = cpu_online_map;
|
|
cpu_clear(smp_processor_id(), mask);
|
|
|
|
if (!cpus_empty(mask))
|
|
send_IPI_mask(mask, vector);
|
|
}
|
|
|
|
static inline void send_IPI_all(int vector)
|
|
{
|
|
send_IPI_mask(cpu_online_map, vector);
|
|
}
|
|
|
|
#endif /* __ASM_MACH_IPI_H */
|