Home
last modified time | relevance | path

Searched refs:iv_p (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/sun4/io/
H A Divintr.c115 intr_vec_t *iv_p; in iv_alloc() local
137 return (iv_p); in iv_alloc()
160 return (iv_p); in iv_alloc()
174 bzero(iv_p, (iv_p->iv_flags & IV_SOFTINT_MT) ? in iv_free()
201 iv_p; iv_p = iv_p->iv_vec_next) { in add_ivintr()
239 iv_p; prev_iv_p = iv_p, iv_p = iv_p->iv_vec_next) in rem_ivintr()
243 if (iv_p == NULL) { in rem_ivintr()
257 iv_free(iv_p); in rem_ivintr()
268 intr_vec_t *iv_p; in add_softintr() local
318 iv_free(iv_p); in rem_softintr()
[all …]
/illumos-gate/usr/src/uts/sun4/sys/
H A Divintr.h105 #define IV_GET_PIL_NEXT(iv_p, cpu_id) \ argument
106 (((iv_p->iv_flags & IV_SOFTINT_MT) && (cpu_id != 0)) ? \
107 ((intr_vecx_t *)iv_p)->iv_pil_xnext[cpu_id - 1] : iv_p->iv_pil_next)
108 #define IV_SET_PIL_NEXT(iv_p, cpu_id, next) \ argument
109 (((iv_p->iv_flags & IV_SOFTINT_MT) && (cpu_id != 0)) ? \
110 (((intr_vecx_t *)iv_p)->iv_pil_xnext[cpu_id - 1] = next) : \
111 (iv_p->iv_pil_next = next))
/illumos-gate/usr/src/uts/sun4/ml/
H A Dinterrupt.S164 #define SERVE_INTR_PRE(iv_p, cpu, ls1, ls2, os1, os2, os3, regs) \ argument
165 mov iv_p, ls1; \
166 mov iv_p, ls2; \
167 SERVE_INTR_TRACE(iv_p, os1, os2, os3, regs);