OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:softints
(Results
1 - 7
of
7
) sorted by relevancy
/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
134
if (
softints
== 0)
/src/sys/arch/powerpc/powerpc/
softint_machdep.c
69
u_int
softints
;
local
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/riscv/riscv/
softint_machdep.c
92
u_int
softints
= ci->ci_softints & softiplmask;
local
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
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
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
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
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
1070
if (__predict_false(
softints
!= 0)) {
Completed in 25 milliseconds
Indexes created Mon Feb 23 08:20:23 UTC 2026