Searched refs:ntu (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/sys/dev/ice/
H A Dice_controlq.c1160 u16 ntu; local
1175 ntu = (u16)(rd32(hw, cq->rq.head) & cq->rq.head_mask);
1177 if (ntu == ntc) {
1226 cq->rq.next_to_use = ntu;
1232 ntu = (u16)(rd32(hw, cq->rq.head) & cq->rq.head_mask);
1233 *pending = (u16)((ntc > ntu ? cq->rq.count : 0) + (ntu - ntc));
/freebsd-13-stable/sys/dev/ixl/
H A Di40e_adminq.c1076 u16 ntu; local
1093 ntu = rd32(hw, hw->aq.arq.head) & I40E_PF_ARQH_ARQH_MASK;
1095 ntu = rd32(hw, hw->aq.arq.head) & I40E_VF_ARQH1_ARQH_MASK;
1096 if (ntu == ntc) {
1151 hw->aq.arq.next_to_use = ntu;
1157 *pending = (ntc > ntu ? hw->aq.arq.count : 0) + (ntu - ntc);

Completed in 151 milliseconds