Home
last modified time | relevance | path

Searched refs:FIRST_SOFTINT (Results 1 – 5 of 5) sorted by relevance

/dragonfly/sys/sys/
H A Dinterrupt.h68 #define FIRST_SOFTINT MAX_HARDINTS macro
78 #define SWI_TTY (FIRST_SOFTINT + 0)
79 #define SWI_UNUSED01 (FIRST_SOFTINT + 1)
80 #define SWI_CAMNET (FIRST_SOFTINT + 2)
82 #define SWI_CAMBIO (FIRST_SOFTINT + 3)
83 #define SWI_VM (FIRST_SOFTINT + 4)
84 #define SWI_TQ (FIRST_SOFTINT + 5)
85 #define SWI_UNUSED02 (FIRST_SOFTINT + 6)
90 #define SWI_TTY_PENDING (1 << (SWI_TTY - FIRST_SOFTINT))
95 #define SWI_VM_PENDING (1 << (SWI_VM - FIRST_SOFTINT))
[all …]
/dragonfly/sys/kern/
H A Dkern_intr.c232 if (intr < FIRST_SOFTINT || intr >= MAX_INTS) in register_swi()
244 if (intr < FIRST_SOFTINT || intr >= MAX_INTS) in register_swi_mp()
332 if (intr >= FIRST_SOFTINT) in register_int()
387 if (intr < FIRST_SOFTINT) { in register_int()
392 if (intr >= FIRST_SOFTINT) in register_int()
393 swi_info_ary[intr - FIRST_SOFTINT] = info; in register_int()
470 if (intr >= FIRST_SOFTINT) in unregister_int()
471 swi_info_ary[intr - FIRST_SOFTINT] = NULL; in unregister_int()
609 KKASSERT(intr >= FIRST_SOFTINT && intr < MAX_INTS); in sched_ithd_soft()
611 info = swi_info_ary[intr - FIRST_SOFTINT]; in sched_ithd_soft()
[all …]
/dragonfly/sys/platform/pc64/x86_64/
H A Dipl.s277 addl $FIRST_SOFTINT,%ecx /* actual intr number */
433 addl $FIRST_SOFTINT,%ecx /* actual intr number */
H A Dgenassym.c199 ASSYM(FIRST_SOFTINT, FIRST_SOFTINT);
/dragonfly/sys/platform/vkernel64/platform/
H A Dmachintr.c141 irq += FIRST_SOFTINT; in splz()