Lines Matching refs:stats
996 dev->stats.tx_errors++; in corkscrew_timeout()
997 dev->stats.tx_dropped++; in corkscrew_timeout()
1062 dev->stats.tx_bytes += skb->len; in corkscrew_start_xmit()
1105 dev->stats.tx_fifo_errors++; in corkscrew_start_xmit()
1107 dev->stats.tx_aborted_errors++; in corkscrew_start_xmit()
1281 dev->stats.rx_errors++; in corkscrew_rx()
1283 dev->stats.rx_over_errors++; in corkscrew_rx()
1285 dev->stats.rx_length_errors++; in corkscrew_rx()
1287 dev->stats.rx_frame_errors++; in corkscrew_rx()
1289 dev->stats.rx_crc_errors++; in corkscrew_rx()
1291 dev->stats.rx_length_errors++; in corkscrew_rx()
1310 dev->stats.rx_packets++; in corkscrew_rx()
1311 dev->stats.rx_bytes += pkt_len; in corkscrew_rx()
1321 dev->stats.rx_dropped++; in corkscrew_rx()
1346 dev->stats.rx_errors++; in boomerang_rx()
1348 dev->stats.rx_over_errors++; in boomerang_rx()
1350 dev->stats.rx_length_errors++; in boomerang_rx()
1352 dev->stats.rx_frame_errors++; in boomerang_rx()
1354 dev->stats.rx_crc_errors++; in boomerang_rx()
1356 dev->stats.rx_length_errors++; in boomerang_rx()
1362 dev->stats.rx_bytes += pkt_len; in boomerang_rx()
1393 dev->stats.rx_packets++; in boomerang_rx()
1478 return &dev->stats; in corkscrew_get_stats()
1493 dev->stats.tx_carrier_errors += inb(ioaddr + 0); in update_stats()
1494 dev->stats.tx_heartbeat_errors += inb(ioaddr + 1); in update_stats()
1496 dev->stats.collisions += inb(ioaddr + 3); in update_stats()
1497 dev->stats.tx_window_errors += inb(ioaddr + 4); in update_stats()
1498 dev->stats.rx_fifo_errors += inb(ioaddr + 5); in update_stats()
1499 dev->stats.tx_packets += inb(ioaddr + 6); in update_stats()
1500 dev->stats.tx_packets += (inb(ioaddr + 9) & 0x30) << 4; in update_stats()