Searched refs:softints (Results 1 - 9 of 9) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/arch/powerpc/powerpc/
H A Dsoftint_machdep.c70 u_int softints; local
77 while ((softints = (ci->ci_data.cpu_softints & softint_mask)) != 0) {
79 if (softints & (1 << IPL_SOFTSERIAL)) {
84 if (softints & (1 << IPL_SOFTNET)) {
89 if (softints & (1 << IPL_SOFTBIO)) {
94 if (softints & (1 << IPL_SOFTCLOCK)) {
100 KASSERT(softints == (1 << IPL_NONE));
/netbsd-6-1-5-RELEASE/sys/arch/mips/mips/
H A Dmips_softint.c96 * priority softints are always done first.
99 if (softints & SOFTINT_##level## _MASK) { \
133 u_int softints = ci->ci_softints & mask; local
134 if (softints == 0)
H A Dlocore_mips1.S526 and a0, s1, MIPS_SOFT_INT_MASK # were softints enabled?
529 mfc0 v0, MIPS_COP_0_CAUSE # grab the pending softints
531 and a0, v0 # are softints pending
542 INT_L t0, CPU_INFO_SOFTINTS(s2) # get pending softints
814 * This an interrupt from user mode so both softints must be enabled.
818 and a0, s1, MIPS_SOFT_INT_MASK # get softints enabled bits
823 mfc0 a0, MIPS_COP_0_CAUSE # grab the pending softints
825 and a0, MIPS_SOFT_INT_MASK # are there softints pending
H A DmipsX_subr.S966 and a0, s1, MIPS_SOFT_INT_MASK # were softints enabled?
969 mfc0 v0, MIPS_COP_0_CAUSE # grab the pending softints
970 and a0, v0 # are softints pending
981 INT_L t0, CPU_INFO_SOFTINTS(s2) # get pending softints
1330 * This an interrupt from user mode so both softints must be enabled.
1334 and a0, s1, MIPS_SOFT_INT_MASK # get softints enabled bits
1339 mfc0 a0, MIPS_COP_0_CAUSE # grab the pending softints
1340 and a0, MIPS_SOFT_INT_MASK # are there softints pending
/netbsd-6-1-5-RELEASE/sys/arch/arm/arm32/
H A Darm32_machdep.c455 u_int softints = ci->ci_softints & softiplmask; local
456 KASSERT((softints != 0) == ((ci->ci_softints >> opl) != 0));
457 KASSERT(opl == IPL_NONE || (softints & (1 << (opl - IPL_SOFTCLOCK))) == 0);
458 if (softints == 0) {
474 panic("dosoftints wtf (softints=%u?, ipl=%d)", softints, opl);
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dkern_softint.c726 u_int softints, oflag; local
748 while ((softints = ci->ci_data.cpu_softints) != 0) {
749 if ((softints & (1 << SOFTINT_SERIAL)) != 0) {
754 if ((softints & (1 << SOFTINT_NET)) != 0) {
759 if ((softints & (1 << SOFTINT_BIO)) != 0) {
764 if ((softints & (1 << SOFTINT_CLOCK)) != 0) {
820 * Dispatch the interrupt. If softints are being timed, charge
/netbsd-6-1-5-RELEASE/sys/arch/hpcarm/hpcarm/
H A Dintr.c117 u_int softints; local
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/booke/
H A De500_intr.c510 const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << ipl); local
511 if (__predict_false(softints != 0)) {
944 * Before exiting, deal with any softints that need to be dealt with.
946 const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << old_ipl); local
947 if (__predict_false(softints != 0)) {
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/pic/
H A Dintr.c514 const u_int softints = ci->ci_data.cpu_softints & local
520 if (__predict_false(softints != 0)) {

Completed in 207 milliseconds