Lines Matching refs:entries
202 struct msix_entry *entries;
215 * to access the BARs where the MSI-X entries reside.
222 entries = kmalloc_array(op->value, sizeof(*entries), GFP_KERNEL);
223 if (entries == NULL)
227 entries[i].entry = op->msix_entries[i].entry;
228 entries[i].vector = op->msix_entries[i].vector;
231 result = pci_enable_msix_exact(dev, entries, op->value);
234 op->msix_entries[i].entry = entries[i].entry;
235 if (entries[i].vector) {
237 xen_pirq_from_irq(entries[i].vector);
245 kfree(entries);