Lines Matching refs:pktcount
2401 int pktcount, ret;
2407 pktcount = eosw_txq->pidx - eosw_txq->last_pidx;
2408 if (pktcount < 0)
2409 pktcount += eosw_txq->ndesc;
2418 while (pktcount--) {
2501 int pktcount = eosw_txq->pidx - eosw_txq->last_pidx;
2505 if (!pktcount)
2508 if (pktcount < 0)
2509 pktcount += eosw_txq->ndesc;
2511 while (pktcount--) {
4041 int pktcount;
4044 pktcount = eosw_txq->cidx - eosw_txq->last_cidx;
4045 if (pktcount < 0)
4046 pktcount += eosw_txq->ndesc;
4048 if (pktcount) {
4050 eosw_txq, pktcount);
4051 eosw_txq->inuse -= pktcount;