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

  /src/sys/dev/pci/
if_eqos_pci.c 62 void *sc_ihs[EQOS_PCI_MAX_INTR]; member in struct:eqos_pci_softc
187 psc->sc_ihs[0] = pci_intr_establish_xname(pc, psc->sc_intrs[0],
virtio_pci.c 111 void **sc_ihs; member in struct:virtio_pci_softc
987 psc->sc_ihs[idx] = pci_intr_establish_xname(pc, psc->sc_ihp[idx],
989 if (psc->sc_ihs[idx] == NULL) {
1009 psc->sc_ihs[n] = pci_intr_establish_xname(pc,
1012 if (psc->sc_ihs[n] == NULL) {
1026 psc->sc_ihs[idx] = pci_intr_establish_xname(pc,
1029 if (psc->sc_ihs[idx] == NULL) {
1056 r = interrupt_distribute(psc->sc_ihs[n], affinity,
1082 if (psc->sc_ihs[idx] != NULL)
1083 pci_intr_disestablish(psc->sc_pa.pa_pc, psc->sc_ihs[idx])
    [all...]
if_enavar.h 360 void *sc_ihs[ENA_MAX_MSIX_VEC(ENA_MAX_NUM_IO_QUEUES)]; member in struct:ena_adapter
if_iavf.c 360 void **sc_ihs; member in struct:iavf_softc
1788 sc->sc_ihs = kmem_zalloc(sizeof(sc->sc_ihs[0]) * num, KM_NOSLEEP);
1789 if (sc->sc_ihs == NULL) {
1803 sc->sc_ihs[vector] = pci_intr_establish_xname(pa->pa_pc,
1805 if (sc->sc_ihs[vector] == NULL) {
1822 sc->sc_ihs[vector] = pci_intr_establish_xname(pa->pa_pc,
1825 if (sc->sc_ihs[vector] == NULL) {
1833 error = interrupt_distribute(sc->sc_ihs[vector],
1855 error = interrupt_distribute(sc->sc_ihs[vector], affinity, NULL)
    [all...]
if_wm.c 547 void *sc_ihs[WM_MAX_NINTR]; /* member in struct:wm_softc
549 * - legacy and msi use sc_ihs[0] only
550 * - msix use sc_ihs[0] to sc_ihs[nintrs-1]
554 * msix use sc_intrs[0] to sc_ihs[nintrs-1]
3707 if (sc->sc_ihs[i] != NULL) {
3708 pci_intr_disestablish(sc->sc_pc, sc->sc_ihs[i]);
3709 sc->sc_ihs[i] = NULL;
6189 pci_intr_disestablish(sc->sc_pc, sc->sc_ihs[wmq->wmq_intr_idx]);
6190 sc->sc_ihs[wmq->wmq_intr_idx] = NULL
    [all...]
if_ixl.c 610 void **sc_ihs; member in struct:ixl_softc
5765 sc->sc_ihs[0] = pci_intr_establish_xname(pc, *intr, IPL_NET, ixl_intr,
5768 if (sc->sc_ihs[0] == NULL) {
5798 sc->sc_ihs[vector] = pci_intr_establish_xname(pc,
5801 if (sc->sc_ihs[vector] == NULL) {
5814 r = interrupt_distribute(sc->sc_ihs[vector], affinity, NULL);
5830 sc->sc_ihs[vector] = pci_intr_establish_xname(pc,
5834 if (sc->sc_ihs[vector] == NULL) {
5845 r = interrupt_distribute(sc->sc_ihs[vector], affinity, NULL);
5859 pci_intr_disestablish(pc, sc->sc_ihs[i])
    [all...]
if_aq.c 1326 void *sc_ihs[AQ_NINTR_MAX]; member in struct:aq_softc
2039 if (sc->sc_ihs[i] != NULL) {
2040 pci_intr_disestablish(sc->sc_pc, sc->sc_ihs[i]);
2041 sc->sc_ihs[i] = NULL;
2132 sc->sc_ihs[intno] = vih;
2202 if (sc->sc_ihs[i] != NULL) {
2203 pci_intr_disestablish(sc->sc_pc, sc->sc_ihs[i]);
2204 sc->sc_ihs[i] = NULL;
  /src/sys/dev/pci/igc/
if_igc.h 332 void *sc_ihs[IGC_MAX_INTRS]; member in struct:igc_softc

Completed in 473 milliseconds