| /src/sys/arch/arm/broadcom/ |
| bcm2835_intr.c | 927 void *ihs[_BCM2836_NCPUS]; local 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/ |
| if_vmx.c | 907 void **ihs; local 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 998 ihs = sc->vmx_ihs 1034 void **ihs; local [all...] |
| /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 | 5370 if (sc->osdep.ihs[i] != NULL) { 5371 pci_intr_disestablish(sc->osdep.pc, sc->osdep.ihs[i]); 5372 sc->osdep.ihs[i] = NULL; 5382 if (sc->osdep.ihs[rid] != NULL) { 5383 pci_intr_disestablish(sc->osdep.pc, sc->osdep.ihs[rid]); 5384 sc->osdep.ihs[rid] = NULL; 6777 sc->osdep.ihs[0] = pci_intr_establish_xname(sc->osdep.pc, 6781 if (sc->osdep.ihs[0] == NULL) { 6807 if (sc->osdep.ihs[0] == NULL) { 6917 que->res = sc->osdep.ihs[i] = pci_intr_establish_xname(pc [all...] |
| /src/sys/dev/pci/igc/ |
| if_igc.c | 1196 void **ihs; local 1202 for (iq = 0, intrs = sc->sc_intrs, ihs = sc->sc_ihs; 1203 iq < sc->sc_nqueues; iq++, intrs++, ihs++) { 1212 *ihs = pci_intr_establish_xname(pc, *intrs, IPL_NET, 1214 if (*ihs == NULL) { 1225 error = interrupt_distribute(*ihs, affinity, NULL); 1258 *ihs = pci_intr_establish_xname(pc, *intrs, IPL_NET, 1260 if (*ihs == NULL) { 1278 void **ihs = sc->sc_ihs; local 1288 *ihs = pci_intr_establish_xname(pc, *intr, IPL_NET 1328 void **ihs = sc->sc_ihs; local [all...] |