Lines Matching refs:ndesc
1362 unsigned int flits, ndesc; in cxgb4_eth_xmit() local
1434 ndesc = flits_to_desc(flits); in cxgb4_eth_xmit()
1435 credits = txq_avail(&q->q) - ndesc; in cxgb4_eth_xmit()
1612 last_desc = q->q.pidx + ndesc - 1; in cxgb4_eth_xmit()
1619 txq_advance(&q->q, ndesc); in cxgb4_eth_xmit()
1621 cxgb4_ring_tx_db(adap, &q->q, ndesc); in cxgb4_eth_xmit()
1716 unsigned int flits, ndesc; in cxgb4_vf_eth_xmit() local
1758 ndesc = flits_to_desc(flits); in cxgb4_vf_eth_xmit()
1759 credits = txq_avail(&txq->q) - ndesc; in cxgb4_vf_eth_xmit()
1971 last_desc = tq->pidx + ndesc - 1; in cxgb4_vf_eth_xmit()
1981 txq_advance(&txq->q, ndesc); in cxgb4_vf_eth_xmit()
1983 cxgb4_ring_tx_db(adapter, &txq->q, ndesc); in cxgb4_vf_eth_xmit()
2065 unsigned int ndesc; in ctrl_xmit() local
2074 ndesc = DIV_ROUND_UP(skb->len, sizeof(struct tx_desc)); in ctrl_xmit()
2078 skb->priority = ndesc; /* save for restart */ in ctrl_xmit()
2087 txq_advance(&q->q, ndesc); in ctrl_xmit()
2091 cxgb4_ring_tx_db(q->adap, &q->q, ndesc); in ctrl_xmit()
2116 unsigned int ndesc = skb->priority; /* previously saved */ in restart_ctrlq() local
2118 written += ndesc; in restart_ctrlq()
2123 txq_advance(&q->q, ndesc); in restart_ctrlq()
2266 unsigned int flits, ndesc; in service_ofldq() local
2291 ndesc = flits_to_desc(flits); in service_ofldq()
2292 credits = txq_avail(&q->q) - ndesc; in service_ofldq()
2339 last_desc = q->q.pidx + ndesc - 1; in service_ofldq()
2345 txq_advance(&q->q, ndesc); in service_ofldq()
2346 written += ndesc; in service_ofldq()
2531 unsigned int ndesc; in ofld_xmit_direct() local
2553 ndesc = flits_to_desc(DIV_ROUND_UP(len, 8)); in ofld_xmit_direct()
2554 credits = txq_avail(&q->q) - ndesc; in ofld_xmit_direct()
2561 txq_advance(&q->q, ndesc); in ofld_xmit_direct()
2562 cxgb4_ring_tx_db(q->adap, &q->q, ndesc); in ofld_xmit_direct()