The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/minix/dl_eth.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* The eth_stat struct is used in a DL_GETSTAT request the the ehw_task. */
    2 
    3 #ifndef _ETH_HW_H
    4 #define _ETH_HW_H
    5 
    6 typedef struct eth_stat
    7 {
    8   unsigned long ets_recvErr,    /* # receive errors */
    9         ets_sendErr,            /* # send error */
   10         ets_OVW,                /* # buffer overwrite warnings */
   11         ets_CRCerr,             /* # crc errors of read */
   12         ets_frameAll,           /* # frames not alligned (# bits % 8 != 0) */
   13         ets_missedP,            /* # packets missed due to slow processing */
   14         ets_packetR,            /* # packets received */
   15         ets_packetT,            /* # packets transmitted */
   16         ets_transDef,           /* # transmission defered (Tx was busy) */
   17         ets_collision,          /* # collissions */
   18         ets_transAb,            /* # Tx aborted due to excess collisions */
   19         ets_carrSense,          /* # carrier sense lost */
   20         ets_fifoUnder,          /* # FIFO underruns (processor too busy) */
   21         ets_fifoOver,           /* # FIFO overruns (processor too busy) */
   22         ets_CDheartbeat,        /* # times unable to transmit collision sig*/
   23         ets_OWC;                /* # times out of window collision */
   24 } eth_stat_t;
   25 
   26 #endif /* _ETH_HW_H */

Cache object: 1215e372c216e5817d72edb5d2be188d


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.