Lines Matching defs:smb

1131 	struct smb sb;
1151 struct smb sb, *smb;
1156 smb = &sb;
1170 stat->rx_frames += smb->rx_frames;
1171 stat->rx_bcast_frames += smb->rx_bcast_frames;
1172 stat->rx_mcast_frames += smb->rx_mcast_frames;
1173 stat->rx_pause_frames += smb->rx_pause_frames;
1174 stat->rx_control_frames += smb->rx_control_frames;
1175 stat->rx_crcerrs += smb->rx_crcerrs;
1176 stat->rx_lenerrs += smb->rx_lenerrs;
1177 stat->rx_bytes += smb->rx_bytes;
1178 stat->rx_runts += smb->rx_runts;
1179 stat->rx_fragments += smb->rx_fragments;
1180 stat->rx_pkts_64 += smb->rx_pkts_64;
1181 stat->rx_pkts_65_127 += smb->rx_pkts_65_127;
1182 stat->rx_pkts_128_255 += smb->rx_pkts_128_255;
1183 stat->rx_pkts_256_511 += smb->rx_pkts_256_511;
1184 stat->rx_pkts_512_1023 += smb->rx_pkts_512_1023;
1185 stat->rx_pkts_1024_1518 += smb->rx_pkts_1024_1518;
1186 stat->rx_pkts_1519_max += smb->rx_pkts_1519_max;
1187 stat->rx_pkts_truncated += smb->rx_pkts_truncated;
1188 stat->rx_fifo_oflows += smb->rx_fifo_oflows;
1189 stat->rx_rrs_errs += smb->rx_rrs_errs;
1190 stat->rx_alignerrs += smb->rx_alignerrs;
1191 stat->rx_bcast_bytes += smb->rx_bcast_bytes;
1192 stat->rx_mcast_bytes += smb->rx_mcast_bytes;
1193 stat->rx_pkts_filtered += smb->rx_pkts_filtered;
1196 stat->tx_frames += smb->tx_frames;
1197 stat->tx_bcast_frames += smb->tx_bcast_frames;
1198 stat->tx_mcast_frames += smb->tx_mcast_frames;
1199 stat->tx_pause_frames += smb->tx_pause_frames;
1200 stat->tx_excess_defer += smb->tx_excess_defer;
1201 stat->tx_control_frames += smb->tx_control_frames;
1202 stat->tx_deferred += smb->tx_deferred;
1203 stat->tx_bytes += smb->tx_bytes;
1204 stat->tx_pkts_64 += smb->tx_pkts_64;
1205 stat->tx_pkts_65_127 += smb->tx_pkts_65_127;
1206 stat->tx_pkts_128_255 += smb->tx_pkts_128_255;
1207 stat->tx_pkts_256_511 += smb->tx_pkts_256_511;
1208 stat->tx_pkts_512_1023 += smb->tx_pkts_512_1023;
1209 stat->tx_pkts_1024_1518 += smb->tx_pkts_1024_1518;
1210 stat->tx_pkts_1519_max += smb->tx_pkts_1519_max;
1211 stat->tx_single_colls += smb->tx_single_colls;
1212 stat->tx_multi_colls += smb->tx_multi_colls;
1213 stat->tx_late_colls += smb->tx_late_colls;
1214 stat->tx_excess_colls += smb->tx_excess_colls;
1215 stat->tx_underrun += smb->tx_underrun;
1216 stat->tx_desc_underrun += smb->tx_desc_underrun;
1217 stat->tx_lenerrs += smb->tx_lenerrs;
1218 stat->tx_pkts_truncated += smb->tx_pkts_truncated;
1219 stat->tx_bcast_bytes += smb->tx_bcast_bytes;
1220 stat->tx_mcast_bytes += smb->tx_mcast_bytes;
1222 ifp->if_collisions += smb->tx_single_colls +
1223 smb->tx_multi_colls * 2 + smb->tx_late_colls +
1224 smb->tx_excess_colls * HDPX_CFG_RETRY_DEFAULT;
1226 ifp->if_oerrors += smb->tx_late_colls + smb->tx_excess_colls +
1227 smb->tx_underrun + smb->tx_pkts_truncated;
1229 ifp->if_ierrors += smb->rx_crcerrs + smb->rx_lenerrs +
1230 smb->rx_runts + smb->rx_pkts_truncated +
1231 smb->rx_fifo_oflows + smb->rx_rrs_errs +
1232 smb->rx_alignerrs;