/src/sys/arch/powerpc/powerpc/ |
softint_machdep.c | 69 u_int softints; local in function:powerpc_softint 76 while ((softints = (ci->ci_data.cpu_softints & softint_mask)) != 0) { 78 if (softints & (1 << IPL_SOFTSERIAL)) { 83 if (softints & (1 << IPL_SOFTNET)) { 88 if (softints & (1 << IPL_SOFTBIO)) { 93 if (softints & (1 << IPL_SOFTCLOCK)) { 99 KASSERT(softints == (1 << IPL_NONE));
|
/src/sys/arch/mips/mips/ |
mips_softint.c | 96 * priority softints are always done first. 99 if (softints & SOFTINT_##level## _MASK) { \ 133 u_int softints = ci->ci_softints & mask; local in function:softint_process 134 if (softints == 0)
|
/src/sys/arch/riscv/riscv/ |
softint_machdep.c | 92 u_int softints = ci->ci_softints & softiplmask; local in function:softint_deliver 93 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0)); 94 KASSERT(opl == IPL_NONE || (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0); 95 if (softints == 0) { 111 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
|
/src/sys/arch/aarch64/aarch64/ |
cpu_machdep.c | 127 u_int softints = ci->ci_softints & softiplmask; local in function:dosoftints 128 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0)); 130 (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0); 131 if (softints == 0) { 154 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
|
/src/sys/arch/arm/arm32/ |
arm32_machdep.c | 696 u_int softints = ci->ci_softints & softiplmask; local in function:dosoftints 697 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0)); 698 KASSERT(opl == IPL_NONE || (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0); 699 if (softints == 0) { 714 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
|
/src/sys/arch/powerpc/pic/ |
intr.c | 557 const u_int softints = ci->ci_data.cpu_softints & local in function:pic_do_pending_int 563 if (__predict_false(softints != 0)) {
|
/src/sys/arch/powerpc/booke/ |
e500_intr.c | 571 const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << ipl); local in function:e500_splx 572 if (__predict_false(softints != 0)) { 1067 * Before exiting, deal with any softints that need to be dealt with. 1069 const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << old_ipl); local in function:e500_extintr 1070 if (__predict_false(softints != 0)) {
|