Lines Matching refs:pktcount
2395 int pktcount, ret;
2401 pktcount = eosw_txq->pidx - eosw_txq->last_pidx;
2402 if (pktcount < 0)
2403 pktcount += eosw_txq->ndesc;
2412 while (pktcount--) {
2495 int pktcount = eosw_txq->pidx - eosw_txq->last_pidx;
2499 if (!pktcount)
2502 if (pktcount < 0)
2503 pktcount += eosw_txq->ndesc;
2505 while (pktcount--) {
4016 int pktcount;
4019 pktcount = eosw_txq->cidx - eosw_txq->last_cidx;
4020 if (pktcount < 0)
4021 pktcount += eosw_txq->ndesc;
4023 if (pktcount) {
4025 eosw_txq, pktcount);
4026 eosw_txq->inuse -= pktcount;