Lines Matching refs:tx_errs
275 u16 tx_errs; member
281 u16 tx_errs;
703 yp->tx_status[i].tx_errs, in yellowfin_tx_timeout()
793 &(yp->tx_status[0].tx_errs) - in yellowfin_init_ring()
941 if ((intr_status & IntrTxDone) || (yp->tx_tail_desc->tx_errs)) { in yellowfin_interrupt()
948 u16 tx_errs = yp->tx_status[entry].tx_errs; in yellowfin_interrupt() local
956 yp->tx_status[entry].tx_errs, in yellowfin_interrupt()
960 if (tx_errs == 0) in yellowfin_interrupt()
963 if (tx_errs & 0xF810) { in yellowfin_interrupt()
968 tx_errs); in yellowfin_interrupt()
971 if (tx_errs & 0xF800) dev->stats.tx_aborted_errors++; in yellowfin_interrupt()
972 if (tx_errs & 0x0800) dev->stats.tx_carrier_errors++; in yellowfin_interrupt()
973 if (tx_errs & 0x2000) dev->stats.tx_window_errors++; in yellowfin_interrupt()
974 if (tx_errs & 0x8000) dev->stats.tx_fifo_errors++; in yellowfin_interrupt()
979 tx_errs); in yellowfin_interrupt()
982 dev->stats.collisions += tx_errs & 15; in yellowfin_interrupt()
992 yp->tx_status[entry].tx_errs = 0; in yellowfin_interrupt()
1227 i, yp->tx_status[i].tx_cnt, yp->tx_status[i].tx_errs, in yellowfin_close()