/src/sys/arch/riscv/riscv/ |
softint_machdep.c | 87 const int opl = ci->ci_cpl; local in function:softint_deliver 88 const uint32_t softiplmask = SOFTIPLMASK(opl); 93 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0)); 94 KASSERT(opl == IPL_NONE || (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0); 96 splx(opl); 111 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
|
/src/sys/arch/playstation2/playstation2/ |
interrupt.c | 190 int s, opl; local in function:splraise 193 opl = md_imask; 194 md_imask = opl | npl; 198 return (opl);
|
/src/sys/arch/aarch64/aarch64/ |
cpu_machdep.c | 118 const int opl = ci->ci_cpl; local in function:dosoftints 119 const uint32_t softiplmask = SOFTIPLMASK(opl); 125 KASSERT(s == opl); 128 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0)); 129 KASSERT(opl == IPL_NONE || 130 (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0); 154 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
|
/src/sys/arch/arm/arm32/ |
arm32_machdep.c | 689 const int opl = ci->ci_cpl; local in function:dosoftints 690 const uint32_t softiplmask = SOFTIPLMASK(opl); 694 KASSERT(s == opl); 697 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0)); 698 KASSERT(opl == IPL_NONE || (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0); 714 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
|