1gld_stats(9S) Data Structures for Drivers gld_stats(9S)
2
3
4
6 gld_stats - Generic LAN Driver statistics data structure
7
9 #include <sys/gld.h>
10
11
13 Solaris architecture specific (Solaris DDI).
14
16 The Generic LAN Driver (GLD) statistics (gld_stats) structure is used
17 to communicate statistics and state information from a GLD-based driver
18 to GLD when returning from a driver's gldm_get_stats() routine as dis‐
19 cussed in gld(9E) and gld(7D). The members of this structure, filled in
20 by the GLD-based driver, are used when GLD reports the statistics. In
21 the tables below, the name of the statistics variable reported by GLD
22 is noted in the comments. See gld(7D) for a more detailed description
23 of the meaning of each statistic.
24
25
26 Drivers can make no assumptions about the length of this structure,
27 which might be different in different releases of Solaris and/or GLD.
28 Structure members private to GLD, not documented here, should not be
29 set or read by the device specific driver.
30
32 The following structure members are defined for all media types:
33
34 uint64_t glds_speed; /* ifspeed */
35 uint32_t glds_media; /* media */
36 uint32_t glds_intr; /* intr */
37 uint32_t glds_norcvbuf; /* norcvbuf */
38 uint32_t glds_errrcv; /* ierrors */
39 uint32_t glds_errxmt; /* oerrors */
40 uint32_t glds_missed; /* missed */
41 uint32_t glds_underflow; /* uflo */
42 uint32_t glds_overflow; /* oflo */
43
44
45
46
47 The following structure members are defined for media type DL_ETHER:
48
49 uint32_t glds_frame; /* align_errors */
50 uint32_t glds_crc; /* fcs_errors */
51 uint32_t glds_duplex; /* duplex */
52 uint32_t glds_nocarrier; /* carrier_errors */
53 uint32_t glds_collisions; /* collisions */
54 uint32_t glds_excoll; /* ex_collisions */
55 uint32_t glds_xmtlatecoll; /* tx_late_collisions */
56 uint32_t glds_defer; /* defer_xmts */
57 uint32_t glds_dot3_first_coll; /* first_collisions */
58 uint32_t glds_dot3_multi_coll; /* multi_collisions */
59 uint32_t glds_dot3_sqe_error; /* sqe_errors */
60 uint32_t glds_dot3_mac_xmt_error; /* macxmt_errors */
61 uint32_t glds_dot3_mac_rcv_error; /* macrcv_errors */
62 uint32_t glds_dot3_frame_too_long; /* toolong_errors */
63 uint32_t glds_short; /* runt_errors */
64
65
66
67
68 The following structure members are defined for media type DL_TPR:
69
70 uint32_t glds_dot5_line_error /* line_errors */
71 uint32_t glds_dot5_burst_error /* burst_errors */
72 uint32_t glds_dot5_signal_loss /* signal_losses */
73 uint32_t glds_dot5_ace_error /* ace_errors */
74 uint32_t glds_dot5_internal_error /* internal_errors */
75 uint32_t glds_dot5_lost_frame_error /* lost_frame_errors */
76 uint32_t glds_dot5_frame_copied_error /* frame_copied_errors */
77 uint32_t glds_dot5_token_error /* token_errors */
78 uint32_t glds_dot5_freq_error /* freq_errors */
79
80
81
82 Note -
83
84 Support for the DL_TPR media type is obsolete and may be removed in a
85 future release of Solaris.
86
87
88 The following structure members are defined for media type DL_FDDI:
89
90 uint32_t glds_fddi_mac_error; /* mac_errors */
91 uint32_t glds_fddi_mac_lost; /* mac_lost_errors */
92 uint32_t glds_fddi_mac_token; /* mac_tokens */
93 uint32_t glds_fddi_mac_tvx_expired; /* mac_tvx_expired */
94 uint32_t glds_fddi_mac_late; /* mac_late */
95 uint32_t glds_fddi_mac_ring_op; /* mac_ring_ops */
96
97
98
99 Note -
100
101 Support for the DL_FDDI media type is obsolete and may be removed in
102 a future release of Solaris.
103
104
105 Most of the above statistics variables are counters denoting the number
106 of times the particular event was observed. Exceptions are:
107
108 glds_speed An estimate of the interface's current bandwidth in
109 bits per second. For interfaces that do not vary in
110 bandwidth or for those where no accurate estimation can
111 be made, this object should contain the nominal band‐
112 width.
113
114
115 glds_media The type of media (wiring) or connector used by the
116 hardware. Currently supported media names include
117 GLDM_AUI, GLDM_BNC, GLDM_TP, GLDM_10BT, GLDM_100BT,
118 GLDM_100BTX, GLDM_100BT4, GLDM_RING4, GLDM_RING16,
119 GLDM_FIBER, and GLDM_PHYMII. GLDM_UNKNOWN can also be
120 specified.
121
122
123 glds_duplex Current duplex state of the interface. Supported values
124 are GLD_DUPLEX_HALF and GLD_DUPLEX_FULL.
125 GLD_DUPLEX_UNKNOWN can also be specified.
126
127
129 gld(7D), gld(9F), gld(9E), gld_mac_info(9S)
130
131
132 Writing Device Drivers
133
134
135
136SunOS 5.11 7 Jun 2004 gld_stats(9S)