Symbol: smb
sys/dev/pci/if_age.c
1869
struct smb *smb;
sys/dev/pci/if_age.c
1876
smb = sc->age_rdata.age_smb_block;
sys/dev/pci/if_age.c
1877
if (smb->updated == 0)
sys/dev/pci/if_age.c
1881
stat->rx_frames += smb->rx_frames;
sys/dev/pci/if_age.c
1882
stat->rx_bcast_frames += smb->rx_bcast_frames;
sys/dev/pci/if_age.c
1883
stat->rx_mcast_frames += smb->rx_mcast_frames;
sys/dev/pci/if_age.c
1884
stat->rx_pause_frames += smb->rx_pause_frames;
sys/dev/pci/if_age.c
1885
stat->rx_control_frames += smb->rx_control_frames;
sys/dev/pci/if_age.c
1886
stat->rx_crcerrs += smb->rx_crcerrs;
sys/dev/pci/if_age.c
1887
stat->rx_lenerrs += smb->rx_lenerrs;
sys/dev/pci/if_age.c
1888
stat->rx_bytes += smb->rx_bytes;
sys/dev/pci/if_age.c
1889
stat->rx_runts += smb->rx_runts;
sys/dev/pci/if_age.c
1890
stat->rx_fragments += smb->rx_fragments;
sys/dev/pci/if_age.c
1891
stat->rx_pkts_64 += smb->rx_pkts_64;
sys/dev/pci/if_age.c
1892
stat->rx_pkts_65_127 += smb->rx_pkts_65_127;
sys/dev/pci/if_age.c
1893
stat->rx_pkts_128_255 += smb->rx_pkts_128_255;
sys/dev/pci/if_age.c
1894
stat->rx_pkts_256_511 += smb->rx_pkts_256_511;
sys/dev/pci/if_age.c
1895
stat->rx_pkts_512_1023 += smb->rx_pkts_512_1023;
sys/dev/pci/if_age.c
1896
stat->rx_pkts_1024_1518 += smb->rx_pkts_1024_1518;
sys/dev/pci/if_age.c
1897
stat->rx_pkts_1519_max += smb->rx_pkts_1519_max;
sys/dev/pci/if_age.c
1898
stat->rx_pkts_truncated += smb->rx_pkts_truncated;
sys/dev/pci/if_age.c
1899
stat->rx_fifo_oflows += smb->rx_fifo_oflows;
sys/dev/pci/if_age.c
1900
stat->rx_desc_oflows += smb->rx_desc_oflows;
sys/dev/pci/if_age.c
1901
stat->rx_alignerrs += smb->rx_alignerrs;
sys/dev/pci/if_age.c
1902
stat->rx_bcast_bytes += smb->rx_bcast_bytes;
sys/dev/pci/if_age.c
1903
stat->rx_mcast_bytes += smb->rx_mcast_bytes;
sys/dev/pci/if_age.c
1904
stat->rx_pkts_filtered += smb->rx_pkts_filtered;
sys/dev/pci/if_age.c
1907
stat->tx_frames += smb->tx_frames;
sys/dev/pci/if_age.c
1908
stat->tx_bcast_frames += smb->tx_bcast_frames;
sys/dev/pci/if_age.c
1909
stat->tx_mcast_frames += smb->tx_mcast_frames;
sys/dev/pci/if_age.c
1910
stat->tx_pause_frames += smb->tx_pause_frames;
sys/dev/pci/if_age.c
1911
stat->tx_excess_defer += smb->tx_excess_defer;
sys/dev/pci/if_age.c
1912
stat->tx_control_frames += smb->tx_control_frames;
sys/dev/pci/if_age.c
1913
stat->tx_deferred += smb->tx_deferred;
sys/dev/pci/if_age.c
1914
stat->tx_bytes += smb->tx_bytes;
sys/dev/pci/if_age.c
1915
stat->tx_pkts_64 += smb->tx_pkts_64;
sys/dev/pci/if_age.c
1916
stat->tx_pkts_65_127 += smb->tx_pkts_65_127;
sys/dev/pci/if_age.c
1917
stat->tx_pkts_128_255 += smb->tx_pkts_128_255;
sys/dev/pci/if_age.c
1918
stat->tx_pkts_256_511 += smb->tx_pkts_256_511;
sys/dev/pci/if_age.c
1919
stat->tx_pkts_512_1023 += smb->tx_pkts_512_1023;
sys/dev/pci/if_age.c
1920
stat->tx_pkts_1024_1518 += smb->tx_pkts_1024_1518;
sys/dev/pci/if_age.c
1921
stat->tx_pkts_1519_max += smb->tx_pkts_1519_max;
sys/dev/pci/if_age.c
1922
stat->tx_single_colls += smb->tx_single_colls;
sys/dev/pci/if_age.c
1923
stat->tx_multi_colls += smb->tx_multi_colls;
sys/dev/pci/if_age.c
1924
stat->tx_late_colls += smb->tx_late_colls;
sys/dev/pci/if_age.c
1925
stat->tx_excess_colls += smb->tx_excess_colls;
sys/dev/pci/if_age.c
1926
stat->tx_underrun += smb->tx_underrun;
sys/dev/pci/if_age.c
1927
stat->tx_desc_underrun += smb->tx_desc_underrun;
sys/dev/pci/if_age.c
1928
stat->tx_lenerrs += smb->tx_lenerrs;
sys/dev/pci/if_age.c
1929
stat->tx_pkts_truncated += smb->tx_pkts_truncated;
sys/dev/pci/if_age.c
1930
stat->tx_bcast_bytes += smb->tx_bcast_bytes;
sys/dev/pci/if_age.c
1931
stat->tx_mcast_bytes += smb->tx_mcast_bytes;
sys/dev/pci/if_age.c
1933
ifp->if_collisions += smb->tx_single_colls +
sys/dev/pci/if_age.c
1934
smb->tx_multi_colls + smb->tx_late_colls +
sys/dev/pci/if_age.c
1935
smb->tx_excess_colls * HDPX_CFG_RETRY_DEFAULT;
sys/dev/pci/if_age.c
1937
ifp->if_oerrors += smb->tx_excess_colls +
sys/dev/pci/if_age.c
1938
smb->tx_late_colls + smb->tx_underrun +
sys/dev/pci/if_age.c
1939
smb->tx_pkts_truncated;
sys/dev/pci/if_age.c
1941
ifp->if_ierrors += smb->rx_crcerrs + smb->rx_lenerrs +
sys/dev/pci/if_age.c
1942
smb->rx_runts + smb->rx_pkts_truncated +
sys/dev/pci/if_age.c
1943
smb->rx_fifo_oflows + smb->rx_desc_oflows +
sys/dev/pci/if_age.c
1944
smb->rx_alignerrs;
sys/dev/pci/if_age.c
1947
smb->updated = 0;
sys/dev/pci/if_agereg.h
746
struct smb *age_smb_block;
sys/dev/pci/if_agereg.h
758
#define AGE_SMB_BLOCK_SZ sizeof(struct smb)
sys/dev/pci/if_alc.c
2057
struct smb sb, *smb;
sys/dev/pci/if_alc.c
2065
smb = sc->alc_rdata.alc_smb;
sys/dev/pci/if_alc.c
2067
smb->updated = 0;
sys/dev/pci/if_alc.c
2091
struct smb sb, *smb;
sys/dev/pci/if_alc.c
2100
smb = sc->alc_rdata.alc_smb;
sys/dev/pci/if_alc.c
2101
if (smb->updated == 0)
sys/dev/pci/if_alc.c
2104
smb = &sb;
sys/dev/pci/if_alc.c
2120
stat->rx_frames += smb->rx_frames;
sys/dev/pci/if_alc.c
2121
stat->rx_bcast_frames += smb->rx_bcast_frames;
sys/dev/pci/if_alc.c
2122
stat->rx_mcast_frames += smb->rx_mcast_frames;
sys/dev/pci/if_alc.c
2123
stat->rx_pause_frames += smb->rx_pause_frames;
sys/dev/pci/if_alc.c
2124
stat->rx_control_frames += smb->rx_control_frames;
sys/dev/pci/if_alc.c
2125
stat->rx_crcerrs += smb->rx_crcerrs;
sys/dev/pci/if_alc.c
2126
stat->rx_lenerrs += smb->rx_lenerrs;
sys/dev/pci/if_alc.c
2127
stat->rx_bytes += smb->rx_bytes;
sys/dev/pci/if_alc.c
2128
stat->rx_runts += smb->rx_runts;
sys/dev/pci/if_alc.c
2129
stat->rx_fragments += smb->rx_fragments;
sys/dev/pci/if_alc.c
2130
stat->rx_pkts_64 += smb->rx_pkts_64;
sys/dev/pci/if_alc.c
2131
stat->rx_pkts_65_127 += smb->rx_pkts_65_127;
sys/dev/pci/if_alc.c
2132
stat->rx_pkts_128_255 += smb->rx_pkts_128_255;
sys/dev/pci/if_alc.c
2133
stat->rx_pkts_256_511 += smb->rx_pkts_256_511;
sys/dev/pci/if_alc.c
2134
stat->rx_pkts_512_1023 += smb->rx_pkts_512_1023;
sys/dev/pci/if_alc.c
2135
stat->rx_pkts_1024_1518 += smb->rx_pkts_1024_1518;
sys/dev/pci/if_alc.c
2136
stat->rx_pkts_1519_max += smb->rx_pkts_1519_max;
sys/dev/pci/if_alc.c
2137
stat->rx_pkts_truncated += smb->rx_pkts_truncated;
sys/dev/pci/if_alc.c
2138
stat->rx_fifo_oflows += smb->rx_fifo_oflows;
sys/dev/pci/if_alc.c
2139
stat->rx_rrs_errs += smb->rx_rrs_errs;
sys/dev/pci/if_alc.c
2140
stat->rx_alignerrs += smb->rx_alignerrs;
sys/dev/pci/if_alc.c
2141
stat->rx_bcast_bytes += smb->rx_bcast_bytes;
sys/dev/pci/if_alc.c
2142
stat->rx_mcast_bytes += smb->rx_mcast_bytes;
sys/dev/pci/if_alc.c
2143
stat->rx_pkts_filtered += smb->rx_pkts_filtered;
sys/dev/pci/if_alc.c
2146
stat->tx_frames += smb->tx_frames;
sys/dev/pci/if_alc.c
2147
stat->tx_bcast_frames += smb->tx_bcast_frames;
sys/dev/pci/if_alc.c
2148
stat->tx_mcast_frames += smb->tx_mcast_frames;
sys/dev/pci/if_alc.c
2149
stat->tx_pause_frames += smb->tx_pause_frames;
sys/dev/pci/if_alc.c
2150
stat->tx_excess_defer += smb->tx_excess_defer;
sys/dev/pci/if_alc.c
2151
stat->tx_control_frames += smb->tx_control_frames;
sys/dev/pci/if_alc.c
2152
stat->tx_deferred += smb->tx_deferred;
sys/dev/pci/if_alc.c
2153
stat->tx_bytes += smb->tx_bytes;
sys/dev/pci/if_alc.c
2154
stat->tx_pkts_64 += smb->tx_pkts_64;
sys/dev/pci/if_alc.c
2155
stat->tx_pkts_65_127 += smb->tx_pkts_65_127;
sys/dev/pci/if_alc.c
2156
stat->tx_pkts_128_255 += smb->tx_pkts_128_255;
sys/dev/pci/if_alc.c
2157
stat->tx_pkts_256_511 += smb->tx_pkts_256_511;
sys/dev/pci/if_alc.c
2158
stat->tx_pkts_512_1023 += smb->tx_pkts_512_1023;
sys/dev/pci/if_alc.c
2159
stat->tx_pkts_1024_1518 += smb->tx_pkts_1024_1518;
sys/dev/pci/if_alc.c
2160
stat->tx_pkts_1519_max += smb->tx_pkts_1519_max;
sys/dev/pci/if_alc.c
2161
stat->tx_single_colls += smb->tx_single_colls;
sys/dev/pci/if_alc.c
2162
stat->tx_multi_colls += smb->tx_multi_colls;
sys/dev/pci/if_alc.c
2163
stat->tx_late_colls += smb->tx_late_colls;
sys/dev/pci/if_alc.c
2164
stat->tx_excess_colls += smb->tx_excess_colls;
sys/dev/pci/if_alc.c
2165
stat->tx_underrun += smb->tx_underrun;
sys/dev/pci/if_alc.c
2166
stat->tx_desc_underrun += smb->tx_desc_underrun;
sys/dev/pci/if_alc.c
2167
stat->tx_lenerrs += smb->tx_lenerrs;
sys/dev/pci/if_alc.c
2168
stat->tx_pkts_truncated += smb->tx_pkts_truncated;
sys/dev/pci/if_alc.c
2169
stat->tx_bcast_bytes += smb->tx_bcast_bytes;
sys/dev/pci/if_alc.c
2170
stat->tx_mcast_bytes += smb->tx_mcast_bytes;
sys/dev/pci/if_alc.c
2172
ifp->if_collisions += smb->tx_single_colls +
sys/dev/pci/if_alc.c
2173
smb->tx_multi_colls * 2 + smb->tx_late_colls +
sys/dev/pci/if_alc.c
2174
smb->tx_excess_colls * HDPX_CFG_RETRY_DEFAULT;
sys/dev/pci/if_alc.c
2176
ifp->if_oerrors += smb->tx_late_colls + smb->tx_excess_colls +
sys/dev/pci/if_alc.c
2177
smb->tx_underrun + smb->tx_pkts_truncated;
sys/dev/pci/if_alc.c
2179
ifp->if_ierrors += smb->rx_crcerrs + smb->rx_lenerrs +
sys/dev/pci/if_alc.c
2180
smb->rx_runts + smb->rx_pkts_truncated +
sys/dev/pci/if_alc.c
2181
smb->rx_fifo_oflows + smb->rx_rrs_errs +
sys/dev/pci/if_alc.c
2182
smb->rx_alignerrs;
sys/dev/pci/if_alc.c
2186
smb->updated = 0;
sys/dev/pci/if_alcreg.h
1295
#define ALC_SMB_SZ (sizeof(struct smb))
sys/dev/pci/if_alcreg.h
1334
struct smb *alc_smb;
sys/dev/pci/if_ale.c
1131
struct smb sb;
sys/dev/pci/if_ale.c
1151
struct smb sb, *smb;
sys/dev/pci/if_ale.c
1156
smb = &sb;
sys/dev/pci/if_ale.c
1170
stat->rx_frames += smb->rx_frames;
sys/dev/pci/if_ale.c
1171
stat->rx_bcast_frames += smb->rx_bcast_frames;
sys/dev/pci/if_ale.c
1172
stat->rx_mcast_frames += smb->rx_mcast_frames;
sys/dev/pci/if_ale.c
1173
stat->rx_pause_frames += smb->rx_pause_frames;
sys/dev/pci/if_ale.c
1174
stat->rx_control_frames += smb->rx_control_frames;
sys/dev/pci/if_ale.c
1175
stat->rx_crcerrs += smb->rx_crcerrs;
sys/dev/pci/if_ale.c
1176
stat->rx_lenerrs += smb->rx_lenerrs;
sys/dev/pci/if_ale.c
1177
stat->rx_bytes += smb->rx_bytes;
sys/dev/pci/if_ale.c
1178
stat->rx_runts += smb->rx_runts;
sys/dev/pci/if_ale.c
1179
stat->rx_fragments += smb->rx_fragments;
sys/dev/pci/if_ale.c
1180
stat->rx_pkts_64 += smb->rx_pkts_64;
sys/dev/pci/if_ale.c
1181
stat->rx_pkts_65_127 += smb->rx_pkts_65_127;
sys/dev/pci/if_ale.c
1182
stat->rx_pkts_128_255 += smb->rx_pkts_128_255;
sys/dev/pci/if_ale.c
1183
stat->rx_pkts_256_511 += smb->rx_pkts_256_511;
sys/dev/pci/if_ale.c
1184
stat->rx_pkts_512_1023 += smb->rx_pkts_512_1023;
sys/dev/pci/if_ale.c
1185
stat->rx_pkts_1024_1518 += smb->rx_pkts_1024_1518;
sys/dev/pci/if_ale.c
1186
stat->rx_pkts_1519_max += smb->rx_pkts_1519_max;
sys/dev/pci/if_ale.c
1187
stat->rx_pkts_truncated += smb->rx_pkts_truncated;
sys/dev/pci/if_ale.c
1188
stat->rx_fifo_oflows += smb->rx_fifo_oflows;
sys/dev/pci/if_ale.c
1189
stat->rx_rrs_errs += smb->rx_rrs_errs;
sys/dev/pci/if_ale.c
1190
stat->rx_alignerrs += smb->rx_alignerrs;
sys/dev/pci/if_ale.c
1191
stat->rx_bcast_bytes += smb->rx_bcast_bytes;
sys/dev/pci/if_ale.c
1192
stat->rx_mcast_bytes += smb->rx_mcast_bytes;
sys/dev/pci/if_ale.c
1193
stat->rx_pkts_filtered += smb->rx_pkts_filtered;
sys/dev/pci/if_ale.c
1196
stat->tx_frames += smb->tx_frames;
sys/dev/pci/if_ale.c
1197
stat->tx_bcast_frames += smb->tx_bcast_frames;
sys/dev/pci/if_ale.c
1198
stat->tx_mcast_frames += smb->tx_mcast_frames;
sys/dev/pci/if_ale.c
1199
stat->tx_pause_frames += smb->tx_pause_frames;
sys/dev/pci/if_ale.c
1200
stat->tx_excess_defer += smb->tx_excess_defer;
sys/dev/pci/if_ale.c
1201
stat->tx_control_frames += smb->tx_control_frames;
sys/dev/pci/if_ale.c
1202
stat->tx_deferred += smb->tx_deferred;
sys/dev/pci/if_ale.c
1203
stat->tx_bytes += smb->tx_bytes;
sys/dev/pci/if_ale.c
1204
stat->tx_pkts_64 += smb->tx_pkts_64;
sys/dev/pci/if_ale.c
1205
stat->tx_pkts_65_127 += smb->tx_pkts_65_127;
sys/dev/pci/if_ale.c
1206
stat->tx_pkts_128_255 += smb->tx_pkts_128_255;
sys/dev/pci/if_ale.c
1207
stat->tx_pkts_256_511 += smb->tx_pkts_256_511;
sys/dev/pci/if_ale.c
1208
stat->tx_pkts_512_1023 += smb->tx_pkts_512_1023;
sys/dev/pci/if_ale.c
1209
stat->tx_pkts_1024_1518 += smb->tx_pkts_1024_1518;
sys/dev/pci/if_ale.c
1210
stat->tx_pkts_1519_max += smb->tx_pkts_1519_max;
sys/dev/pci/if_ale.c
1211
stat->tx_single_colls += smb->tx_single_colls;
sys/dev/pci/if_ale.c
1212
stat->tx_multi_colls += smb->tx_multi_colls;
sys/dev/pci/if_ale.c
1213
stat->tx_late_colls += smb->tx_late_colls;
sys/dev/pci/if_ale.c
1214
stat->tx_excess_colls += smb->tx_excess_colls;
sys/dev/pci/if_ale.c
1215
stat->tx_underrun += smb->tx_underrun;
sys/dev/pci/if_ale.c
1216
stat->tx_desc_underrun += smb->tx_desc_underrun;
sys/dev/pci/if_ale.c
1217
stat->tx_lenerrs += smb->tx_lenerrs;
sys/dev/pci/if_ale.c
1218
stat->tx_pkts_truncated += smb->tx_pkts_truncated;
sys/dev/pci/if_ale.c
1219
stat->tx_bcast_bytes += smb->tx_bcast_bytes;
sys/dev/pci/if_ale.c
1220
stat->tx_mcast_bytes += smb->tx_mcast_bytes;
sys/dev/pci/if_ale.c
1222
ifp->if_collisions += smb->tx_single_colls +
sys/dev/pci/if_ale.c
1223
smb->tx_multi_colls * 2 + smb->tx_late_colls +
sys/dev/pci/if_ale.c
1224
smb->tx_excess_colls * HDPX_CFG_RETRY_DEFAULT;
sys/dev/pci/if_ale.c
1226
ifp->if_oerrors += smb->tx_late_colls + smb->tx_excess_colls +
sys/dev/pci/if_ale.c
1227
smb->tx_underrun + smb->tx_pkts_truncated;
sys/dev/pci/if_ale.c
1229
ifp->if_ierrors += smb->rx_crcerrs + smb->rx_lenerrs +
sys/dev/pci/if_ale.c
1230
smb->rx_runts + smb->rx_pkts_truncated +
sys/dev/pci/if_ale.c
1231
smb->rx_fifo_oflows + smb->rx_rrs_errs +
sys/dev/pci/if_ale.c
1232
smb->rx_alignerrs;