Searched refs:total_vecs (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.6/drivers/net/ethernet/broadcom/bnxt/ |
D | bnxt.c | 9119 int i, total_vecs, max, rc = 0, min = 1, ulp_msix; in bnxt_init_msix() local 9122 total_vecs = bnxt_get_num_msix(bp); in bnxt_init_msix() 9124 if (total_vecs > max) in bnxt_init_msix() 9125 total_vecs = max; in bnxt_init_msix() 9127 if (!total_vecs) in bnxt_init_msix() 9130 msix_ent = kcalloc(total_vecs, sizeof(struct msix_entry), GFP_KERNEL); in bnxt_init_msix() 9134 for (i = 0; i < total_vecs; i++) { in bnxt_init_msix() 9142 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, min, total_vecs); in bnxt_init_msix() 9144 if (total_vecs < 0 || total_vecs < ulp_msix) { in bnxt_init_msix() 9149 bp->irq_tbl = kcalloc(total_vecs, sizeof(struct bnxt_irq), GFP_KERNEL); in bnxt_init_msix() [all …]
|
/Linux-v6.6/drivers/net/ethernet/broadcom/ |
D | bnx2.c | 6251 int i, total_vecs; in bnx2_enable_msix() local 6270 total_vecs = msix_vecs; in bnx2_enable_msix() 6272 total_vecs++; in bnx2_enable_msix() 6274 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, in bnx2_enable_msix() 6275 BNX2_MIN_MSIX_VEC, total_vecs); in bnx2_enable_msix() 6276 if (total_vecs < 0) in bnx2_enable_msix() 6279 msix_vecs = total_vecs; in bnx2_enable_msix() 6285 for (i = 0; i < total_vecs; i++) { in bnx2_enable_msix()
|