taglinefilesource code
stats128drivers/net/3c501.cstruct enet_statistics stats;
stats337drivers/net/3c501.clp->stats.tx_errors++;
stats452drivers/net/3c501.clp->stats.tx_aborted_errors++;
stats462drivers/net/3c501.clp->stats.collisions++;
stats469drivers/net/3c501.clp->stats.tx_packets++;
stats494drivers/net/3c501.clp->stats.rx_missed_errors++;
stats496drivers/net/3c501.clp->stats.rx_length_errors++;
stats543drivers/net/3c501.clp->stats.rx_over_errors++;
stats560drivers/net/3c501.clp->stats.rx_dropped++;
stats575drivers/net/3c501.clp->stats.rx_packets++;
stats632drivers/net/3c501.creturn &lp->stats;
stats216drivers/net/3c505.cstruct enet_statistics stats;
stats596drivers/net/3c505.cadapter->stats.rx_dropped++;
stats767drivers/net/3c505.cadapter->stats.rx_packets += adapter->irx_pcb.data.netstat.tot_recv;
stats768drivers/net/3c505.cadapter->stats.tx_packets += adapter->irx_pcb.data.netstat.tot_xmit;
stats769drivers/net/3c505.cadapter->stats.rx_crc_errors += adapter->irx_pcb.data.netstat.err_CRC;
stats770drivers/net/3c505.cadapter->stats.rx_frame_errors += adapter->irx_pcb.data.netstat.err_align;
stats771drivers/net/3c505.cadapter->stats.rx_fifo_errors += adapter->irx_pcb.data.netstat.err_ovrrun;
stats1139drivers/net/3c505.creturn &adapter->stats;
stats1154drivers/net/3c505.creturn &adapter->stats;
stats1159drivers/net/3c505.creturn &adapter->stats;
stats1327drivers/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++;
stats168drivers/net/apricot.cstruct enet_statistics stats;
stats352drivers/net/apricot.clp->stats.rx_dropped++;
stats361drivers/net/apricot.clp->stats.rx_packets++;
stats367drivers/net/apricot.clp->stats.rx_errors++;
stats368drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0001) lp->stats.collisions++;
stats369drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0080) lp->stats.rx_length_errors++;
stats370drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0100) lp->stats.rx_over_errors++;
stats371drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0200) lp->stats.rx_fifo_errors++;
stats372drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0400) lp->stats.rx_frame_errors++;
stats373drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x0800) lp->stats.rx_crc_errors++;
stats374drivers/net/apricot.cif ((lp->scb.rfd->stat) & 0x1000) lp->stats.rx_length_errors++;
stats415drivers/net/apricot.clp->stats.tx_errors++;
stats416drivers/net/apricot.clp->stats.tx_aborted_errors++;
stats591drivers/net/apricot.clp->stats.tx_errors++;
stats593drivers/net/apricot.cif (lp->last_restart == lp->stats.tx_packets) {
stats605drivers/net/apricot.clp->last_restart = lp->stats.tx_packets;
stats637drivers/net/apricot.clp->stats.tx_dropped++;
stats659drivers/net/apricot.clp->stats.tx_packets++;
stats823drivers/net/apricot.clp->stats.tx_errors++;
stats824drivers/net/apricot.cif ((ptr->status) & 0x0020) lp->stats.collisions++;
stats825drivers/net/apricot.cif (!((ptr->status) & 0x0040)) lp->stats.tx_heartbeat_errors++;
stats826drivers/net/apricot.cif ((ptr->status) & 0x0400) lp->stats.tx_carrier_errors++;
stats827drivers/net/apricot.cif ((ptr->status) & 0x0800) lp->stats.collisions++;
stats828drivers/net/apricot.cif ((ptr->status) & 0x1000) lp->stats.tx_aborted_errors++;
stats962drivers/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;
stats424drivers/net/atp.clp->stats.tx_errors++;
stats519drivers/net/atp.clp->stats.rx_over_errors++;
stats539drivers/net/atp.clp->stats.collisions++;
stats541drivers/net/atp.clp->stats.tx_aborted_errors++;
stats550drivers/net/atp.clp->stats.tx_packets++;
stats569drivers/net/atp.clp->stats.rx_missed_errors++;
stats618drivers/net/atp.clp->stats.rx_errors++;
stats633drivers/net/atp.clp->stats.rx_dropped++;
stats651drivers/net/atp.clp->stats.rx_packets++;
stats709drivers/net/atp.creturn &lp->stats;
stats7drivers/net/atp.hstruct enet_statistics stats;
stats312drivers/net/depca.cstruct enet_statistics stats;
stats1050drivers/net/depca.clp->stats.rx_errors++;             /* Update the error stats. */
stats1051drivers/net/depca.cif (status & R_FRAM) lp->stats.rx_frame_errors++;
stats1052drivers/net/depca.cif (status & R_OFLO) lp->stats.rx_over_errors++;
stats1053drivers/net/depca.cif (status & R_CRC)  lp->stats.rx_crc_errors++;
stats1054drivers/net/depca.cif (status & R_BUFF) lp->stats.rx_fifo_errors++;
stats1062drivers/net/depca.clp->stats.rx_dropped++;  /* Really, deferred. */
stats1076drivers/net/depca.clp->stats.rx_packets++;
stats1124drivers/net/depca.clp->stats.tx_errors++;
stats1125drivers/net/depca.cif (err_status & TMD3_RTRY) lp->stats.tx_aborted_errors++;
stats1126drivers/net/depca.cif (err_status & TMD3_LCAR) lp->stats.tx_carrier_errors++;
stats1127drivers/net/depca.cif (err_status & TMD3_LCOL) lp->stats.tx_window_errors++;
stats1128drivers/net/depca.cif (err_status & TMD3_UFLO) lp->stats.tx_fifo_errors++;
stats1131drivers/net/depca.clp->stats.collisions++;
stats1133drivers/net/depca.clp->stats.tx_packets++;
stats1238drivers/net/depca.creturn &lp->stats;
stats110drivers/net/dummy.cstruct enet_statistics *stats;
stats119drivers/net/dummy.cstats = (struct enet_statistics *)dev->priv;
stats120drivers/net/dummy.cstats->tx_packets++;
stats130drivers/net/dummy.cstruct enet_statistics *stats = (struct enet_statistics*) dev->priv;
stats131drivers/net/dummy.creturn stats;
stats100drivers/net/eexpress.cstruct enet_statistics stats;
stats467drivers/net/eexpress.clp->stats.tx_errors++;
stats469drivers/net/eexpress.cif (lp->last_restart == lp->stats.tx_packets) {
stats478drivers/net/eexpress.clp->last_restart = lp->stats.tx_packets;
stats510drivers/net/eexpress.clp->stats.tx_aborted_errors++;
stats554drivers/net/eexpress.clp->stats.tx_packets++;
stats555drivers/net/eexpress.clp->stats.collisions += tx_status & 0xf;
stats559drivers/net/eexpress.clp->stats.tx_errors++;
stats560drivers/net/eexpress.cif (tx_status & 0x0600)  lp->stats.tx_carrier_errors++;
stats561drivers/net/eexpress.cif (tx_status & 0x0100)  lp->stats.tx_fifo_errors++;
stats562drivers/net/eexpress.cif (!(tx_status & 0x0040))  lp->stats.tx_heartbeat_errors++;
stats563drivers/net/eexpress.cif (tx_status & 0x0020)  lp->stats.tx_aborted_errors++;
stats606drivers/net/eexpress.clp->stats.rx_errors++;
stats678drivers/net/eexpress.creturn &lp->stats;
stats934drivers/net/eexpress.clp->stats.rx_errors++;
stats935drivers/net/eexpress.cif (frame_status & 0x0800) lp->stats.rx_crc_errors++;
stats936drivers/net/eexpress.cif (frame_status & 0x0400) lp->stats.rx_frame_errors++;
stats937drivers/net/eexpress.cif (frame_status & 0x0200) lp->stats.rx_fifo_errors++;
stats938drivers/net/eexpress.cif (frame_status & 0x0100) lp->stats.rx_over_errors++;
stats939drivers/net/eexpress.cif (frame_status & 0x0080) lp->stats.rx_length_errors++;
stats948drivers/net/eexpress.clp->stats.rx_dropped++;
stats959drivers/net/eexpress.clp->stats.rx_packets++;
stats263drivers/net/ewrk3.cstruct enet_statistics stats;       /* Public stats */
stats1030drivers/net/ewrk3.clp->stats.rx_errors++;            /* Update the error stats. */
stats1031drivers/net/ewrk3.cif (rx_status & DBE) lp->stats.rx_frame_errors++;
stats1032drivers/net/ewrk3.cif (rx_status & CRC) lp->stats.rx_crc_errors++;
stats1033drivers/net/ewrk3.cif (rx_status & PLL) lp->stats.rx_fifo_errors++;
stats1061drivers/net/ewrk3.clp->stats.rx_packets++;
stats1086drivers/net/ewrk3.clp->stats.rx_dropped++;        /* Really, deferred. */
stats1125drivers/net/ewrk3.clp->stats.tx_errors++;
stats1126drivers/net/ewrk3.cif (tx_status & MAC_NCL)    lp->stats.tx_carrier_errors++;
stats1127drivers/net/ewrk3.cif (tx_status & MAC_LCL)    lp->stats.tx_window_errors++;
stats1136drivers/net/ewrk3.clp->stats.collisions++;
stats1142drivers/net/ewrk3.clp->stats.tx_packets++;
stats1202drivers/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;
stats47drivers/net/loopback.cstruct enet_statistics *stats = (struct enet_statistics *)dev->priv;
stats55drivers/net/loopback.cstats->tx_errors++;
stats70drivers/net/loopback.cstats->tx_packets++;
stats212drivers/net/ni52.cstruct enet_statistics stats;
stats787drivers/net/ni52.cp->stats.rx_over_errors += l;
stats887drivers/net/ni52.cp->stats.rx_packets++;
stats899drivers/net/ni52.cp->stats.rx_errors++;
stats914drivers/net/ni52.cp->stats.rx_errors++;
stats941drivers/net/ni52.cp->stats.tx_packets++;
stats942drivers/net/ni52.cp->stats.collisions += (status & TCMD_MAXCOLLMASK);
stats948drivers/net/ni52.cp->stats.tx_errors++;
stats951drivers/net/ni52.cp->stats.collisions++;
stats954drivers/net/ni52.cp->stats.tx_carrier_errors++;
stats964drivers/net/ni52.cp->stats.collisions += 16;
stats1099drivers/net/ni52.creturn &p->stats;
stats139drivers/net/ni65.cstruct enet_statistics stats;
stats421drivers/net/ni65.cp->stats.tx_errors++;
stats423drivers/net/ni65.cp->stats.rx_errors++;
stats475drivers/net/ni65.cp->stats.tx_aborted_errors++;
stats477drivers/net/ni65.cp->stats.tx_carrier_errors++;
stats478drivers/net/ni65.cp->stats.tx_errors++;
stats482drivers/net/ni65.cp->stats.tx_packets++;
stats511drivers/net/ni65.cp->stats.rx_errors++;
stats512drivers/net/ni65.cp->stats.rx_length_errors++;
stats520drivers/net/ni65.cp->stats.rx_errors++;
stats521drivers/net/ni65.cif(rmdstat & RCV_FRAM) p->stats.rx_frame_errors++;
stats522drivers/net/ni65.cif(rmdstat & RCV_OFLO) p->stats.rx_over_errors++;
stats523drivers/net/ni65.cif(rmdstat & RCV_CRC)  p->stats.rx_crc_errors++;
stats546drivers/net/ni65.cp->stats.rx_packets++;
stats553drivers/net/ni65.cp->stats.rx_dropped++;
stats636drivers/net/ni65.creturn &((struct priv *) dev->priv)->stats;
stats283drivers/net/plip.cstruct enet_statistics *stats = (struct enet_statistics *) dev->priv;
stats309drivers/net/plip.cstats->rx_packets++;
stats384drivers/net/plip.cstats->tx_errors++;
stats385drivers/net/plip.cstats->tx_aborted_errors++;
stats393drivers/net/plip.cstats->rx_dropped++;
stats629drivers/net/plip.cstruct enet_statistics *stats = (struct enet_statistics *) dev->priv;
stats677drivers/net/plip.cstats->rx_crc_errors++;
stats802drivers/net/plip.cstruct enet_statistics *stats = (struct enet_statistics *) dev->priv;
stats811drivers/net/plip.cstats->collisions++;
stats867drivers/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;
stats461drivers/net/sk_g16.cstruct enet_statistics stats; /* Device driver statistics */
stats1351drivers/net/sk_g16.cp->stats.rx_dropped++;
stats1421drivers/net/sk_g16.cp->stats.tx_aborted_errors++;   
stats1423drivers/net/sk_g16.cp->stats.tx_window_errors++; 
stats1425drivers/net/sk_g16.cp->stats.tx_carrier_errors++;
stats1428drivers/net/sk_g16.cp->stats.tx_fifo_errors++;
stats1438drivers/net/sk_g16.cp->stats.tx_errors++;
stats1456drivers/net/sk_g16.cp->stats.collisions++; 
stats1460drivers/net/sk_g16.cp->stats.tx_packets++; 
stats1539drivers/net/sk_g16.cp->stats.rx_errors++;        /* bad packet received */
stats1540drivers/net/sk_g16.cp->stats.rx_length_errors++; /* packet to long */
stats1560drivers/net/sk_g16.cp->stats.rx_errors++;
stats1562drivers/net/sk_g16.cif (rmdstat & RX_FRAM) p->stats.rx_frame_errors++;
stats1563drivers/net/sk_g16.cif (rmdstat & RX_CRC)  p->stats.rx_crc_errors++;
stats1587drivers/net/sk_g16.cp->stats.rx_dropped++;
stats1623drivers/net/sk_g16.cp->stats.rx_packets++;
stats1701drivers/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;
stats752drivers/net/slip.cstatic struct enet_statistics stats;
stats758drivers/net/slip.cmemset(&stats, 0, sizeof(struct enet_statistics));
stats760drivers/net/slip.cstats.rx_packets     = sl->rx_packets;
stats761drivers/net/slip.cstats.tx_packets     = sl->tx_packets;
stats762drivers/net/slip.cstats.rx_dropped     = sl->rx_dropped;
stats763drivers/net/slip.cstats.tx_dropped     = sl->tx_dropped;
stats764drivers/net/slip.cstats.tx_errors      = sl->tx_errors;
stats765drivers/net/slip.cstats.rx_errors      = sl->rx_errors;
stats766drivers/net/slip.cstats.rx_over_errors = sl->rx_over_errors;
stats768drivers/net/slip.cstats.rx_fifo_errors = sl->rx_compressed;
stats769drivers/net/slip.cstats.tx_fifo_errors = sl->tx_compressed;
stats770drivers/net/slip.cstats.collisions     = sl->tx_misses;
stats773drivers/net/slip.cstats.rx_fifo_errors += comp->sls_i_compressed;
stats774drivers/net/slip.cstats.rx_dropped     += comp->sls_i_tossed;
stats775drivers/net/slip.cstats.tx_fifo_errors += comp->sls_o_compressed;
stats776drivers/net/slip.cstats.collisions     += comp->sls_o_misses;
stats779drivers/net/slip.creturn (&stats);
stats124drivers/net/znet.cstruct enet_statistics stats;
stats444drivers/net/znet.clp->stats.tx_packets++;
stats445drivers/net/znet.clp->stats.collisions += tx_status & 0xf;
stats447drivers/net/znet.cif (tx_status & 0x0600)  lp->stats.tx_carrier_errors++;
stats448drivers/net/znet.cif (tx_status & 0x0100)  lp->stats.tx_fifo_errors++;
stats449drivers/net/znet.cif (!(tx_status & 0x0040)) lp->stats.tx_heartbeat_errors++;
stats450drivers/net/znet.cif (tx_status & 0x0020)  lp->stats.tx_aborted_errors++;
stats453drivers/net/znet.clp->stats.tx_errors++;
stats540drivers/net/znet.clp->stats.rx_errors++;
stats541drivers/net/znet.cif (status & 0x0800) lp->stats.rx_crc_errors++;
stats542drivers/net/znet.cif (status & 0x0400) lp->stats.rx_frame_errors++;
stats543drivers/net/znet.cif (status & 0x0200) lp->stats.rx_over_errors++; /* Wrong. */
stats544drivers/net/znet.cif (status & 0x0100) lp->stats.rx_fifo_errors++;
stats545drivers/net/znet.cif (status & 0x0080) lp->stats.rx_length_errors++;
stats547drivers/net/znet.clp->stats.rx_length_errors++;
stats556drivers/net/znet.clp->stats.rx_dropped++;
stats582drivers/net/znet.clp->stats.rx_dropped++;
stats586drivers/net/znet.clp->stats.rx_packets++;
stats634drivers/net/znet.creturn &lp->stats;
stats224include/linux/ppp.hstruct ppp_stats  stats;    /* statistic information  */
stats888net/inet/dev.cstruct enet_statistics *stats = (dev->get_stats ? dev->get_stats(dev): NULL);
stats891net/inet/dev.cif (stats)
stats894net/inet/dev.cstats->rx_packets, stats->rx_errors,
stats895net/inet/dev.cstats->rx_dropped + stats->rx_missed_errors,
stats896net/inet/dev.cstats->rx_fifo_errors,
stats897net/inet/dev.cstats->rx_length_errors + stats->rx_over_errors
stats898net/inet/dev.c+ stats->rx_crc_errors + stats->rx_frame_errors,
stats899net/inet/dev.cstats->tx_packets, stats->tx_errors, stats->tx_dropped,
stats900net/inet/dev.cstats->tx_fifo_errors, stats->collisions,
stats901net/inet/dev.cstats->tx_carrier_errors + stats->tx_aborted_errors
stats902net/inet/dev.c+ stats->tx_window_errors + stats->tx_heartbeat_errors);