taglinefilesource code
stats81drivers/net/3c501.cstruct enet_statistics stats;
stats285drivers/net/3c501.clp->stats.tx_errors++;
stats371drivers/net/3c501.clp->stats.tx_aborted_errors++;
stats378drivers/net/3c501.clp->stats.collisions++;
stats382drivers/net/3c501.clp->stats.tx_packets++;
stats397drivers/net/3c501.clp->stats.rx_missed_errors++;
stats399drivers/net/3c501.clp->stats.rx_length_errors++;
stats440drivers/net/3c501.clp->stats.rx_over_errors++;
stats449drivers/net/3c501.clp->stats.rx_dropped++;
stats458drivers/net/3c501.clp->stats.rx_packets++;
stats515drivers/net/3c501.creturn &lp->stats;
stats217drivers/net/3c505.cstruct enet_statistics stats;
stats597drivers/net/3c505.cadapter->stats.rx_dropped++;
stats768drivers/net/3c505.cadapter->stats.rx_packets += adapter->irx_pcb.data.netstat.tot_recv;
stats769drivers/net/3c505.cadapter->stats.tx_packets += adapter->irx_pcb.data.netstat.tot_xmit;
stats770drivers/net/3c505.cadapter->stats.rx_crc_errors += adapter->irx_pcb.data.netstat.err_CRC;
stats771drivers/net/3c505.cadapter->stats.rx_frame_errors += adapter->irx_pcb.data.netstat.err_align;
stats772drivers/net/3c505.cadapter->stats.rx_fifo_errors += adapter->irx_pcb.data.netstat.err_ovrrun;
stats1140drivers/net/3c505.creturn &adapter->stats;
stats1155drivers/net/3c505.creturn &adapter->stats;
stats1160drivers/net/3c505.creturn &adapter->stats;
stats1328drivers/net/3c505.cmemset(&(adapter->stats), 0, sizeof(struct enet_statistics));
stats120drivers/net/3c507.cstruct enet_statistics stats;
stats464drivers/net/3c507.cif (lp->last_restart == lp->stats.tx_packets) {
stats473drivers/net/3c507.clp->last_restart = lp->stats.tx_packets;
stats549drivers/net/3c507.clp->stats.tx_packets++;
stats550drivers/net/3c507.clp->stats.collisions += tx_status & 0xf;
stats554drivers/net/3c507.clp->stats.tx_errors++;
stats555drivers/net/3c507.cif (tx_status & 0x0600)  lp->stats.tx_carrier_errors++;
stats556drivers/net/3c507.cif (tx_status & 0x0100)  lp->stats.tx_fifo_errors++;
stats557drivers/net/3c507.cif (!(tx_status & 0x0040))  lp->stats.tx_heartbeat_errors++;
stats558drivers/net/3c507.cif (tx_status & 0x0020)  lp->stats.tx_aborted_errors++;
stats647drivers/net/3c507.creturn &lp->stats;
stats828drivers/net/3c507.clp->stats.rx_errors++;
stats829drivers/net/3c507.cif (frame_status & 0x0800) lp->stats.rx_crc_errors++;
stats830drivers/net/3c507.cif (frame_status & 0x0400) lp->stats.rx_frame_errors++;
stats831drivers/net/3c507.cif (frame_status & 0x0200) lp->stats.rx_fifo_errors++;
stats832drivers/net/3c507.cif (frame_status & 0x0100) lp->stats.rx_over_errors++;
stats833drivers/net/3c507.cif (frame_status & 0x0080) lp->stats.rx_length_errors++;
stats842drivers/net/3c507.clp->stats.rx_dropped++;
stats852drivers/net/3c507.clp->stats.rx_packets++;
stats98drivers/net/3c509.cstruct enet_statistics stats;
stats452drivers/net/3c509.cif (tx_status & 0x38) lp->stats.tx_aborted_errors++;
stats533drivers/net/3c509.creturn &lp->stats;
stats551drivers/net/3c509.clp->stats.tx_carrier_errors   += inb(ioaddr + 0);
stats552drivers/net/3c509.clp->stats.tx_heartbeat_errors  += inb(ioaddr + 1);
stats554drivers/net/3c509.clp->stats.collisions      += inb(ioaddr + 3);
stats555drivers/net/3c509.clp->stats.tx_window_errors    += inb(ioaddr + 4);
stats556drivers/net/3c509.clp->stats.rx_fifo_errors    += inb(ioaddr + 5);
stats557drivers/net/3c509.clp->stats.tx_packets      += inb(ioaddr + 6);
stats582drivers/net/3c509.clp->stats.rx_errors++;
stats584drivers/net/3c509.ccase 0x0000:    lp->stats.rx_over_errors++; break;
stats585drivers/net/3c509.ccase 0x0800:    lp->stats.rx_length_errors++; break;
stats586drivers/net/3c509.ccase 0x1000:    lp->stats.rx_frame_errors++; break;
stats587drivers/net/3c509.ccase 0x1800:    lp->stats.rx_length_errors++; break;
stats588drivers/net/3c509.ccase 0x2000:    lp->stats.rx_frame_errors++; break;
stats589drivers/net/3c509.ccase 0x2800:    lp->stats.rx_crc_errors++; break;
stats609drivers/net/3c509.clp->stats.rx_packets++;
stats615drivers/net/3c509.clp->stats.rx_dropped++;
stats169drivers/net/apricot.cstruct enet_statistics stats;
stats353drivers/net/apricot.clp->stats.rx_dropped++;
stats362drivers/net/apricot.clp->stats.rx_packets++;
stats368drivers/net/apricot.clp->stats.rx_errors++;
stats369drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0001) lp->stats.collisions++;
stats370drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0080) lp->stats.rx_length_errors++;
stats371drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0100) lp->stats.rx_over_errors++;
stats372drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0200) lp->stats.rx_fifo_errors++;
stats373drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0400) lp->stats.rx_frame_errors++;
stats374drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0800) lp->stats.rx_crc_errors++;
stats375drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x1000) lp->stats.rx_length_errors++;
stats416drivers/net/apricot.clp->stats.tx_errors++;
stats417drivers/net/apricot.clp->stats.tx_aborted_errors++;
stats592drivers/net/apricot.clp->stats.tx_errors++;
stats594drivers/net/apricot.cif (lp->last_restart == lp->stats.tx_packets) {
stats606drivers/net/apricot.clp->last_restart = lp->stats.tx_packets;
stats638drivers/net/apricot.clp->stats.tx_dropped++;
stats660drivers/net/apricot.clp->stats.tx_packets++;
stats824drivers/net/apricot.clp->stats.tx_errors++;
stats825drivers/net/apricot.cif ((ptr->status) & 0x0020) lp->stats.collisions++;
stats826drivers/net/apricot.cif (!((ptr->status) & 0x0040)) lp->stats.tx_heartbeat_errors++;
stats827drivers/net/apricot.cif ((ptr->status) & 0x0400) lp->stats.tx_carrier_errors++;
stats828drivers/net/apricot.cif ((ptr->status) & 0x0800) lp->stats.collisions++;
stats829drivers/net/apricot.cif ((ptr->status) & 0x1000) lp->stats.tx_aborted_errors++;
stats963drivers/net/apricot.creturn &lp->stats;
stats72drivers/net/at1700.cstruct enet_statistics stats;
stats380drivers/net/at1700.clp->stats.tx_errors++;
stats464drivers/net/at1700.clp->stats.tx_packets++;
stats508drivers/net/at1700.clp->stats.rx_errors++;
stats509drivers/net/at1700.cif (status & 0x08) lp->stats.rx_length_errors++;
stats510drivers/net/at1700.cif (status & 0x04) lp->stats.rx_frame_errors++;
stats511drivers/net/at1700.cif (status & 0x02) lp->stats.rx_crc_errors++;
stats512drivers/net/at1700.cif (status & 0x01) lp->stats.rx_over_errors++;
stats522drivers/net/at1700.clp->stats.rx_errors++;
stats530drivers/net/at1700.clp->stats.rx_dropped++;
stats547drivers/net/at1700.clp->stats.rx_packets++;
stats605drivers/net/at1700.creturn &lp->stats;
stats425drivers/net/atp.clp->stats.tx_errors++;
stats520drivers/net/atp.clp->stats.rx_over_errors++;
stats540drivers/net/atp.clp->stats.collisions++;
stats542drivers/net/atp.clp->stats.tx_aborted_errors++;
stats551drivers/net/atp.clp->stats.tx_packets++;
stats570drivers/net/atp.clp->stats.rx_missed_errors++;
stats619drivers/net/atp.clp->stats.rx_errors++;
stats634drivers/net/atp.clp->stats.rx_dropped++;
stats652drivers/net/atp.clp->stats.rx_packets++;
stats710drivers/net/atp.creturn &lp->stats;
stats7drivers/net/atp.hstruct enet_statistics stats;
stats308drivers/net/depca.cstruct enet_statistics stats;
stats1046drivers/net/depca.clp->stats.rx_errors++;             /* Update the error stats. */
stats1047drivers/net/depca.cif (status & R_FRAM) lp->stats.rx_frame_errors++;
stats1048drivers/net/depca.cif (status & R_OFLO) lp->stats.rx_over_errors++;
stats1049drivers/net/depca.cif (status & R_CRC)  lp->stats.rx_crc_errors++;
stats1050drivers/net/depca.cif (status & R_BUFF) lp->stats.rx_fifo_errors++;
stats1058drivers/net/depca.clp->stats.rx_dropped++;  /* Really, deferred. */
stats1072drivers/net/depca.clp->stats.rx_packets++;
stats1120drivers/net/depca.clp->stats.tx_errors++;
stats1121drivers/net/depca.cif (err_status & TMD3_RTRY) lp->stats.tx_aborted_errors++;
stats1122drivers/net/depca.cif (err_status & TMD3_LCAR) lp->stats.tx_carrier_errors++;
stats1123drivers/net/depca.cif (err_status & TMD3_LCOL) lp->stats.tx_window_errors++;
stats1124drivers/net/depca.cif (err_status & TMD3_UFLO) lp->stats.tx_fifo_errors++;
stats1127drivers/net/depca.clp->stats.collisions++;
stats1129drivers/net/depca.clp->stats.tx_packets++;
stats1234drivers/net/depca.creturn &lp->stats;
stats87drivers/net/dummy.cstruct enet_statistics *stats;
stats96drivers/net/dummy.cstats = (struct enet_statistics *)dev->priv;
stats97drivers/net/dummy.cstats->tx_packets++;
stats107drivers/net/dummy.cstruct enet_statistics *stats = (struct enet_statistics*) dev->priv;
stats108drivers/net/dummy.creturn stats;
stats99drivers/net/eexpress.cstruct enet_statistics stats;
stats466drivers/net/eexpress.clp->stats.tx_errors++;
stats468drivers/net/eexpress.cif (lp->last_restart == lp->stats.tx_packets) {
stats477drivers/net/eexpress.clp->last_restart = lp->stats.tx_packets;
stats509drivers/net/eexpress.clp->stats.tx_aborted_errors++;
stats553drivers/net/eexpress.clp->stats.tx_packets++;
stats554drivers/net/eexpress.clp->stats.collisions += tx_status & 0xf;
stats558drivers/net/eexpress.clp->stats.tx_errors++;
stats559drivers/net/eexpress.cif (tx_status & 0x0600)  lp->stats.tx_carrier_errors++;
stats560drivers/net/eexpress.cif (tx_status & 0x0100)  lp->stats.tx_fifo_errors++;
stats561drivers/net/eexpress.cif (!(tx_status & 0x0040))  lp->stats.tx_heartbeat_errors++;
stats562drivers/net/eexpress.cif (tx_status & 0x0020)  lp->stats.tx_aborted_errors++;
stats605drivers/net/eexpress.clp->stats.rx_errors++;
stats677drivers/net/eexpress.creturn &lp->stats;
stats933drivers/net/eexpress.clp->stats.rx_errors++;
stats934drivers/net/eexpress.cif (frame_status & 0x0800) lp->stats.rx_crc_errors++;
stats935drivers/net/eexpress.cif (frame_status & 0x0400) lp->stats.rx_frame_errors++;
stats936drivers/net/eexpress.cif (frame_status & 0x0200) lp->stats.rx_fifo_errors++;
stats937drivers/net/eexpress.cif (frame_status & 0x0100) lp->stats.rx_over_errors++;
stats938drivers/net/eexpress.cif (frame_status & 0x0080) lp->stats.rx_length_errors++;
stats947drivers/net/eexpress.clp->stats.rx_dropped++;
stats958drivers/net/eexpress.clp->stats.rx_packets++;
stats262drivers/net/ewrk3.cstruct enet_statistics stats;       /* Public stats */
stats1029drivers/net/ewrk3.clp->stats.rx_errors++;            /* Update the error stats. */
stats1030drivers/net/ewrk3.cif (rx_status & DBE) lp->stats.rx_frame_errors++;
stats1031drivers/net/ewrk3.cif (rx_status & CRC) lp->stats.rx_crc_errors++;
stats1032drivers/net/ewrk3.cif (rx_status & PLL) lp->stats.rx_fifo_errors++;
stats1060drivers/net/ewrk3.clp->stats.rx_packets++;
stats1085drivers/net/ewrk3.clp->stats.rx_dropped++;        /* Really, deferred. */
stats1124drivers/net/ewrk3.clp->stats.tx_errors++;
stats1125drivers/net/ewrk3.cif (tx_status & MAC_NCL)    lp->stats.tx_carrier_errors++;
stats1126drivers/net/ewrk3.cif (tx_status & MAC_LCL)    lp->stats.tx_window_errors++;
stats1135drivers/net/ewrk3.clp->stats.collisions++;
stats1141drivers/net/ewrk3.clp->stats.tx_packets++;
stats1201drivers/net/ewrk3.creturn &lp->stats;
stats204drivers/net/lance.cstruct enet_statistics stats;
stats645drivers/net/lance.clp->stats.tx_errors++;
stats800drivers/net/lance.clp->stats.tx_errors++;
stats801drivers/net/lance.cif (err_status & 0x0400) lp->stats.tx_aborted_errors++;
stats802drivers/net/lance.cif (err_status & 0x0800) lp->stats.tx_carrier_errors++;
stats803drivers/net/lance.cif (err_status & 0x1000) lp->stats.tx_window_errors++;
stats806drivers/net/lance.clp->stats.tx_fifo_errors++;
stats815drivers/net/lance.clp->stats.collisions++;
stats816drivers/net/lance.clp->stats.tx_packets++;
stats848drivers/net/lance.cif (csr0 & 0x4000) lp->stats.tx_errors++; /* Tx babble. */
stats849drivers/net/lance.cif (csr0 & 0x1000) lp->stats.rx_errors++; /* Missed a Rx frame. */
stats888drivers/net/lance.clp->stats.rx_errors++; /* end of a packet.*/
stats889drivers/net/lance.cif (status & 0x20) lp->stats.rx_frame_errors++;
stats890drivers/net/lance.cif (status & 0x10) lp->stats.rx_over_errors++;
stats891drivers/net/lance.cif (status & 0x08) lp->stats.rx_crc_errors++;
stats892drivers/net/lance.cif (status & 0x04) lp->stats.rx_fifo_errors++;
stats907drivers/net/lance.clp->stats.rx_dropped++;
stats919drivers/net/lance.clp->stats.rx_packets++;
stats946drivers/net/lance.clp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA);
stats979drivers/net/lance.clp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA);
stats984drivers/net/lance.creturn &lp->stats;
stats46drivers/net/loopback.cstruct enet_statistics *stats = (struct enet_statistics *)dev->priv;
stats54drivers/net/loopback.cstats->tx_errors++;
stats69drivers/net/loopback.cstats->tx_packets++;
stats213drivers/net/ni52.cstruct enet_statistics stats;
stats788drivers/net/ni52.cp->stats.rx_over_errors += l;
stats888drivers/net/ni52.cp->stats.rx_packets++;
stats900drivers/net/ni52.cp->stats.rx_errors++;
stats915drivers/net/ni52.cp->stats.rx_errors++;
stats942drivers/net/ni52.cp->stats.tx_packets++;
stats943drivers/net/ni52.cp->stats.collisions += (status & TCMD_MAXCOLLMASK);
stats949drivers/net/ni52.cp->stats.tx_errors++;
stats952drivers/net/ni52.cp->stats.collisions++;
stats955drivers/net/ni52.cp->stats.tx_carrier_errors++;
stats965drivers/net/ni52.cp->stats.collisions += 16;
stats1100drivers/net/ni52.creturn &p->stats;
stats140drivers/net/ni65.cstruct enet_statistics stats;
stats422drivers/net/ni65.cp->stats.tx_errors++;
stats424drivers/net/ni65.cp->stats.rx_errors++;
stats476drivers/net/ni65.cp->stats.tx_aborted_errors++;
stats478drivers/net/ni65.cp->stats.tx_carrier_errors++;
stats479drivers/net/ni65.cp->stats.tx_errors++;
stats483drivers/net/ni65.cp->stats.tx_packets++;
stats512drivers/net/ni65.cp->stats.rx_errors++;
stats513drivers/net/ni65.cp->stats.rx_length_errors++;
stats521drivers/net/ni65.cp->stats.rx_errors++;
stats522drivers/net/ni65.cif(rmdstat & RCV_FRAM) p->stats.rx_frame_errors++;
stats523drivers/net/ni65.cif(rmdstat & RCV_OFLO) p->stats.rx_over_errors++;
stats524drivers/net/ni65.cif(rmdstat & RCV_CRC)  p->stats.rx_crc_errors++;
stats547drivers/net/ni65.cp->stats.rx_packets++;
stats554drivers/net/ni65.cp->stats.rx_dropped++;
stats637drivers/net/ni65.creturn &((struct priv *) dev->priv)->stats;
stats285drivers/net/plip.cstruct enet_statistics *stats = (struct enet_statistics *) dev->priv;
stats311drivers/net/plip.cstats->rx_packets++;
stats386drivers/net/plip.cstats->tx_errors++;
stats387drivers/net/plip.cstats->tx_aborted_errors++;
stats395drivers/net/plip.cstats->rx_dropped++;
stats631drivers/net/plip.cstruct enet_statistics *stats = (struct enet_statistics *) dev->priv;
stats679drivers/net/plip.cstats->rx_crc_errors++;
stats804drivers/net/plip.cstruct enet_statistics *stats = (struct enet_statistics *) dev->priv;
stats813drivers/net/plip.cstats->collisions++;
stats869drivers/net/plip.cstats->tx_packets++;
stats264drivers/net/ppp.cmemset (&ppp->stats, '\0', sizeof (struct ppp_stats));
stats346drivers/net/ppp.cmemset (&ppp->stats, '\0', sizeof (struct ppp_stats));
stats623drivers/net/ppp.csizeof (struct stats));
stats626drivers/net/ppp.cresult = (struct stats *) ifr->ifr_ifru.ifru_data;
stats628drivers/net/ppp.cmemcpy_tofs (&result->ppp_stats, &ppp->stats, sizeof (struct ppp_stats));
stats673drivers/net/ppp.cppp->stats.sbytes += count;
stats685drivers/net/ppp.cppp->stats.serrors++;
stats700drivers/net/ppp.cppp->stats.sbytes += actual;
stats735drivers/net/ppp.cppp->stats.sbytes += actual;
stats770drivers/net/ppp.cppp->stats.roverrun++;
stats843drivers/net/ppp.cppp->stats.rbytes += n;
stats931drivers/net/ppp.cppp->stats.rbytes += count;
stats996drivers/net/ppp.cppp->stats.rerrors++;
stats1009drivers/net/ppp.cppp->stats.runts++;
stats1016drivers/net/ppp.cppp->stats.rerrors++;
stats1051drivers/net/ppp.cppp->stats.rothers++;
stats1058drivers/net/ppp.cppp->stats.tossed++;
stats1080drivers/net/ppp.cppp->stats.runcomp++;
stats1099drivers/net/ppp.cppp->stats.roverrun++;
stats1105drivers/net/ppp.cppp->stats.rerrors++;
stats1109drivers/net/ppp.cppp->stats.rcomp++;
stats1115drivers/net/ppp.cppp->stats.rerrors++;
stats1119drivers/net/ppp.cppp->stats.runcomp++;
stats1262drivers/net/ppp.cppp->stats.rgiants++;
stats1277drivers/net/ppp.cppp->stats.rothers++;
stats1383drivers/net/ppp.c++ppp->stats.sothers;
stats1512drivers/net/ppp.cmemcpy_tofs ((void *) l, &ppp->stats, sizeof (struct ppp_stats));
stats1734drivers/net/ppp.cppp->stats.sbusy++;
stats1756drivers/net/ppp.c++ppp->stats.scomp;
stats1758drivers/net/ppp.c++ppp->stats.suncomp;
stats1860drivers/net/ppp.cppp_stats.rx_packets = ppp->stats.rcomp + ppp->stats.runcomp;
stats1861drivers/net/ppp.cppp_stats.rx_errors = ppp->stats.rerrors;
stats1862drivers/net/ppp.cppp_stats.rx_dropped = ppp->stats.tossed;
stats1864drivers/net/ppp.cppp_stats.rx_length_errors = ppp->stats.runts;
stats1865drivers/net/ppp.cppp_stats.rx_over_errors = ppp->stats.roverrun;
stats1868drivers/net/ppp.cppp_stats.tx_packets = ppp->stats.scomp + ppp->stats.suncomp;
stats1869drivers/net/ppp.cppp_stats.tx_errors = ppp->stats.serrors;
stats1872drivers/net/ppp.cppp_stats.collisions = ppp->stats.sbusy;
stats462drivers/net/sk_g16.cstruct enet_statistics stats; /* Device driver statistics */
stats1352drivers/net/sk_g16.cp->stats.rx_dropped++;
stats1422drivers/net/sk_g16.cp->stats.tx_aborted_errors++;   
stats1424drivers/net/sk_g16.cp->stats.tx_window_errors++; 
stats1426drivers/net/sk_g16.cp->stats.tx_carrier_errors++;
stats1429drivers/net/sk_g16.cp->stats.tx_fifo_errors++;
stats1439drivers/net/sk_g16.cp->stats.tx_errors++;
stats1457drivers/net/sk_g16.cp->stats.collisions++; 
stats1461drivers/net/sk_g16.cp->stats.tx_packets++; 
stats1540drivers/net/sk_g16.cp->stats.rx_errors++;        /* bad packet received */
stats1541drivers/net/sk_g16.cp->stats.rx_length_errors++; /* packet to long */
stats1561drivers/net/sk_g16.cp->stats.rx_errors++;
stats1563drivers/net/sk_g16.cif (rmdstat & RX_FRAM) p->stats.rx_frame_errors++;
stats1564drivers/net/sk_g16.cif (rmdstat & RX_CRC)  p->stats.rx_crc_errors++;
stats1588drivers/net/sk_g16.cp->stats.rx_dropped++;
stats1624drivers/net/sk_g16.cp->stats.rx_packets++;
stats1702drivers/net/sk_g16.creturn &p->stats;             /* Return Device status */
stats84drivers/net/skeleton.cstruct enet_statistics stats;
stats350drivers/net/skeleton.clp->stats.tx_aborted_errors++;
stats381drivers/net/skeleton.clp->stats.tx_packets++;
stats387drivers/net/skeleton.clp->stats.tx_window_errors++;
stats411drivers/net/skeleton.clp->stats.rx_errors++;
stats412drivers/net/skeleton.cif (status & 0x20) lp->stats.rx_frame_errors++;
stats413drivers/net/skeleton.cif (status & 0x10) lp->stats.rx_over_errors++;
stats414drivers/net/skeleton.cif (status & 0x08) lp->stats.rx_crc_errors++;
stats415drivers/net/skeleton.cif (status & 0x04) lp->stats.rx_fifo_errors++;
stats423drivers/net/skeleton.clp->stats.rx_dropped++;
stats436drivers/net/skeleton.clp->stats.rx_packets++;
stats486drivers/net/skeleton.clp->stats.rx_missed_errors = inw(ioaddr+1);
stats489drivers/net/skeleton.creturn &lp->stats;
stats736drivers/net/slip.cstatic struct enet_statistics stats;
stats746drivers/net/slip.cmemset(&stats, 0, sizeof(struct enet_statistics));
stats748drivers/net/slip.cstats.rx_packets = sl->rx_packets;
stats749drivers/net/slip.cstats.tx_packets = sl->tx_packets;
stats750drivers/net/slip.cstats.rx_dropped = sl->rx_dropped;
stats751drivers/net/slip.cstats.tx_dropped = sl->tx_dropped;
stats752drivers/net/slip.cstats.tx_errors   = sl->tx_errors;
stats753drivers/net/slip.cstats.rx_errors   = sl->rx_errors;
stats754drivers/net/slip.cstats.rx_over_errors = sl->rx_over_errors;
stats759drivers/net/slip.cstats.rx_fifo_errors = comp->sls_i_compressed;
stats760drivers/net/slip.cstats.rx_dropped += comp->sls_i_tossed;
stats761drivers/net/slip.cstats.tx_fifo_errors = comp->sls_o_compressed;
stats762drivers/net/slip.cstats.collisions = comp->sls_o_misses;
stats765drivers/net/slip.creturn (&stats);
stats125drivers/net/znet.cstruct enet_statistics stats;
stats445drivers/net/znet.clp->stats.tx_packets++;
stats446drivers/net/znet.clp->stats.collisions += tx_status & 0xf;
stats448drivers/net/znet.cif (tx_status & 0x0600)  lp->stats.tx_carrier_errors++;
stats449drivers/net/znet.cif (tx_status & 0x0100)  lp->stats.tx_fifo_errors++;
stats450drivers/net/znet.cif (!(tx_status & 0x0040)) lp->stats.tx_heartbeat_errors++;
stats451drivers/net/znet.cif (tx_status & 0x0020)  lp->stats.tx_aborted_errors++;
stats454drivers/net/znet.clp->stats.tx_errors++;
stats541drivers/net/znet.clp->stats.rx_errors++;
stats542drivers/net/znet.cif (status & 0x0800) lp->stats.rx_crc_errors++;
stats543drivers/net/znet.cif (status & 0x0400) lp->stats.rx_frame_errors++;
stats544drivers/net/znet.cif (status & 0x0200) lp->stats.rx_over_errors++; /* Wrong. */
stats545drivers/net/znet.cif (status & 0x0100) lp->stats.rx_fifo_errors++;
stats546drivers/net/znet.cif (status & 0x0080) lp->stats.rx_length_errors++;
stats548drivers/net/znet.clp->stats.rx_length_errors++;
stats557drivers/net/znet.clp->stats.rx_dropped++;
stats583drivers/net/znet.clp->stats.rx_dropped++;
stats587drivers/net/znet.clp->stats.rx_packets++;
stats635drivers/net/znet.creturn &lp->stats;
stats224include/linux/ppp.hstruct ppp_stats  stats;    /* statistic information  */
stats967net/inet/dev.cstruct enet_statistics *stats = (dev->get_stats ? dev->get_stats(dev): NULL);
stats970net/inet/dev.cif (stats)
stats973net/inet/dev.cstats->rx_packets, stats->rx_errors,
stats974net/inet/dev.cstats->rx_dropped + stats->rx_missed_errors,
stats975net/inet/dev.cstats->rx_fifo_errors,
stats976net/inet/dev.cstats->rx_length_errors + stats->rx_over_errors
stats977net/inet/dev.c+ stats->rx_crc_errors + stats->rx_frame_errors,
stats978net/inet/dev.cstats->tx_packets, stats->tx_errors, stats->tx_dropped,
stats979net/inet/dev.cstats->tx_fifo_errors, stats->collisions,
stats980net/inet/dev.cstats->tx_carrier_errors + stats->tx_aborted_errors
stats981net/inet/dev.c+ stats->tx_window_errors + stats->tx_heartbeat_errors);