Searched refs:ipi_bitmap (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/sys/mips/mips/
H A Dmp_machdep.c116 u_int cpu, ipi, ipi_bitmap; local
123 ipi_bitmap = atomic_readandclear_int(PCPU_PTR(pending_ipis));
124 if (ipi_bitmap == 0)
127 CTR1(KTR_SMP, "smp_handle_ipi(), ipi_bitmap=%x", ipi_bitmap);
129 while ((bit = ffs(ipi_bitmap))) {
132 ipi_bitmap &= ~ipi;
/freebsd-10.1-release/sys/i386/i386/
H A Dmp_machdep.c1364 u_int ipi_bitmap; local
1371 ipi_bitmap = atomic_readandclear_int(&cpu_ipi_pending[cpu]);
1372 if (ipi_bitmap & (1 << IPI_PREEMPT)) {
1378 if (ipi_bitmap & (1 << IPI_AST)) {
1384 if (ipi_bitmap & (1 << IPI_HARDCLOCK)) {
/freebsd-10.1-release/sys/i386/xen/
H A Dmp_machdep.c402 u_int ipi_bitmap; local
404 ipi_bitmap = atomic_readandclear_int(&cpu_ipi_pending[cpu]);
406 if (ipi_bitmap & (1 << IPI_PREEMPT)) {
413 if (ipi_bitmap & (1 << IPI_AST)) {
/freebsd-10.1-release/sys/amd64/amd64/
H A Dmp_machdep.c1299 u_int ipi_bitmap; local
1306 ipi_bitmap = atomic_readandclear_int(&cpu_ipi_pending[cpu]);
1307 if (ipi_bitmap & (1 << IPI_PREEMPT)) {
1313 if (ipi_bitmap & (1 << IPI_AST)) {
1319 if (ipi_bitmap & (1 << IPI_HARDCLOCK)) {

Completed in 40 milliseconds