Lines Matching refs:cfa_code_map
190 if (cfa_code && bp->cfa_code_map && BNXT_PF(bp)) { in bnxt_get_vf_rep()
191 vf_idx = bp->cfa_code_map[cfa_code]; in bnxt_get_vf_rep()
355 kfree(bp->cfa_code_map); in bnxt_vf_reps_destroy()
356 bp->cfa_code_map = NULL; in bnxt_vf_reps_destroy()
392 u16 *cfa_code_map) in bnxt_alloc_vf_rep() argument
399 cfa_code_map[vf_rep->rx_cfa_code] = vf_rep->vf_idx; in bnxt_alloc_vf_rep()
418 u16 *cfa_code_map = bp->cfa_code_map, num_vfs = pci_num_vf(bp->pdev); in bnxt_vf_reps_alloc() local
425 if (!cfa_code_map) in bnxt_vf_reps_alloc()
429 cfa_code_map[i] = VF_IDX_INVALID; in bnxt_vf_reps_alloc()
435 rc = bnxt_alloc_vf_rep(bp, vf_rep, cfa_code_map); in bnxt_vf_reps_alloc()
491 u16 *cfa_code_map = NULL, num_vfs = pci_num_vf(bp->pdev); in bnxt_vf_reps_create() local
504 cfa_code_map = kmalloc_array(MAX_CFA_CODE, sizeof(*bp->cfa_code_map), in bnxt_vf_reps_create()
506 if (!cfa_code_map) { in bnxt_vf_reps_create()
511 cfa_code_map[i] = VF_IDX_INVALID; in bnxt_vf_reps_create()
527 rc = bnxt_alloc_vf_rep(bp, vf_rep, cfa_code_map); in bnxt_vf_reps_create()
541 bp->cfa_code_map = cfa_code_map; in bnxt_vf_reps_create()
547 kfree(cfa_code_map); in bnxt_vf_reps_create()