Lines Matching refs:msix_vectors
232 struct msix_entry *msix_vectors; member
2342 status = pci_enable_msix_range(pdev, mgp->msix_vectors, in myri10ge_request_irq()
2367 status = request_irq(mgp->msix_vectors[i].vector, in myri10ge_request_irq()
2375 free_irq(mgp->msix_vectors[i].vector, in myri10ge_request_irq()
2402 free_irq(mgp->msix_vectors[i].vector, &mgp->ss[i]); in myri10ge_free_irq()
3911 mgp->msix_vectors = kcalloc(mgp->num_slices, sizeof(*mgp->msix_vectors), in myri10ge_probe_slices()
3913 if (mgp->msix_vectors == NULL) in myri10ge_probe_slices()
3916 mgp->msix_vectors[i].entry = i; in myri10ge_probe_slices()
3924 mgp->msix_vectors, in myri10ge_probe_slices()
3942 if (mgp->msix_vectors != NULL) { in myri10ge_probe_slices()
3943 kfree(mgp->msix_vectors); in myri10ge_probe_slices()
3944 mgp->msix_vectors = NULL; in myri10ge_probe_slices()
4209 kfree(mgp->msix_vectors); in myri10ge_remove()