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; local
126 iv_p = (type == SOFTINT_MT) ?
129 if (iv_p->iv_pil == 0) {
130 iv_p->iv_pil = 1; /* Default PIL */
137 return (iv_p);
156 iv_p = kmem_cache_alloc(intr_vec_cache, KM_SLEEP);
157 bzero(iv_p, sizeof (intr_vec_t));
158 iv_p->iv_flags = IV_CACHE_ALLOC;
160 return (iv_p);
167 iv_free(intr_vec_t *iv_p) argument
187 intr_vec_t *iv_p, *new_iv_p; local
231 intr_vec_t *iv_p, *prev_iv_p; local
268 intr_vec_t *iv_p; local
296 intr_vec_t *iv_p = (intr_vec_t *)softint_id; local
331 intr_vec_t *iv_p = (intr_vec_t *)softint_id; local
348 intr_vec_t *iv_p = (intr_vec_t *)softint_id; local
[all...]
/illumos-gate/usr/src/uts/sun4/sys/
H A Divintr.h105 #define IV_GET_PIL_NEXT(iv_p, cpu_id) \
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) \
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.s176 * iv_p, cpu, regs: may be out-registers
181 #define SERVE_INTR_PRE(iv_p, cpu, ls1, ls2, os1, os2, os3, regs) \
182 mov iv_p, ls1; \
183 mov iv_p, ls2; \
184 SERVE_INTR_TRACE(iv_p, os1, os2, os3, regs);
338 intr_thread(struct regs *regs, uint64_t iv_p, uint_t pil)
923 current_thread(struct regs *regs, uint64_t iv_p, uint_t pil)
1532 kdi_setsoftint(uint64_t iv_p)
1616 setsoftint_tl1(uint64_t iv_p, uint64_t dummy)

Completed in 48 milliseconds