Home
last modified time | relevance | path

Searched refs:msix_alloc (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/x86/include/
H A Dintr_machdep.h162 int msix_alloc(device_t dev, int *irq);
/freebsd/sys/dev/pci/
H A Dpci.c1798 if (msix->msix_alloc > 0) { in pci_resume_msix()
1845 if (cfg->msi.msi_alloc != 0 || cfg->msix.msix_alloc != 0) in pci_alloc_msix_method()
1964 cfg->msix.msix_alloc = actual; in pci_alloc_msix_method()
2029 if (vectors[i] > msix->msix_alloc) in pci_remap_msix_method()
2037 used = mallocarray(msix->msix_alloc, sizeof(*used), M_DEVBUF, M_WAITOK | in pci_remap_msix_method()
2042 for (i = 0; i < msix->msix_alloc - 1; i++) in pci_remap_msix_method()
2087 j = msix->msix_alloc - 1; in pci_remap_msix_method()
2102 msix->msix_alloc = j + 1; in pci_remap_msix_method()
2141 if (msix->msix_alloc == 0) in pci_release_msix()
2171 for (i = 0; i < msix->msix_alloc; i++) in pci_release_msix()
[all …]
H A Dpcivar.h116 u_int msix_alloc; /* Number of allocated vectors. */ member
/freebsd/sys/x86/x86/
H A Dnexus.c589 return (msix_alloc(dev, irq)); in nexus_alloc_msix()
H A Dmsi.c669 msix_alloc(device_t dev, int *irq) in msix_alloc() function