/src/sys/dev/pci/ |
ciss_pci.c | 237 int max_type = PCI_INTR_TYPE_INTX; local in function:ciss_pci_attach 246 max_type = PCI_INTR_TYPE_MSIX; 251 if (pci_intr_alloc(pa, &ih, counts, max_type)) {
|
siisata_pci.c | 228 int max_type = PCI_INTR_TYPE_MSIX; local in function:siisata_pci_attach 231 max_type = PCI_INTR_TYPE_INTX; 235 if (pci_intr_alloc(pa, &psc->sc_pihp, counts, max_type) != 0) {
|
virtio_pci.c | 1144 pci_intr_type_t max_type; local in function:virtio_pci_alloc_interrupts 1153 max_type = PCI_INTR_TYPE_INTX; 1164 max_type = PCI_INTR_TYPE_MSIX; 1171 error = pci_intr_alloc(&psc->sc_pa, &psc->sc_ihp, counts, max_type); 1188 max_type = PCI_INTR_TYPE_INTX;
|
if_rge.c | 236 int max_type = PCI_INTR_TYPE_MSIX; local in function:rge_attach 240 if (pci_intr_alloc(pa, &ihp, counts, max_type) != 0) {
|
if_ena.c | 1927 int max_type; local in function:ena_enable_msix 1935 max_type = PCI_INTR_TYPE_MSIX; 1938 max_type) != 0) {
|
if_bge.c | 3631 int max_type = PCI_INTR_TYPE_MSIX; local in function:bge_attach 3635 max_type = PCI_INTR_TYPE_INTX; 3638 if (pci_intr_alloc(pa, &sc->bge_pihp, counts, max_type) != 0) {
|
if_wm.c | 2014 pci_intr_type_t max_type; local in function:wm_attach 2206 max_type = PCI_INTR_TYPE_MSIX; 2215 max_type = PCI_INTR_TYPE_MSI; 2226 max_type = PCI_INTR_TYPE_INTX; 2230 max_type = PCI_INTR_TYPE_MSI; 2235 if (pci_intr_alloc(pa, &sc->sc_intrs, counts, max_type) != 0) { 2247 max_type = PCI_INTR_TYPE_MSI; 2260 max_type = PCI_INTR_TYPE_INTX;
|
if_ixl.c | 5962 pci_intr_type_t max_type, intr_type; local in function:ixl_setup_interrupts 5969 max_type = PCI_INTR_TYPE_MSIX; 5979 error = pci_intr_alloc(pa, &sc->sc_ihp, counts, max_type);
|
/src/sys/dev/pci/ixgbe/ |
ixgbe.c | 6755 pci_intr_type_t intr_type, max_type; local in function:ixgbe_allocate_legacy 6762 max_type = PCI_INTR_TYPE_MSI; 6771 if (pci_intr_alloc(pa, &sc->osdep.intrs, counts, max_type) != 0) { 6790 max_type = PCI_INTR_TYPE_INTX;
|