Searched refs:total_vecs (Results 1 - 6 of 6) sorted by relevance

/linux-master/drivers/net/ethernet/intel/idpf/
H A Didpf_dev.c77 u16 total_vecs; local
79 total_vecs = idpf_get_reserved_vecs(vport->adapter);
80 reg_vals = kcalloc(total_vecs, sizeof(struct idpf_vec_regs),
H A Didpf_vf_dev.c77 u16 total_vecs; local
79 total_vecs = idpf_get_reserved_vecs(vport->adapter);
80 reg_vals = kcalloc(total_vecs, sizeof(struct idpf_vec_regs),
H A Didpf_lib.c320 int num_q_vecs, total_vecs, num_vec_ids; local
325 total_vecs = idpf_get_reserved_vecs(adapter);
326 num_q_vecs = total_vecs - IDPF_MBX_Q_VEC;
338 total_vecs, PCI_IRQ_MSIX);
356 vecids = kcalloc(total_vecs, sizeof(u16), GFP_KERNEL);
369 num_vec_ids = idpf_get_vec_ids(adapter, vecids, total_vecs,
388 adapter->num_req_msix = total_vecs;
H A Didpf_txrx.c4043 u16 *vecids, total_vecs; local
4054 total_vecs = idpf_get_reserved_vecs(adapter);
4055 vecids = kcalloc(total_vecs, sizeof(u16), GFP_KERNEL);
4059 idpf_get_vec_ids(adapter, vecids, total_vecs, &ac->vchunks);
/linux-master/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt.c10330 int i, total_vecs, max, rc = 0, min = 1, ulp_msix, tx_cp; local
10333 total_vecs = bnxt_get_num_msix(bp);
10335 if (total_vecs > max)
10336 total_vecs = max;
10338 if (!total_vecs)
10341 msix_ent = kcalloc(total_vecs, sizeof(struct msix_entry), GFP_KERNEL);
10345 for (i = 0; i < total_vecs; i++) {
10353 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent, min, total_vecs);
10355 if (total_vecs <
[all...]
/linux-master/drivers/net/ethernet/broadcom/
H A Dbnx2.c6252 int i, total_vecs; local
6271 total_vecs = msix_vecs;
6273 total_vecs++;
6275 total_vecs = pci_enable_msix_range(bp->pdev, msix_ent,
6276 BNX2_MIN_MSIX_VEC, total_vecs);
6277 if (total_vecs < 0)
6280 msix_vecs = total_vecs;
6286 for (i = 0; i < total_vecs; i++) {

Completed in 187 milliseconds