Lines Matching refs:my_pfc
548 struct ieee_pfc *my_pfc = bp->ieee_pfc; in bnxt_dcbnl_ieee_getpfc() local
554 if (!my_pfc) { in bnxt_dcbnl_ieee_getpfc()
558 my_pfc = kzalloc(sizeof(*my_pfc), GFP_KERNEL); in bnxt_dcbnl_ieee_getpfc()
559 if (!my_pfc) in bnxt_dcbnl_ieee_getpfc()
561 bp->ieee_pfc = my_pfc; in bnxt_dcbnl_ieee_getpfc()
562 rc = bnxt_hwrm_queue_pfc_qcfg(bp, my_pfc); in bnxt_dcbnl_ieee_getpfc()
567 pfc->pfc_en = my_pfc->pfc_en; in bnxt_dcbnl_ieee_getpfc()
568 pfc->mbc = my_pfc->mbc; in bnxt_dcbnl_ieee_getpfc()
569 pfc->delay = my_pfc->delay; in bnxt_dcbnl_ieee_getpfc()
587 struct ieee_pfc *my_pfc = bp->ieee_pfc; in bnxt_dcbnl_ieee_setpfc() local
594 if (!my_pfc) { in bnxt_dcbnl_ieee_setpfc()
595 my_pfc = kzalloc(sizeof(*my_pfc), GFP_KERNEL); in bnxt_dcbnl_ieee_setpfc()
596 if (!my_pfc) in bnxt_dcbnl_ieee_setpfc()
598 bp->ieee_pfc = my_pfc; in bnxt_dcbnl_ieee_setpfc()
602 memcpy(my_pfc, pfc, sizeof(*my_pfc)); in bnxt_dcbnl_ieee_setpfc()