HomeSort by: relevance | last modified time | path
    Searched defs:ipi_id (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
subr_ipi.c 157 ipi_unregister(u_int ipi_id)
161 KASSERT(ipi_id != IPI_SYNCH_ID);
162 KASSERT(ipi_id < IPI_MAXREG);
166 KASSERT(ipi_intrs[ipi_id].func != NULL);
167 ipi_intrs[ipi_id].func = NULL;
182 ipi_mark_pending(u_int ipi_id, struct cpu_info *ci)
184 const u_int i = ipi_id >> IPI_BITW_SHIFT;
185 const uint32_t bitm = 1U << (ipi_id & IPI_BITW_MASK);
187 KASSERT(ipi_id < IPI_MAXREG);
203 ipi_trigger(u_int ipi_id, struct cpu_info *ci
306 const u_int ipi_id = (i << IPI_BITW_SHIFT) | --bit; local in function:ipi_cpu_handler
    [all...]
kern_softint.c 360 u_int ipi_id = 0; local in function:softint_establish
384 if ((ipi_id = ipi_register(softint_schedule, sih)) == 0) {
399 sh->sh_ipi_id = ipi_id;
407 sh->sh_ipi_id = ipi_id;

Completed in 12 milliseconds