/src/sys/arch/arm/broadcom/ |
bcm2835_intr.c | 927 void *ihs[_BCM2836_NCPUS]; local in function:bcm2836mp_icu_fdt_establish 930 ihs[cpuid] = intr_establish_xname(cpuirq, ipl, 932 if (!ihs[cpuid]) { 934 intr_disestablish(ihs[undo]); 946 return ihs[0];
|
/src/sys/dev/pci/ixgbe/ |
ixgbe_osdep.h | 181 void *ihs[IXG_MAX_NINTR]; member in struct:ixgbe_osdep
|
ixv.c | 1601 sc->osdep.ihs[i]); 1608 if (sc->osdep.ihs[rid] != NULL) { 1610 sc->osdep.ihs[rid]); 1611 sc->osdep.ihs[rid] = NULL; 3398 que->res = sc->osdep.ihs[i] = pci_intr_establish_xname(pc, 3416 error = interrupt_distribute(sc->osdep.ihs[i], affinity, NULL); 3465 sc->osdep.ihs[vector] = pci_intr_establish_xname(pc, 3467 if (sc->osdep.ihs[vector] == NULL) { 3475 error = interrupt_distribute(sc->osdep.ihs[vector], affinity,
|
ixgbe.c | 5372 pci_intr_disestablish(sc->osdep.pc, sc->osdep.ihs[i]); 5373 sc->osdep.ihs[i] = NULL; 5383 if (sc->osdep.ihs[rid] != NULL) { 5384 pci_intr_disestablish(sc->osdep.pc, sc->osdep.ihs[rid]); 5385 sc->osdep.ihs[rid] = NULL; 6778 sc->osdep.ihs[0] = pci_intr_establish_xname(sc->osdep.pc, 6782 if (sc->osdep.ihs[0] == NULL) { 6808 if (sc->osdep.ihs[0] == NULL) { 6918 que->res = sc->osdep.ihs[i] = pci_intr_establish_xname(pc, 6954 error = interrupt_distribute(sc->osdep.ihs[i], affinity [all...] |
/src/sys/dev/pci/ |
if_vmx.c | 907 void **ihs; local in function:vmxnet3_setup_msix_interrupts 916 ihs = sc->vmx_ihs; 920 for (i = 0; i < use_queues; i++, intr++, ihs++, intr_idx++) { 928 *ihs = pci_intr_establish_xname(pc, *intr, IPL_NET, 930 if (*ihs == NULL) { 939 error = interrupt_distribute(*ihs, affinity, NULL); 971 *ihs = pci_intr_establish_xname(pc, *intr, IPL_NET, 973 if (*ihs == NULL) { 990 void **ihs; local in function:vmxnet3_setup_msi_interrupt 998 ihs = sc->vmx_ihs 1034 void **ihs; local in function:vmxnet3_setup_legacy_interrupt [all...] |
/src/sys/dev/pci/igc/ |
if_igc.c | 1194 void **ihs; local in function:igc_setup_msix 1200 for (iq = 0, intrs = sc->sc_intrs, ihs = sc->sc_ihs; 1201 iq < sc->sc_nqueues; iq++, intrs++, ihs++) { 1210 *ihs = pci_intr_establish_xname(pc, *intrs, IPL_NET, 1212 if (*ihs == NULL) { 1223 error = interrupt_distribute(*ihs, affinity, NULL); 1256 *ihs = pci_intr_establish_xname(pc, *intrs, IPL_NET, 1258 if (*ihs == NULL) { 1276 void **ihs = sc->sc_ihs; local in function:igc_setup_msi 1286 *ihs = pci_intr_establish_xname(pc, *intr, IPL_NET 1326 void **ihs = sc->sc_ihs; local in function:igc_setup_intx [all...] |