Lines Matching refs:my_pfc
595 struct ieee_pfc *my_pfc = bp->ieee_pfc; in bnxt_dcbnl_ieee_getpfc() local
601 if (!my_pfc) { in bnxt_dcbnl_ieee_getpfc()
605 my_pfc = kzalloc(sizeof(*my_pfc), GFP_KERNEL); in bnxt_dcbnl_ieee_getpfc()
606 if (!my_pfc) in bnxt_dcbnl_ieee_getpfc()
608 bp->ieee_pfc = my_pfc; in bnxt_dcbnl_ieee_getpfc()
609 rc = bnxt_hwrm_queue_pfc_qcfg(bp, my_pfc); in bnxt_dcbnl_ieee_getpfc()
614 pfc->pfc_en = my_pfc->pfc_en; in bnxt_dcbnl_ieee_getpfc()
615 pfc->mbc = my_pfc->mbc; in bnxt_dcbnl_ieee_getpfc()
616 pfc->delay = my_pfc->delay; in bnxt_dcbnl_ieee_getpfc()
634 struct ieee_pfc *my_pfc = bp->ieee_pfc; in bnxt_dcbnl_ieee_setpfc() local
642 if (!my_pfc) { in bnxt_dcbnl_ieee_setpfc()
643 my_pfc = kzalloc(sizeof(*my_pfc), GFP_KERNEL); in bnxt_dcbnl_ieee_setpfc()
644 if (!my_pfc) in bnxt_dcbnl_ieee_setpfc()
646 bp->ieee_pfc = my_pfc; in bnxt_dcbnl_ieee_setpfc()
650 memcpy(my_pfc, pfc, sizeof(*my_pfc)); in bnxt_dcbnl_ieee_setpfc()