HomeSort by: relevance | last modified time | path
    Searched defs:ii_handler (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/kern/
subr_interrupt.c 127 struct intrids_handler *ii_handler; local in function:interrupt_avert_intr
134 ii_handler = interrupt_construct_intrids(cpuset);
135 if (ii_handler == NULL) {
139 nids = ii_handler->iih_nids;
153 ids = ii_handler->iih_intrids;
161 interrupt_destruct_intrids(ii_handler);
186 struct intrids_handler *ii_handler; local in function:interrupt_intrio_list_size
194 ii_handler = interrupt_construct_intrids(kcpuset_running);
195 if (ii_handler == NULL)
197 *ilsize += interrupt_intrio_list_line_size() * ii_handler->iih_nids
213 struct intrids_handler *ii_handler; local in function:interrupt_intrio_list
    [all...]
  /src/sys/arch/xen/xen/
evtchn.c 1242 struct intrids_handler *ii_handler; local in function:interrupt_construct_intrids
1266 ii_handler = kmem_zalloc(sizeof(int) + sizeof(intrid_t) * count,
1268 if (ii_handler == NULL)
1270 ii_handler->iih_nids = count;
1272 return ii_handler;
1274 ids = ii_handler->iih_intrids;
1289 return ii_handler;
  /src/sys/arch/powerpc/pic/
intr.c 862 struct intrids_handler *ii_handler; local in function:interrupt_construct_intrids
877 ii_handler = kmem_zalloc(sizeof(int) + sizeof(intrid_t) * count,
879 if (ii_handler == NULL)
881 ii_handler->iih_nids = count;
883 return ii_handler;
885 ids = ii_handler->iih_intrids;
899 return ii_handler;
903 interrupt_destruct_intrids(struct intrids_handler *ii_handler)
907 if (ii_handler == NULL)
910 iih_size = sizeof(int) + sizeof(intrid_t) * ii_handler->iih_nids
    [all...]
  /src/sys/arch/x86/x86/
intr.c 2325 struct intrids_handler *ii_handler; local in function:interrupt_construct_intrids
2344 ii_handler = kmem_zalloc(sizeof(int) + sizeof(intrid_t) * count,
2346 if (ii_handler == NULL)
2348 ii_handler->iih_nids = count;
2350 return ii_handler;
2352 ids = ii_handler->iih_intrids;
2370 return ii_handler;
2377 interrupt_destruct_intrids(struct intrids_handler *ii_handler)
2381 if (ii_handler == NULL)
2384 iih_size = sizeof(int) + sizeof(intrid_t) * ii_handler->iih_nids
    [all...]
  /src/sys/arch/powerpc/booke/
e500_intr.c 1655 struct intrids_handler *ii_handler; local in function:interrupt_construct_intrids
1671 ii_handler = kmem_zalloc(alloc_size, KM_SLEEP);
1672 ii_handler->iih_nids = n;
1674 return ii_handler;
1676 ids = ii_handler->iih_intrids;
1691 return ii_handler;
1695 interrupt_destruct_intrids(struct intrids_handler *ii_handler)
1699 if (ii_handler == NULL)
1702 iih_size = sizeof(int) + sizeof(intrid_t) * ii_handler->iih_nids;
1703 kmem_free(ii_handler, iih_size)
    [all...]

Completed in 14 milliseconds