tag | line | file | source code |
stats | 138 | drivers/block/cm206.c | #define stats(i) ++cd->stats[st_ ## i]; \ |
stats | 179 | drivers/block/cm206.c | int stats[NR_STATS]; |
stats | 251 | drivers/block/cm206.c | stats(data_ready); |
stats | 265 | drivers/block/cm206.c | stats(fifo_overflow); |
stats | 269 | drivers/block/cm206.c | stats(data_error); |
stats | 273 | drivers/block/cm206.c | stats(crc_error); |
stats | 277 | drivers/block/cm206.c | stats(sync_error); |
stats | 285 | drivers/block/cm206.c | stats(lost_intr); |
stats | 290 | drivers/block/cm206.c | stats(interrupt); |
stats | 332 | drivers/block/cm206.c | stats(write_timeout); |
stats | 344 | drivers/block/cm206.c | stats(receive_timeout); |
stats | 361 | drivers/block/cm206.c | stats(dsb_timeout); |
stats | 372 | drivers/block/cm206.c | stats(echo); |
stats | 426 | drivers/block/cm206.c | stats(echo); |
stats | 437 | drivers/block/cm206.c | stats(stop_0xff); |
stats | 470 | drivers/block/cm206.c | stats(read_timeout); |
stats | 475 | drivers/block/cm206.c | if (read_background(start+READ_AHEAD,1)) stats(read_background); |
stats | 477 | drivers/block/cm206.c | stats(read_restarted); |
stats | 496 | drivers/block/cm206.c | stats(bh); |
stats | 513 | drivers/block/cm206.c | stats(echo); |
stats | 520 | drivers/block/cm206.c | stats(stop_0xff); |
stats | 574 | drivers/block/cm206.c | stats(open); |
stats | 604 | drivers/block/cm206.c | stats(sector_transferred); |
stats | 628 | drivers/block/cm206.c | stats(back_read_timeout); |
stats | 900 | drivers/block/cm206.c | else return cd->stats[arg]; |
stats | 908 | drivers/block/cm206.c | stats(ioctl_multisession); |
stats | 140 | drivers/net/3c501.c | struct enet_statistics stats; |
stats | 348 | drivers/net/3c501.c | lp->stats.tx_errors++; |
stats | 474 | drivers/net/3c501.c | lp->stats.tx_aborted_errors++; |
stats | 484 | drivers/net/3c501.c | lp->stats.collisions++; |
stats | 491 | drivers/net/3c501.c | lp->stats.tx_packets++; |
stats | 516 | drivers/net/3c501.c | lp->stats.rx_missed_errors++; |
stats | 518 | drivers/net/3c501.c | lp->stats.rx_length_errors++; |
stats | 565 | drivers/net/3c501.c | lp->stats.rx_over_errors++; |
stats | 582 | drivers/net/3c501.c | lp->stats.rx_dropped++; |
stats | 597 | drivers/net/3c501.c | lp->stats.rx_packets++; |
stats | 652 | drivers/net/3c501.c | return &lp->stats; |
stats | 190 | drivers/net/3c505.c | struct enet_statistics stats; |
stats | 587 | drivers/net/3c505.c | adapter->stats.rx_dropped++; |
stats | 752 | drivers/net/3c505.c | adapter->stats.rx_packets += adapter->irx_pcb.data.netstat.tot_recv; |
stats | 753 | drivers/net/3c505.c | adapter->stats.tx_packets += adapter->irx_pcb.data.netstat.tot_xmit; |
stats | 754 | drivers/net/3c505.c | adapter->stats.rx_crc_errors += adapter->irx_pcb.data.netstat.err_CRC; |
stats | 755 | drivers/net/3c505.c | adapter->stats.rx_frame_errors += adapter->irx_pcb.data.netstat.err_align; |
stats | 756 | drivers/net/3c505.c | adapter->stats.rx_fifo_errors += adapter->irx_pcb.data.netstat.err_ovrrun; |
stats | 1078 | drivers/net/3c505.c | return &adapter->stats; |
stats | 1092 | drivers/net/3c505.c | return &adapter->stats; |
stats | 1097 | drivers/net/3c505.c | return &adapter->stats; |
stats | 1245 | drivers/net/3c505.c | memset(&(adapter->stats), 0, sizeof(struct enet_statistics)); |
stats | 120 | drivers/net/3c507.c | struct enet_statistics stats; |
stats | 464 | drivers/net/3c507.c | if (lp->last_restart == lp->stats.tx_packets) { |
stats | 473 | drivers/net/3c507.c | lp->last_restart = lp->stats.tx_packets; |
stats | 548 | drivers/net/3c507.c | lp->stats.tx_packets++; |
stats | 549 | drivers/net/3c507.c | lp->stats.collisions += tx_status & 0xf; |
stats | 553 | drivers/net/3c507.c | lp->stats.tx_errors++; |
stats | 554 | drivers/net/3c507.c | if (tx_status & 0x0600) lp->stats.tx_carrier_errors++; |
stats | 555 | drivers/net/3c507.c | if (tx_status & 0x0100) lp->stats.tx_fifo_errors++; |
stats | 556 | drivers/net/3c507.c | if (!(tx_status & 0x0040)) lp->stats.tx_heartbeat_errors++; |
stats | 557 | drivers/net/3c507.c | if (tx_status & 0x0020) lp->stats.tx_aborted_errors++; |
stats | 646 | drivers/net/3c507.c | return &lp->stats; |
stats | 827 | drivers/net/3c507.c | lp->stats.rx_errors++; |
stats | 828 | drivers/net/3c507.c | if (frame_status & 0x0800) lp->stats.rx_crc_errors++; |
stats | 829 | drivers/net/3c507.c | if (frame_status & 0x0400) lp->stats.rx_frame_errors++; |
stats | 830 | drivers/net/3c507.c | if (frame_status & 0x0200) lp->stats.rx_fifo_errors++; |
stats | 831 | drivers/net/3c507.c | if (frame_status & 0x0100) lp->stats.rx_over_errors++; |
stats | 832 | drivers/net/3c507.c | if (frame_status & 0x0080) lp->stats.rx_length_errors++; |
stats | 841 | drivers/net/3c507.c | lp->stats.rx_dropped++; |
stats | 853 | drivers/net/3c507.c | lp->stats.rx_packets++; |
stats | 98 | drivers/net/3c509.c | struct enet_statistics stats; |
stats | 452 | drivers/net/3c509.c | if (tx_status & 0x38) lp->stats.tx_aborted_errors++; |
stats | 532 | drivers/net/3c509.c | return &lp->stats; |
stats | 550 | drivers/net/3c509.c | lp->stats.tx_carrier_errors += inb(ioaddr + 0); |
stats | 551 | drivers/net/3c509.c | lp->stats.tx_heartbeat_errors += inb(ioaddr + 1); |
stats | 553 | drivers/net/3c509.c | lp->stats.collisions += inb(ioaddr + 3); |
stats | 554 | drivers/net/3c509.c | lp->stats.tx_window_errors += inb(ioaddr + 4); |
stats | 555 | drivers/net/3c509.c | lp->stats.rx_fifo_errors += inb(ioaddr + 5); |
stats | 556 | drivers/net/3c509.c | lp->stats.tx_packets += inb(ioaddr + 6); |
stats | 581 | drivers/net/3c509.c | lp->stats.rx_errors++; |
stats | 583 | drivers/net/3c509.c | case 0x0000: lp->stats.rx_over_errors++; break; |
stats | 584 | drivers/net/3c509.c | case 0x0800: lp->stats.rx_length_errors++; break; |
stats | 585 | drivers/net/3c509.c | case 0x1000: lp->stats.rx_frame_errors++; break; |
stats | 586 | drivers/net/3c509.c | case 0x1800: lp->stats.rx_length_errors++; break; |
stats | 587 | drivers/net/3c509.c | case 0x2000: lp->stats.rx_frame_errors++; break; |
stats | 588 | drivers/net/3c509.c | case 0x2800: lp->stats.rx_crc_errors++; break; |
stats | 609 | drivers/net/3c509.c | lp->stats.rx_packets++; |
stats | 615 | drivers/net/3c509.c | lp->stats.rx_dropped++; |
stats | 168 | drivers/net/apricot.c | struct enet_statistics stats; |
stats | 352 | drivers/net/apricot.c | lp->stats.rx_dropped++; |
stats | 361 | drivers/net/apricot.c | lp->stats.rx_packets++; |
stats | 367 | drivers/net/apricot.c | lp->stats.rx_errors++; |
stats | 368 | drivers/net/apricot.c | if ((lp->scb.rfd->stat) & 0x0001) lp->stats.collisions++; |
stats | 369 | drivers/net/apricot.c | if ((lp->scb.rfd->stat) & 0x0080) lp->stats.rx_length_errors++; |
stats | 370 | drivers/net/apricot.c | if ((lp->scb.rfd->stat) & 0x0100) lp->stats.rx_over_errors++; |
stats | 371 | drivers/net/apricot.c | if ((lp->scb.rfd->stat) & 0x0200) lp->stats.rx_fifo_errors++; |
stats | 372 | drivers/net/apricot.c | if ((lp->scb.rfd->stat) & 0x0400) lp->stats.rx_frame_errors++; |
stats | 373 | drivers/net/apricot.c | if ((lp->scb.rfd->stat) & 0x0800) lp->stats.rx_crc_errors++; |
stats | 374 | drivers/net/apricot.c | if ((lp->scb.rfd->stat) & 0x1000) lp->stats.rx_length_errors++; |
stats | 415 | drivers/net/apricot.c | lp->stats.tx_errors++; |
stats | 416 | drivers/net/apricot.c | lp->stats.tx_aborted_errors++; |
stats | 591 | drivers/net/apricot.c | lp->stats.tx_errors++; |
stats | 593 | drivers/net/apricot.c | if (lp->last_restart == lp->stats.tx_packets) { |
stats | 605 | drivers/net/apricot.c | lp->last_restart = lp->stats.tx_packets; |
stats | 637 | drivers/net/apricot.c | lp->stats.tx_dropped++; |
stats | 659 | drivers/net/apricot.c | lp->stats.tx_packets++; |
stats | 823 | drivers/net/apricot.c | lp->stats.tx_errors++; |
stats | 824 | drivers/net/apricot.c | if ((ptr->status) & 0x0020) lp->stats.collisions++; |
stats | 825 | drivers/net/apricot.c | if (!((ptr->status) & 0x0040)) lp->stats.tx_heartbeat_errors++; |
stats | 826 | drivers/net/apricot.c | if ((ptr->status) & 0x0400) lp->stats.tx_carrier_errors++; |
stats | 827 | drivers/net/apricot.c | if ((ptr->status) & 0x0800) lp->stats.collisions++; |
stats | 828 | drivers/net/apricot.c | if ((ptr->status) & 0x1000) lp->stats.tx_aborted_errors++; |
stats | 962 | drivers/net/apricot.c | return &lp->stats; |
stats | 403 | drivers/net/arcnet.c | struct enet_statistics stats; |
stats | 1065 | drivers/net/arcnet.c | lp->stats.tx_errors++; |
stats | 1078 | drivers/net/arcnet.c | lp->stats.tx_dropped++; |
stats | 1115 | drivers/net/arcnet.c | lp->stats.tx_errors++; |
stats | 1232 | drivers/net/arcnet.c | lp->stats.tx_packets++; |
stats | 1634 | drivers/net/arcnet.c | lp->stats.tx_carrier_errors++; |
stats | 1677 | drivers/net/arcnet.c | lp->stats.tx_errors++; |
stats | 1796 | drivers/net/arcnet.c | lp->stats.rx_errors++; |
stats | 1904 | drivers/net/arcnet.c | lp->stats.tx_dropped++; |
stats | 1905 | drivers/net/arcnet.c | lp->stats.rx_errors++; |
stats | 1914 | drivers/net/arcnet.c | lp->stats.rx_dropped++; |
stats | 1960 | drivers/net/arcnet.c | lp->stats.rx_frame_errors++; |
stats | 1978 | drivers/net/arcnet.c | lp->stats.rx_packets++; |
stats | 2011 | drivers/net/arcnet.c | lp->stats.tx_dropped++; |
stats | 2012 | drivers/net/arcnet.c | lp->stats.rx_fifo_errors++; |
stats | 2025 | drivers/net/arcnet.c | lp->stats.tx_dropped++; |
stats | 2026 | drivers/net/arcnet.c | lp->stats.rx_over_errors++; |
stats | 2038 | drivers/net/arcnet.c | lp->stats.rx_dropped++; |
stats | 2048 | drivers/net/arcnet.c | lp->stats.rx_dropped++; |
stats | 2078 | drivers/net/arcnet.c | lp->stats.rx_errors++; |
stats | 2099 | drivers/net/arcnet.c | lp->stats.tx_dropped++; |
stats | 2100 | drivers/net/arcnet.c | lp->stats.rx_fifo_errors++; |
stats | 2142 | drivers/net/arcnet.c | lp->stats.rx_packets++; |
stats | 2164 | drivers/net/arcnet.c | lp->stats.rx_dropped++; |
stats | 2190 | drivers/net/arcnet.c | lp->stats.rx_packets++; |
stats | 2210 | drivers/net/arcnet.c | return &lp->stats; |
stats | 2379 | drivers/net/arcnet.c | lp->stats.rx_frame_errors++; |
stats | 72 | drivers/net/at1700.c | struct enet_statistics stats; |
stats | 381 | drivers/net/at1700.c | lp->stats.tx_errors++; |
stats | 467 | drivers/net/at1700.c | lp->stats.tx_packets++; |
stats | 512 | drivers/net/at1700.c | lp->stats.rx_errors++; |
stats | 513 | drivers/net/at1700.c | if (status & 0x08) lp->stats.rx_length_errors++; |
stats | 514 | drivers/net/at1700.c | if (status & 0x04) lp->stats.rx_frame_errors++; |
stats | 515 | drivers/net/at1700.c | if (status & 0x02) lp->stats.rx_crc_errors++; |
stats | 516 | drivers/net/at1700.c | if (status & 0x01) lp->stats.rx_over_errors++; |
stats | 527 | drivers/net/at1700.c | lp->stats.rx_errors++; |
stats | 537 | drivers/net/at1700.c | lp->stats.rx_dropped++; |
stats | 546 | drivers/net/at1700.c | lp->stats.rx_packets++; |
stats | 602 | drivers/net/at1700.c | return &lp->stats; |
stats | 428 | drivers/net/atp.c | lp->stats.tx_errors++; |
stats | 522 | drivers/net/atp.c | lp->stats.rx_over_errors++; |
stats | 542 | drivers/net/atp.c | lp->stats.collisions++; |
stats | 544 | drivers/net/atp.c | lp->stats.tx_aborted_errors++; |
stats | 553 | drivers/net/atp.c | lp->stats.tx_packets++; |
stats | 572 | drivers/net/atp.c | lp->stats.rx_missed_errors++; |
stats | 625 | drivers/net/atp.c | lp->stats.tx_errors++; |
stats | 627 | drivers/net/atp.c | lp->stats.tx_dropped++; |
stats | 629 | drivers/net/atp.c | lp->stats.collisions++; |
stats | 631 | drivers/net/atp.c | lp->stats.rx_errors++; |
stats | 661 | drivers/net/atp.c | lp->stats.rx_errors++; |
stats | 676 | drivers/net/atp.c | lp->stats.rx_dropped++; |
stats | 694 | drivers/net/atp.c | lp->stats.rx_packets++; |
stats | 752 | drivers/net/atp.c | return &lp->stats; |
stats | 7 | drivers/net/atp.h | struct enet_statistics stats; |
stats | 364 | drivers/net/de4x5.c | struct enet_statistics stats; /* Public stats */ |
stats | 1148 | drivers/net/de4x5.c | lp->stats.rx_errors++; /* Update the error stats. */ |
stats | 1149 | drivers/net/de4x5.c | if (status & (RD_RF | RD_TL)) lp->stats.rx_frame_errors++; |
stats | 1150 | drivers/net/de4x5.c | if (status & RD_CE) lp->stats.rx_crc_errors++; |
stats | 1151 | drivers/net/de4x5.c | if (status & RD_OF) lp->stats.rx_fifo_errors++; |
stats | 1173 | drivers/net/de4x5.c | lp->stats.rx_packets++; |
stats | 1198 | drivers/net/de4x5.c | lp->stats.rx_dropped++; /* Really, deferred. */ |
stats | 1237 | drivers/net/de4x5.c | lp->stats.tx_errors++; |
stats | 1238 | drivers/net/de4x5.c | if (status & TD_NC) lp->stats.tx_carrier_errors++; |
stats | 1239 | drivers/net/de4x5.c | if (status & TD_LC) lp->stats.tx_window_errors++; |
stats | 1240 | drivers/net/de4x5.c | if (status & TD_UF) lp->stats.tx_fifo_errors++; |
stats | 1241 | drivers/net/de4x5.c | if (status & TD_LC) lp->stats.collisions++; |
stats | 1243 | drivers/net/de4x5.c | if (status & TD_DE) lp->stats.tx_aborted_errors++; |
stats | 1255 | drivers/net/de4x5.c | lp->stats.tx_packets++; |
stats | 1362 | drivers/net/de4x5.c | lp->stats.rx_missed_errors = (int) (inl(DE4X5_MFC) & (MFC_OVFL | MFC_CNTR)); |
stats | 1364 | drivers/net/de4x5.c | return &lp->stats; |
stats | 337 | drivers/net/depca.c | struct enet_statistics stats; |
stats | 937 | drivers/net/depca.c | lp->stats.rx_errors++; /* Update the error stats. */ |
stats | 938 | drivers/net/depca.c | if (status & R_FRAM) lp->stats.rx_frame_errors++; |
stats | 939 | drivers/net/depca.c | if (status & R_OFLO) lp->stats.rx_over_errors++; |
stats | 940 | drivers/net/depca.c | if (status & R_CRC) lp->stats.rx_crc_errors++; |
stats | 941 | drivers/net/depca.c | if (status & R_BUFF) lp->stats.rx_fifo_errors++; |
stats | 970 | drivers/net/depca.c | lp->stats.rx_packets++; |
stats | 994 | drivers/net/depca.c | lp->stats.rx_dropped++; /* Really, deferred. */ |
stats | 1033 | drivers/net/depca.c | lp->stats.tx_errors++; |
stats | 1034 | drivers/net/depca.c | if (status & TMD3_RTRY) lp->stats.tx_aborted_errors++; |
stats | 1035 | drivers/net/depca.c | if (status & TMD3_LCAR) lp->stats.tx_carrier_errors++; |
stats | 1036 | drivers/net/depca.c | if (status & TMD3_LCOL) lp->stats.tx_window_errors++; |
stats | 1037 | drivers/net/depca.c | if (status & TMD3_UFLO) lp->stats.tx_fifo_errors++; |
stats | 1044 | drivers/net/depca.c | lp->stats.collisions++; |
stats | 1046 | drivers/net/depca.c | lp->stats.tx_packets++; |
stats | 1154 | drivers/net/depca.c | return &lp->stats; |
stats | 110 | drivers/net/dummy.c | struct enet_statistics *stats; |
stats | 119 | drivers/net/dummy.c | stats = (struct enet_statistics *)dev->priv; |
stats | 120 | drivers/net/dummy.c | stats->tx_packets++; |
stats | 130 | drivers/net/dummy.c | struct enet_statistics *stats = (struct enet_statistics*) dev->priv; |
stats | 131 | drivers/net/dummy.c | return stats; |
stats | 125 | drivers/net/eepro.c | struct enet_statistics stats; |
stats | 621 | drivers/net/eepro.c | lp->stats.tx_errors++; |
stats | 782 | drivers/net/eepro.c | return &lp->stats; |
stats | 1052 | drivers/net/eepro.c | lp->stats.rx_dropped++; |
stats | 1062 | drivers/net/eepro.c | lp->stats.rx_packets++; |
stats | 1066 | drivers/net/eepro.c | lp->stats.rx_errors++; |
stats | 1068 | drivers/net/eepro.c | lp->stats.rx_over_errors++; |
stats | 1070 | drivers/net/eepro.c | lp->stats.rx_frame_errors++; |
stats | 1072 | drivers/net/eepro.c | lp->stats.rx_crc_errors++; |
stats | 1077 | drivers/net/eepro.c | lp->stats.rx_length_errors++; |
stats | 1117 | drivers/net/eepro.c | lp->stats.tx_packets++; |
stats | 1119 | drivers/net/eepro.c | lp->stats.tx_errors++; |
stats | 1121 | drivers/net/eepro.c | lp->stats.tx_carrier_errors++; |
stats | 1126 | drivers/net/eepro.c | lp->stats.collisions += (xmt_status & 0x000f); |
stats | 1128 | drivers/net/eepro.c | lp->stats.tx_heartbeat_errors++; |
stats | 100 | drivers/net/eexpress.c | struct enet_statistics stats; |
stats | 467 | drivers/net/eexpress.c | lp->stats.tx_errors++; |
stats | 469 | drivers/net/eexpress.c | if (lp->last_restart == lp->stats.tx_packets) { |
stats | 478 | drivers/net/eexpress.c | lp->last_restart = lp->stats.tx_packets; |
stats | 510 | drivers/net/eexpress.c | lp->stats.tx_aborted_errors++; |
stats | 553 | drivers/net/eexpress.c | lp->stats.tx_packets++; |
stats | 554 | drivers/net/eexpress.c | lp->stats.collisions += tx_status & 0xf; |
stats | 558 | drivers/net/eexpress.c | lp->stats.tx_errors++; |
stats | 559 | drivers/net/eexpress.c | if (tx_status & 0x0600) lp->stats.tx_carrier_errors++; |
stats | 560 | drivers/net/eexpress.c | if (tx_status & 0x0100) lp->stats.tx_fifo_errors++; |
stats | 561 | drivers/net/eexpress.c | if (!(tx_status & 0x0040)) lp->stats.tx_heartbeat_errors++; |
stats | 562 | drivers/net/eexpress.c | if (tx_status & 0x0020) lp->stats.tx_aborted_errors++; |
stats | 605 | drivers/net/eexpress.c | lp->stats.rx_errors++; |
stats | 677 | drivers/net/eexpress.c | return &lp->stats; |
stats | 933 | drivers/net/eexpress.c | lp->stats.rx_errors++; |
stats | 934 | drivers/net/eexpress.c | if (frame_status & 0x0800) lp->stats.rx_crc_errors++; |
stats | 935 | drivers/net/eexpress.c | if (frame_status & 0x0400) lp->stats.rx_frame_errors++; |
stats | 936 | drivers/net/eexpress.c | if (frame_status & 0x0200) lp->stats.rx_fifo_errors++; |
stats | 937 | drivers/net/eexpress.c | if (frame_status & 0x0100) lp->stats.rx_over_errors++; |
stats | 938 | drivers/net/eexpress.c | if (frame_status & 0x0080) lp->stats.rx_length_errors++; |
stats | 947 | drivers/net/eexpress.c | lp->stats.rx_dropped++; |
stats | 959 | drivers/net/eexpress.c | lp->stats.rx_packets++; |
stats | 220 | drivers/net/eql.c | eql->stats = kmalloc (sizeof (struct enet_statistics), GFP_KERNEL); |
stats | 221 | drivers/net/eql.c | memset (eql->stats, 0, sizeof (struct enet_statistics)); |
stats | 371 | drivers/net/eql.c | eql->stats->tx_packets++; |
stats | 379 | drivers/net/eql.c | eql->stats->tx_dropped++; |
stats | 392 | drivers/net/eql.c | return eql->stats; |
stats | 264 | drivers/net/ewrk3.c | struct enet_statistics stats; /* Public stats */ |
stats | 1031 | drivers/net/ewrk3.c | lp->stats.rx_errors++; /* Update the error stats. */ |
stats | 1032 | drivers/net/ewrk3.c | if (rx_status & DBE) lp->stats.rx_frame_errors++; |
stats | 1033 | drivers/net/ewrk3.c | if (rx_status & CRC) lp->stats.rx_crc_errors++; |
stats | 1034 | drivers/net/ewrk3.c | if (rx_status & PLL) lp->stats.rx_fifo_errors++; |
stats | 1064 | drivers/net/ewrk3.c | lp->stats.rx_packets++; |
stats | 1089 | drivers/net/ewrk3.c | lp->stats.rx_dropped++; /* Really, deferred. */ |
stats | 1128 | drivers/net/ewrk3.c | lp->stats.tx_errors++; |
stats | 1129 | drivers/net/ewrk3.c | if (tx_status & MAC_NCL) lp->stats.tx_carrier_errors++; |
stats | 1130 | drivers/net/ewrk3.c | if (tx_status & MAC_LCL) lp->stats.tx_window_errors++; |
stats | 1139 | drivers/net/ewrk3.c | lp->stats.collisions++; |
stats | 1145 | drivers/net/ewrk3.c | lp->stats.tx_packets++; |
stats | 1205 | drivers/net/ewrk3.c | return &lp->stats; |
stats | 125 | drivers/net/hp100.c | struct enet_statistics stats; |
stats | 548 | drivers/net/hp100.c | lp -> stats.tx_packets++; |
stats | 612 | drivers/net/hp100.c | lp -> stats.rx_dropped++; |
stats | 620 | drivers/net/hp100.c | lp -> stats.rx_packets++; |
stats | 626 | drivers/net/hp100.c | lp -> stats.multicast++; break; |
stats | 645 | drivers/net/hp100.c | return &((struct hp100_private *)dev -> priv) -> stats; |
stats | 656 | drivers/net/hp100.c | lp -> stats.rx_errors += val; |
stats | 657 | drivers/net/hp100.c | lp -> stats.rx_over_errors += val; |
stats | 659 | drivers/net/hp100.c | lp -> stats.rx_errors += val; |
stats | 660 | drivers/net/hp100.c | lp -> stats.rx_crc_errors += val; |
stats | 662 | drivers/net/hp100.c | lp -> stats.tx_errors += val; |
stats | 663 | drivers/net/hp100.c | lp -> stats.tx_aborted_errors += val; |
stats | 206 | drivers/net/lance.c | struct enet_statistics stats; |
stats | 727 | drivers/net/lance.c | lp->stats.tx_errors++; |
stats | 884 | drivers/net/lance.c | lp->stats.tx_errors++; |
stats | 885 | drivers/net/lance.c | if (err_status & 0x0400) lp->stats.tx_aborted_errors++; |
stats | 886 | drivers/net/lance.c | if (err_status & 0x0800) lp->stats.tx_carrier_errors++; |
stats | 887 | drivers/net/lance.c | if (err_status & 0x1000) lp->stats.tx_window_errors++; |
stats | 890 | drivers/net/lance.c | lp->stats.tx_fifo_errors++; |
stats | 899 | drivers/net/lance.c | lp->stats.collisions++; |
stats | 900 | drivers/net/lance.c | lp->stats.tx_packets++; |
stats | 932 | drivers/net/lance.c | if (csr0 & 0x4000) lp->stats.tx_errors++; /* Tx babble. */ |
stats | 933 | drivers/net/lance.c | if (csr0 & 0x1000) lp->stats.rx_errors++; /* Missed a Rx frame. */ |
stats | 979 | drivers/net/lance.c | lp->stats.rx_errors++; /* end of a packet.*/ |
stats | 980 | drivers/net/lance.c | if (status & 0x20) lp->stats.rx_frame_errors++; |
stats | 981 | drivers/net/lance.c | if (status & 0x10) lp->stats.rx_over_errors++; |
stats | 982 | drivers/net/lance.c | if (status & 0x08) lp->stats.rx_crc_errors++; |
stats | 983 | drivers/net/lance.c | if (status & 0x04) lp->stats.rx_fifo_errors++; |
stats | 998 | drivers/net/lance.c | lp->stats.rx_dropped++; |
stats | 1012 | drivers/net/lance.c | lp->stats.rx_packets++; |
stats | 1039 | drivers/net/lance.c | lp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA); |
stats | 1074 | drivers/net/lance.c | lp->stats.rx_missed_errors = inw(ioaddr+LANCE_DATA); |
stats | 1079 | drivers/net/lance.c | return &lp->stats; |
stats | 49 | drivers/net/loopback.c | struct enet_statistics *stats = (struct enet_statistics *)dev->priv; |
stats | 61 | drivers/net/loopback.c | stats->tx_errors++; |
stats | 103 | drivers/net/loopback.c | stats->tx_packets++; |
stats | 104 | drivers/net/loopback.c | stats->rx_packets++; |
stats | 183 | drivers/net/ni52.c | struct enet_statistics stats; |
stats | 814 | drivers/net/ni52.c | p->stats.rx_packets++; |
stats | 817 | drivers/net/ni52.c | p->stats.rx_dropped++; |
stats | 822 | drivers/net/ni52.c | p->stats.rx_dropped++; |
stats | 828 | drivers/net/ni52.c | p->stats.rx_errors++; |
stats | 846 | drivers/net/ni52.c | p->stats.rx_errors++; |
stats | 875 | drivers/net/ni52.c | p->stats.tx_packets++; |
stats | 876 | drivers/net/ni52.c | p->stats.collisions += (status & TCMD_MAXCOLLMASK); |
stats | 880 | drivers/net/ni52.c | p->stats.tx_errors++; |
stats | 883 | drivers/net/ni52.c | p->stats.collisions++; |
stats | 886 | drivers/net/ni52.c | p->stats.tx_carrier_errors++; |
stats | 892 | drivers/net/ni52.c | p->stats.tx_fifo_errors++; |
stats | 897 | drivers/net/ni52.c | p->stats.collisions += 16; |
stats | 1069 | drivers/net/ni52.c | p->stats.rx_crc_errors += crc; |
stats | 1070 | drivers/net/ni52.c | p->stats.rx_fifo_errors += ovrn; |
stats | 1071 | drivers/net/ni52.c | p->stats.rx_frame_errors += aln; |
stats | 1072 | drivers/net/ni52.c | p->stats.rx_dropped += rsc; |
stats | 1074 | drivers/net/ni52.c | return &p->stats; |
stats | 139 | drivers/net/ni65.c | struct enet_statistics stats; |
stats | 420 | drivers/net/ni65.c | p->stats.tx_errors++; |
stats | 422 | drivers/net/ni65.c | p->stats.rx_errors++; |
stats | 474 | drivers/net/ni65.c | p->stats.tx_aborted_errors++; |
stats | 476 | drivers/net/ni65.c | p->stats.tx_carrier_errors++; |
stats | 477 | drivers/net/ni65.c | p->stats.tx_errors++; |
stats | 481 | drivers/net/ni65.c | p->stats.tx_packets++; |
stats | 510 | drivers/net/ni65.c | p->stats.rx_errors++; |
stats | 511 | drivers/net/ni65.c | p->stats.rx_length_errors++; |
stats | 519 | drivers/net/ni65.c | p->stats.rx_errors++; |
stats | 520 | drivers/net/ni65.c | if(rmdstat & RCV_FRAM) p->stats.rx_frame_errors++; |
stats | 521 | drivers/net/ni65.c | if(rmdstat & RCV_OFLO) p->stats.rx_over_errors++; |
stats | 522 | drivers/net/ni65.c | if(rmdstat & RCV_CRC) p->stats.rx_crc_errors++; |
stats | 544 | drivers/net/ni65.c | p->stats.rx_packets++; |
stats | 552 | drivers/net/ni65.c | p->stats.rx_dropped++; |
stats | 635 | drivers/net/ni65.c | return &((struct priv *) dev->priv)->stats; |
stats | 214 | drivers/net/pi2.c | lp->stats.tx_packets++; |
stats | 532 | drivers/net/pi2.c | lp->stats.rx_crc_errors++; |
stats | 535 | drivers/net/pi2.c | lp->stats.rx_errors++; |
stats | 536 | drivers/net/pi2.c | lp->stats.rx_over_errors++; |
stats | 558 | drivers/net/pi2.c | lp->stats.rx_dropped++; |
stats | 574 | drivers/net/pi2.c | lp->stats.rx_packets++; |
stats | 608 | drivers/net/pi2.c | lp->stats.rx_errors++; |
stats | 609 | drivers/net/pi2.c | lp->stats.rx_over_errors++; |
stats | 633 | drivers/net/pi2.c | lp->stats.rx_crc_errors++; |
stats | 647 | drivers/net/pi2.c | lp->stats.rx_dropped++; |
stats | 661 | drivers/net/pi2.c | lp->stats.rx_packets++; |
stats | 744 | drivers/net/pi2.c | lp->stats.tx_errors++; |
stats | 745 | drivers/net/pi2.c | lp->stats.tx_fifo_errors++; |
stats | 795 | drivers/net/pi2.c | lp->stats.tx_errors++; |
stats | 796 | drivers/net/pi2.c | lp->stats.tx_fifo_errors++; |
stats | 1685 | drivers/net/pi2.c | return &lp->stats; |
stats | 88 | drivers/net/pi2.h | struct netstats stats; /* %%%dp*/ |
stats | 268 | drivers/net/ppp.c | memset (&ppp->stats, '\0', sizeof (struct ppp_stats)); |
stats | 349 | drivers/net/ppp.c | memset (&ppp->stats, '\0', sizeof (struct ppp_stats)); |
stats | 633 | drivers/net/ppp.c | sizeof (struct stats)); |
stats | 636 | drivers/net/ppp.c | result = (struct stats *) ifr->ifr_ifru.ifru_data; |
stats | 638 | drivers/net/ppp.c | memcpy_tofs (&result->ppp_stats, &ppp->stats, sizeof (struct ppp_stats)); |
stats | 683 | drivers/net/ppp.c | ppp->stats.sbytes += count; |
stats | 695 | drivers/net/ppp.c | ppp->stats.serrors++; |
stats | 710 | drivers/net/ppp.c | ppp->stats.sbytes += actual; |
stats | 745 | drivers/net/ppp.c | ppp->stats.sbytes += actual; |
stats | 780 | drivers/net/ppp.c | ppp->stats.roverrun++; |
stats | 853 | drivers/net/ppp.c | ppp->stats.rbytes += n; |
stats | 941 | drivers/net/ppp.c | ppp->stats.rbytes += count; |
stats | 1007 | drivers/net/ppp.c | ppp->stats.rerrors++; |
stats | 1021 | drivers/net/ppp.c | ppp->stats.runts++; |
stats | 1029 | drivers/net/ppp.c | ppp->stats.rerrors++; |
stats | 1064 | drivers/net/ppp.c | ppp->stats.rothers++; |
stats | 1072 | drivers/net/ppp.c | ppp->stats.tossed++; |
stats | 1095 | drivers/net/ppp.c | ppp->stats.runcomp++; |
stats | 1114 | drivers/net/ppp.c | ppp->stats.roverrun++; |
stats | 1121 | drivers/net/ppp.c | ppp->stats.rerrors++; |
stats | 1126 | drivers/net/ppp.c | ppp->stats.rcomp++; |
stats | 1132 | drivers/net/ppp.c | ppp->stats.rerrors++; |
stats | 1137 | drivers/net/ppp.c | ppp->stats.runcomp++; |
stats | 1288 | drivers/net/ppp.c | ppp->stats.rgiants++; |
stats | 1303 | drivers/net/ppp.c | ppp->stats.rothers++; |
stats | 1409 | drivers/net/ppp.c | ++ppp->stats.sothers; |
stats | 1537 | drivers/net/ppp.c | memcpy_tofs ((void *) l, &ppp->stats, sizeof (struct ppp_stats)); |
stats | 1766 | drivers/net/ppp.c | ppp->stats.sbusy++; |
stats | 1788 | drivers/net/ppp.c | ++ppp->stats.scomp; |
stats | 1790 | drivers/net/ppp.c | ++ppp->stats.suncomp; |
stats | 1886 | drivers/net/ppp.c | ppp_stats.rx_packets = ppp->stats.rcomp + ppp->stats.runcomp; |
stats | 1887 | drivers/net/ppp.c | ppp_stats.rx_errors = ppp->stats.rerrors; |
stats | 1888 | drivers/net/ppp.c | ppp_stats.rx_dropped = ppp->stats.tossed; |
stats | 1890 | drivers/net/ppp.c | ppp_stats.rx_length_errors = ppp->stats.runts; |
stats | 1891 | drivers/net/ppp.c | ppp_stats.rx_over_errors = ppp->stats.roverrun; |
stats | 1894 | drivers/net/ppp.c | ppp_stats.tx_packets = ppp->stats.scomp + ppp->stats.suncomp; |
stats | 1895 | drivers/net/ppp.c | ppp_stats.tx_errors = ppp->stats.serrors; |
stats | 1898 | drivers/net/ppp.c | ppp_stats.collisions = ppp->stats.sbusy; |
stats | 73 | drivers/net/seeq8005.c | struct enet_statistics stats; |
stats | 456 | drivers/net/seeq8005.c | lp->stats.tx_packets++; |
stats | 526 | drivers/net/seeq8005.c | lp->stats.rx_errors++; |
stats | 527 | drivers/net/seeq8005.c | if (pkt_hdr & SEEQPKTS_SHORT) lp->stats.rx_frame_errors++; |
stats | 528 | drivers/net/seeq8005.c | if (pkt_hdr & SEEQPKTS_DRIB) lp->stats.rx_frame_errors++; |
stats | 529 | drivers/net/seeq8005.c | if (pkt_hdr & SEEQPKTS_OVERSIZE) lp->stats.rx_over_errors++; |
stats | 530 | drivers/net/seeq8005.c | if (pkt_hdr & SEEQPKTS_CRC_ERR) lp->stats.rx_crc_errors++; |
stats | 542 | drivers/net/seeq8005.c | lp->stats.rx_dropped++; |
stats | 562 | drivers/net/seeq8005.c | lp->stats.rx_packets++; |
stats | 604 | drivers/net/seeq8005.c | return &lp->stats; |
stats | 461 | drivers/net/sk_g16.c | struct enet_statistics stats; /* Device driver statistics */ |
stats | 1350 | drivers/net/sk_g16.c | p->stats.rx_dropped++; |
stats | 1420 | drivers/net/sk_g16.c | p->stats.tx_aborted_errors++; |
stats | 1422 | drivers/net/sk_g16.c | p->stats.tx_window_errors++; |
stats | 1424 | drivers/net/sk_g16.c | p->stats.tx_carrier_errors++; |
stats | 1427 | drivers/net/sk_g16.c | p->stats.tx_fifo_errors++; |
stats | 1437 | drivers/net/sk_g16.c | p->stats.tx_errors++; |
stats | 1455 | drivers/net/sk_g16.c | p->stats.collisions++; |
stats | 1459 | drivers/net/sk_g16.c | p->stats.tx_packets++; |
stats | 1538 | drivers/net/sk_g16.c | p->stats.rx_errors++; /* bad packet received */ |
stats | 1539 | drivers/net/sk_g16.c | p->stats.rx_length_errors++; /* packet to long */ |
stats | 1559 | drivers/net/sk_g16.c | p->stats.rx_errors++; |
stats | 1561 | drivers/net/sk_g16.c | if (rmdstat & RX_FRAM) p->stats.rx_frame_errors++; |
stats | 1562 | drivers/net/sk_g16.c | if (rmdstat & RX_CRC) p->stats.rx_crc_errors++; |
stats | 1586 | drivers/net/sk_g16.c | p->stats.rx_dropped++; |
stats | 1623 | drivers/net/sk_g16.c | p->stats.rx_packets++; |
stats | 1701 | drivers/net/sk_g16.c | return &p->stats; /* Return Device status */ |
stats | 84 | drivers/net/skeleton.c | struct enet_statistics stats; |
stats | 350 | drivers/net/skeleton.c | lp->stats.tx_aborted_errors++; |
stats | 380 | drivers/net/skeleton.c | lp->stats.tx_packets++; |
stats | 386 | drivers/net/skeleton.c | lp->stats.tx_window_errors++; |
stats | 410 | drivers/net/skeleton.c | lp->stats.rx_errors++; |
stats | 411 | drivers/net/skeleton.c | if (status & 0x20) lp->stats.rx_frame_errors++; |
stats | 412 | drivers/net/skeleton.c | if (status & 0x10) lp->stats.rx_over_errors++; |
stats | 413 | drivers/net/skeleton.c | if (status & 0x08) lp->stats.rx_crc_errors++; |
stats | 414 | drivers/net/skeleton.c | if (status & 0x04) lp->stats.rx_fifo_errors++; |
stats | 422 | drivers/net/skeleton.c | lp->stats.rx_dropped++; |
stats | 434 | drivers/net/skeleton.c | lp->stats.rx_packets++; |
stats | 484 | drivers/net/skeleton.c | lp->stats.rx_missed_errors = inw(ioaddr+1); |
stats | 487 | drivers/net/skeleton.c | return &lp->stats; |
stats | 741 | drivers/net/slip.c | static struct enet_statistics stats; |
stats | 747 | drivers/net/slip.c | memset(&stats, 0, sizeof(struct enet_statistics)); |
stats | 749 | drivers/net/slip.c | stats.rx_packets = sl->rx_packets; |
stats | 750 | drivers/net/slip.c | stats.tx_packets = sl->tx_packets; |
stats | 751 | drivers/net/slip.c | stats.rx_dropped = sl->rx_dropped; |
stats | 752 | drivers/net/slip.c | stats.tx_dropped = sl->tx_dropped; |
stats | 753 | drivers/net/slip.c | stats.tx_errors = sl->tx_errors; |
stats | 754 | drivers/net/slip.c | stats.rx_errors = sl->rx_errors; |
stats | 755 | drivers/net/slip.c | stats.rx_over_errors = sl->rx_over_errors; |
stats | 757 | drivers/net/slip.c | stats.rx_fifo_errors = sl->rx_compressed; |
stats | 758 | drivers/net/slip.c | stats.tx_fifo_errors = sl->tx_compressed; |
stats | 759 | drivers/net/slip.c | stats.collisions = sl->tx_misses; |
stats | 762 | drivers/net/slip.c | stats.rx_fifo_errors += comp->sls_i_compressed; |
stats | 763 | drivers/net/slip.c | stats.rx_dropped += comp->sls_i_tossed; |
stats | 764 | drivers/net/slip.c | stats.tx_fifo_errors += comp->sls_o_compressed; |
stats | 765 | drivers/net/slip.c | stats.collisions += comp->sls_o_misses; |
stats | 768 | drivers/net/slip.c | return (&stats); |
stats | 148 | drivers/net/tulip.c | struct enet_statistics stats; |
stats | 399 | drivers/net/tulip.c | tp->stats.tx_errors++; |
stats | 492 | drivers/net/tulip.c | lp->stats.tx_errors++; |
stats | 493 | drivers/net/tulip.c | if (status & 0x4104) lp->stats.tx_aborted_errors++; |
stats | 494 | drivers/net/tulip.c | if (status & 0x0C00) lp->stats.tx_carrier_errors++; |
stats | 495 | drivers/net/tulip.c | if (status & 0x0200) lp->stats.tx_window_errors++; |
stats | 496 | drivers/net/tulip.c | if (status & 0x0002) lp->stats.tx_fifo_errors++; |
stats | 497 | drivers/net/tulip.c | if (status & 0x0080) lp->stats.tx_heartbeat_errors++; |
stats | 499 | drivers/net/tulip.c | if (status & 0x0100) lp->stats.collisions16++; |
stats | 503 | drivers/net/tulip.c | if (status & 0x0001) lp->stats.tx_deferred++; |
stats | 505 | drivers/net/tulip.c | lp->stats.collisions += (status >> 3) & 15; |
stats | 506 | drivers/net/tulip.c | lp->stats.tx_packets++; |
stats | 535 | drivers/net/tulip.c | if (csr5 & 0x0008) lp->stats.tx_errors++; /* Tx babble. */ |
stats | 537 | drivers/net/tulip.c | lp->stats.rx_errors++; |
stats | 538 | drivers/net/tulip.c | lp->stats.rx_missed_errors += inl(ioaddr + CSR8) & 0xffff; |
stats | 593 | drivers/net/tulip.c | lp->stats.rx_errors++; /* end of a packet.*/ |
stats | 594 | drivers/net/tulip.c | if (status & 0x0890) lp->stats.rx_length_errors++; |
stats | 595 | drivers/net/tulip.c | if (status & 0x0004) lp->stats.rx_frame_errors++; |
stats | 596 | drivers/net/tulip.c | if (status & 0x0002) lp->stats.rx_crc_errors++; |
stats | 597 | drivers/net/tulip.c | if (status & 0x0001) lp->stats.rx_fifo_errors++; |
stats | 613 | drivers/net/tulip.c | lp->stats.rx_dropped++; |
stats | 624 | drivers/net/tulip.c | lp->stats.rx_packets++; |
stats | 652 | drivers/net/tulip.c | tp->stats.rx_missed_errors += inl(ioaddr + CSR8) & 0xffff; |
stats | 666 | drivers/net/tulip.c | tp->stats.rx_missed_errors += inl(ioaddr + CSR8) & 0xffff; |
stats | 668 | drivers/net/tulip.c | return &tp->stats; |
stats | 122 | drivers/net/tunnel.c | struct enet_statistics *stats; |
stats | 138 | drivers/net/tunnel.c | stats = (struct enet_statistics *)dev->priv; |
stats | 143 | drivers/net/tunnel.c | stats->tx_errors++; |
stats | 212 | drivers/net/tunnel.c | stats->tx_dropped++; |
stats | 255 | drivers/net/tunnel.c | stats->tx_packets++; |
stats | 54 | drivers/net/wavelan.c | en_stats stats; |
stats | 1519 | drivers/net/wavelan.c | lp->stats.rx_errors++; |
stats | 1526 | drivers/net/wavelan.c | lp->stats.rx_length_errors++; |
stats | 1532 | drivers/net/wavelan.c | lp->stats.rx_over_errors++; |
stats | 1538 | drivers/net/wavelan.c | lp->stats.rx_fifo_errors++; |
stats | 1544 | drivers/net/wavelan.c | lp->stats.rx_frame_errors++; |
stats | 1550 | drivers/net/wavelan.c | lp->stats.rx_crc_errors++; |
stats | 1636 | drivers/net/wavelan.c | lp->stats.rx_dropped++; |
stats | 1674 | drivers/net/wavelan.c | lp->stats.rx_packets++; |
stats | 1743 | drivers/net/wavelan.c | lp->stats.tx_packets++; |
stats | 1745 | drivers/net/wavelan.c | lp->stats.collisions += ncollisions; |
stats | 1753 | drivers/net/wavelan.c | lp->stats.tx_errors++; |
stats | 1756 | drivers/net/wavelan.c | lp->stats.tx_carrier_errors++; |
stats | 1762 | drivers/net/wavelan.c | lp->stats.tx_carrier_errors++; |
stats | 1767 | drivers/net/wavelan.c | lp->stats.tx_fifo_errors++; |
stats | 1772 | drivers/net/wavelan.c | lp->stats.tx_heartbeat_errors++; |
stats | 1778 | drivers/net/wavelan.c | lp->stats.tx_aborted_errors++; |
stats | 2010 | drivers/net/wavelan.c | return &lp->stats; |
stats | 124 | drivers/net/znet.c | struct enet_statistics stats; |
stats | 443 | drivers/net/znet.c | lp->stats.tx_packets++; |
stats | 444 | drivers/net/znet.c | lp->stats.collisions += tx_status & 0xf; |
stats | 446 | drivers/net/znet.c | if (tx_status & 0x0600) lp->stats.tx_carrier_errors++; |
stats | 447 | drivers/net/znet.c | if (tx_status & 0x0100) lp->stats.tx_fifo_errors++; |
stats | 448 | drivers/net/znet.c | if (!(tx_status & 0x0040)) lp->stats.tx_heartbeat_errors++; |
stats | 449 | drivers/net/znet.c | if (tx_status & 0x0020) lp->stats.tx_aborted_errors++; |
stats | 452 | drivers/net/znet.c | lp->stats.tx_errors++; |
stats | 539 | drivers/net/znet.c | lp->stats.rx_errors++; |
stats | 540 | drivers/net/znet.c | if (status & 0x0800) lp->stats.rx_crc_errors++; |
stats | 541 | drivers/net/znet.c | if (status & 0x0400) lp->stats.rx_frame_errors++; |
stats | 542 | drivers/net/znet.c | if (status & 0x0200) lp->stats.rx_over_errors++; /* Wrong. */ |
stats | 543 | drivers/net/znet.c | if (status & 0x0100) lp->stats.rx_fifo_errors++; |
stats | 544 | drivers/net/znet.c | if (status & 0x0080) lp->stats.rx_length_errors++; |
stats | 546 | drivers/net/znet.c | lp->stats.rx_length_errors++; |
stats | 555 | drivers/net/znet.c | lp->stats.rx_dropped++; |
stats | 575 | drivers/net/znet.c | lp->stats.rx_packets++; |
stats | 623 | drivers/net/znet.c | return &lp->stats; |
stats | 57 | include/linux/if_eql.h | struct enet_statistics *stats; |
stats | 228 | include/linux/if_ppp.h | struct ppp_stats stats; /* statistic information */ |
stats | 878 | net/core/dev.c | struct enet_statistics *stats = (dev->get_stats ? dev->get_stats(dev): NULL); |
stats | 881 | net/core/dev.c | if (stats) |
stats | 884 | net/core/dev.c | stats->rx_packets, stats->rx_errors, |
stats | 885 | net/core/dev.c | stats->rx_dropped + stats->rx_missed_errors, |
stats | 886 | net/core/dev.c | stats->rx_fifo_errors, |
stats | 887 | net/core/dev.c | stats->rx_length_errors + stats->rx_over_errors |
stats | 888 | net/core/dev.c | + stats->rx_crc_errors + stats->rx_frame_errors, |
stats | 889 | net/core/dev.c | stats->tx_packets, stats->tx_errors, stats->tx_dropped, |
stats | 890 | net/core/dev.c | stats->tx_fifo_errors, stats->collisions, |
stats | 891 | net/core/dev.c | stats->tx_carrier_errors + stats->tx_aborted_errors |
stats | 892 | net/core/dev.c | + stats->tx_window_errors + stats->tx_heartbeat_errors); |
stats | 54 | net/netrom/nr_dev.c | struct enet_statistics *stats = (struct enet_statistics *)dev->priv; |
stats | 58 | net/netrom/nr_dev.c | stats->rx_errors++; |
stats | 62 | net/netrom/nr_dev.c | stats->rx_packets++; |
stats | 109 | net/netrom/nr_dev.c | struct enet_statistics *stats = (struct enet_statistics *)dev->priv; |
stats | 132 | net/netrom/nr_dev.c | stats->tx_errors++; |
stats | 135 | net/netrom/nr_dev.c | stats->tx_packets++; |
stats | 165 | net/netrom/nr_dev.c | struct enet_statistics *stats = (struct enet_statistics *)dev->priv; |
stats | 179 | net/netrom/nr_dev.c | stats->tx_errors++; |
stats | 189 | net/netrom/nr_dev.c | stats->tx_errors++; |