Lines Matching refs:dirty_tx
267 unsigned int cur_tx, dirty_tx;
790 ep->cur_rx, ep->dirty_rx, ep->dirty_tx, ep->cur_tx);
815 (ep->dirty_tx % TX_RING_SIZE) * sizeof(struct epic_tx_desc));
880 netdev_dbg(dev, "Tx indices: dirty_tx %d, cur_tx %d.\n",
881 ep->dirty_tx, ep->cur_tx);
905 ep->dirty_tx = ep->cur_tx = 0;
962 free_count = ep->cur_tx - ep->dirty_tx;
1024 unsigned int dirty_tx, cur_tx;
1031 for (dirty_tx = ep->dirty_tx; cur_tx - dirty_tx > 0; dirty_tx++) {
1033 int entry = dirty_tx % TX_RING_SIZE;
1056 if (cur_tx - dirty_tx > TX_RING_SIZE) {
1058 dirty_tx, cur_tx, ep->tx_full);
1059 dirty_tx += TX_RING_SIZE;
1062 ep->dirty_tx = dirty_tx;
1063 if (ep->tx_full && cur_tx - dirty_tx < TX_QUEUE_LEN - 4) {