Lines Matching refs:tx_last

187 			struct sk_buff *skb = greth->tx_skbuff[greth->tx_last];  in greth_clean_rings()
189 tx_bdp = greth->tx_bd_base + greth->tx_last; in greth_clean_rings()
190 greth->tx_last = NEXT_TX(greth->tx_last); in greth_clean_rings()
199 tx_bdp = greth->tx_bd_base + greth->tx_last; in greth_clean_rings()
206 greth->tx_last = NEXT_TX(greth->tx_last); in greth_clean_rings()
325 greth->tx_last = 0; in greth_init_rings()
454 static inline u16 greth_num_free_bds(u16 tx_last, u16 tx_next) in greth_num_free_bds() argument
456 if (tx_next < tx_last) in greth_num_free_bds()
457 return (tx_last - tx_next) - 1; in greth_num_free_bds()
459 return GRETH_TXBD_NUM - (tx_next - tx_last) - 1; in greth_num_free_bds()
470 u16 tx_last; in greth_start_xmit_gbit() local
473 tx_last = greth->tx_last; in greth_start_xmit_gbit()
476 if (greth_num_free_bds(tx_last, greth->tx_next) < nr_frags + 1) { in greth_start_xmit_gbit()
627 bdp = greth->tx_bd_base + greth->tx_last; in greth_clean_tx()
647 dev->stats.tx_bytes += greth->tx_bufs_length[greth->tx_last]; in greth_clean_tx()
648 greth->tx_last = NEXT_TX(greth->tx_last); in greth_clean_tx()
679 u16 tx_last; in greth_clean_tx_gbit() local
682 tx_last = greth->tx_last; in greth_clean_tx_gbit()
684 while (tx_last != greth->tx_next) { in greth_clean_tx_gbit()
686 skb = greth->tx_skbuff[tx_last]; in greth_clean_tx_gbit()
691 bdp_last_frag = greth->tx_bd_base + SKIP_TX(tx_last, nr_frags); in greth_clean_tx_gbit()
700 greth->tx_skbuff[tx_last] = NULL; in greth_clean_tx_gbit()
705 bdp = greth->tx_bd_base + tx_last; in greth_clean_tx_gbit()
707 tx_last = NEXT_TX(tx_last); in greth_clean_tx_gbit()
716 bdp = greth->tx_bd_base + tx_last; in greth_clean_tx_gbit()
723 tx_last = NEXT_TX(tx_last); in greth_clean_tx_gbit()
729 greth->tx_last = tx_last; in greth_clean_tx_gbit()
732 (greth_num_free_bds(tx_last, greth->tx_next) > in greth_clean_tx_gbit()
993 if ((greth->gbit_mac && (greth->tx_last != greth->tx_next)) || in greth_poll()