Symbol: intr_ipi_setup
sys/arm/arm/mp_machdep.c
301
intr_ipi_setup(IPI_RENDEZVOUS, "rendezvous", ipi_rendezvous, NULL);
sys/arm/arm/mp_machdep.c
302
intr_ipi_setup(IPI_AST, "ast", ipi_ast, NULL);
sys/arm/arm/mp_machdep.c
303
intr_ipi_setup(IPI_STOP, "stop", ipi_stop, NULL);
sys/arm/arm/mp_machdep.c
304
intr_ipi_setup(IPI_PREEMPT, "preempt", ipi_preempt, NULL);
sys/arm/arm/mp_machdep.c
305
intr_ipi_setup(IPI_HARDCLOCK, "hardclock", ipi_hardclock, NULL);
sys/arm64/arm64/mp_machdep.c
192
intr_ipi_setup(IPI_AST, "ast", ipi_ast, NULL);
sys/arm64/arm64/mp_machdep.c
193
intr_ipi_setup(IPI_PREEMPT, "preempt", ipi_preempt, NULL);
sys/arm64/arm64/mp_machdep.c
194
intr_ipi_setup(IPI_RENDEZVOUS, "rendezvous", ipi_rendezvous, NULL);
sys/arm64/arm64/mp_machdep.c
195
intr_ipi_setup(IPI_STOP, "stop", ipi_stop, NULL);
sys/arm64/arm64/mp_machdep.c
196
intr_ipi_setup(IPI_STOP_HARD, "stop hard", ipi_stop, NULL);
sys/arm64/arm64/mp_machdep.c
197
intr_ipi_setup(IPI_HARDCLOCK, "hardclock", ipi_hardclock, NULL);
sys/arm64/arm64/mp_machdep.c
198
intr_ipi_setup(IPI_OFF, "off", ipi_off, NULL);
sys/riscv/riscv/mp_machdep.c
123
intr_ipi_setup(IPI_AST, "ast", ipi_ast, NULL);
sys/riscv/riscv/mp_machdep.c
124
intr_ipi_setup(IPI_PREEMPT, "preempt", ipi_preempt, NULL);
sys/riscv/riscv/mp_machdep.c
125
intr_ipi_setup(IPI_RENDEZVOUS, "rendezvous", ipi_rendezvous, NULL);
sys/riscv/riscv/mp_machdep.c
126
intr_ipi_setup(IPI_STOP, "stop", ipi_stop, NULL);
sys/riscv/riscv/mp_machdep.c
127
intr_ipi_setup(IPI_STOP_HARD, "stop hard", ipi_stop, NULL);
sys/riscv/riscv/mp_machdep.c
128
intr_ipi_setup(IPI_HARDCLOCK, "hardclock", ipi_hardclock, NULL);
sys/sys/intr.h
163
void intr_ipi_setup(u_int ipi, const char *name, intr_ipi_handler_t *hand,