taglinefilesource code
stats41net/drv/we8003/handler.cstatic struct enet_statistics stats;  /* Statistics collection */
stats319net/drv/we8003/handler.cstats.rx_packets++; /* count all receives */
stats408net/drv/we8003/handler.cstats.tx_packets++;
stats436net/drv/we8003/handler.cstats.tx_carrier_errors++;
stats440net/drv/we8003/handler.cstats.collisions += inb_p( NCR );
stats442net/drv/we8003/handler.cstats.tx_heartbeat_errors++;
stats444net/drv/we8003/handler.cstats.tx_window_errors++;
stats487net/drv/we8003/handler.cstats.rx_over_errors++;
stats505net/drv/we8003/handler.cstats.rx_errors++; /* general errors */
stats508net/drv/we8003/handler.cstats.rx_crc_errors++;
stats510net/drv/we8003/handler.cstats.rx_frame_errors++;
stats512net/drv/we8003/handler.cstats.rx_fifo_errors++;
stats514net/drv/we8003/handler.cstats.rx_missed_errors++;
stats519net/drv/we8003/handler.cstats.tx_errors++; /* general errors */
stats522net/drv/we8003/handler.cstats.tx_aborted_errors++;
stats527net/drv/we8003/handler.cstats.tx_fifo_errors++;
stats672net/drv/we8003/handler.cmemset((char *) &stats, 0, sizeof(struct enet_statistics);
stats88net/inet/3c509.cstruct enet_statistics stats;
stats379net/inet/3c509.cif (tx_status & 0x38) lp->stats.tx_aborted_errors++;
stats455net/inet/3c509.creturn &lp->stats;
stats472net/inet/3c509.clp->stats.tx_carrier_errors  += inb(ioaddr + 0);
stats473net/inet/3c509.clp->stats.tx_heartbeat_errors  += inb(ioaddr + 1);
stats475net/inet/3c509.clp->stats.collisions    += inb(ioaddr + 3);
stats476net/inet/3c509.clp->stats.tx_window_errors  += inb(ioaddr + 4);
stats477net/inet/3c509.clp->stats.rx_fifo_errors  += inb(ioaddr + 5);
stats478net/inet/3c509.clp->stats.tx_packets    += inb(ioaddr + 6);
stats479net/inet/3c509.clp->stats.rx_packets    += inb(ioaddr + 7);
stats503net/inet/3c509.clp->stats.rx_errors++;
stats505net/inet/3c509.ccase 0x2000:  lp->stats.rx_over_errors++; break;
stats506net/inet/3c509.ccase 0x2C00:  lp->stats.rx_length_errors++; break;
stats507net/inet/3c509.ccase 0x3400:  lp->stats.rx_crc_errors++; break;
stats508net/inet/3c509.ccase 0x2400:  lp->stats.rx_length_errors++; break;
stats509net/inet/3c509.ccase 0x3000:  lp->stats.rx_frame_errors++; break;
stats510net/inet/3c509.ccase 0x0800:  lp->stats.rx_frame_errors++; break;
stats561net/inet/3c509.clp->stats.rx_dropped++;
stats691net/inet/dev.cstruct enet_statistics *stats = (dev->get_stats ? dev->get_stats(dev): NULL);
stats693net/inet/dev.cif (stats)
stats696net/inet/dev.cstats->rx_packets, stats->rx_errors,
stats697net/inet/dev.cstats->rx_dropped + stats->rx_missed_errors,
stats698net/inet/dev.cstats->rx_fifo_errors,
stats699net/inet/dev.cstats->rx_length_errors + stats->rx_over_errors
stats700net/inet/dev.c+ stats->rx_crc_errors + stats->rx_frame_errors,
stats701net/inet/dev.cstats->tx_packets, stats->tx_errors, stats->tx_dropped,
stats702net/inet/dev.cstats->tx_fifo_errors, stats->collisions,
stats703net/inet/dev.cstats->tx_carrier_errors + stats->tx_aborted_errors
stats704net/inet/dev.c+ stats->tx_window_errors + stats->tx_heartbeat_errors);
stats98net/inet/lance.cstruct enet_statistics stats;
stats533net/inet/lance.clp->stats.tx_errors++;
stats534net/inet/lance.cif (err_status & 0x0400) lp->stats.tx_aborted_errors++;
stats535net/inet/lance.cif (err_status & 0x0800) lp->stats.tx_carrier_errors++;
stats536net/inet/lance.cif (err_status & 0x1000) lp->stats.tx_window_errors++;
stats537net/inet/lance.cif (err_status & 0x4000) lp->stats.tx_fifo_errors++;
stats540net/inet/lance.clp->stats.collisions++;
stats542net/inet/lance.clp->stats.tx_packets++;
stats578net/inet/lance.clp->stats.rx_errors++;
stats579net/inet/lance.cif (status & 0x20) lp->stats.rx_frame_errors++;
stats580net/inet/lance.cif (status & 0x10) lp->stats.rx_over_errors++;
stats581net/inet/lance.cif (status & 0x08) lp->stats.rx_crc_errors++;
stats582net/inet/lance.cif (status & 0x04) lp->stats.rx_fifo_errors++;
stats591net/inet/lance.clp->stats.rx_dropped++;  /* Really, deferred. */
stats607net/inet/lance.clp->stats.rx_dropped++;
stats611net/inet/lance.clp->stats.rx_packets++;
stats636net/inet/lance.clp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA);
stats668net/inet/lance.clp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA);
stats672net/inet/lance.creturn &lp->stats;
stats49net/inet/loopback.cstruct enet_statistics *stats = (struct enet_statistics *)dev->priv;
stats58net/inet/loopback.cstats->tx_errors++;
stats70net/inet/loopback.cstats->tx_packets++;