IPL_SOFTMASK
const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << old_ipl);
const u_int softints = ci->ci_data.cpu_softints & (IPL_SOFTMASK << ipl);
(IPL_SOFTMASK << pcpl);
KASSERT((ci->ci_data.cpu_softints & ~IPL_SOFTMASK) == 0);
if (ci->ci_data.cpu_softints & (IPL_SOFTMASK << ncpl))
KASSERT(*machdep_p & IPL_SOFTMASK);
const u_int softint_mask = (IPL_SOFTMASK << old_ipl) & IPL_SOFTMASK;