Lines Matching full:smb
2089 struct smb sb; in ale_stats_clear()
2108 struct smb sb, *smb; in ale_stats_update() local
2117 smb = &sb; in ale_stats_update()
2131 stat->rx_frames += smb->rx_frames; in ale_stats_update()
2132 stat->rx_bcast_frames += smb->rx_bcast_frames; in ale_stats_update()
2133 stat->rx_mcast_frames += smb->rx_mcast_frames; in ale_stats_update()
2134 stat->rx_pause_frames += smb->rx_pause_frames; in ale_stats_update()
2135 stat->rx_control_frames += smb->rx_control_frames; in ale_stats_update()
2136 stat->rx_crcerrs += smb->rx_crcerrs; in ale_stats_update()
2137 stat->rx_lenerrs += smb->rx_lenerrs; in ale_stats_update()
2138 stat->rx_bytes += smb->rx_bytes; in ale_stats_update()
2139 stat->rx_runts += smb->rx_runts; in ale_stats_update()
2140 stat->rx_fragments += smb->rx_fragments; in ale_stats_update()
2141 stat->rx_pkts_64 += smb->rx_pkts_64; in ale_stats_update()
2142 stat->rx_pkts_65_127 += smb->rx_pkts_65_127; in ale_stats_update()
2143 stat->rx_pkts_128_255 += smb->rx_pkts_128_255; in ale_stats_update()
2144 stat->rx_pkts_256_511 += smb->rx_pkts_256_511; in ale_stats_update()
2145 stat->rx_pkts_512_1023 += smb->rx_pkts_512_1023; in ale_stats_update()
2146 stat->rx_pkts_1024_1518 += smb->rx_pkts_1024_1518; in ale_stats_update()
2147 stat->rx_pkts_1519_max += smb->rx_pkts_1519_max; in ale_stats_update()
2148 stat->rx_pkts_truncated += smb->rx_pkts_truncated; in ale_stats_update()
2149 stat->rx_fifo_oflows += smb->rx_fifo_oflows; in ale_stats_update()
2150 stat->rx_rrs_errs += smb->rx_rrs_errs; in ale_stats_update()
2151 stat->rx_alignerrs += smb->rx_alignerrs; in ale_stats_update()
2152 stat->rx_bcast_bytes += smb->rx_bcast_bytes; in ale_stats_update()
2153 stat->rx_mcast_bytes += smb->rx_mcast_bytes; in ale_stats_update()
2154 stat->rx_pkts_filtered += smb->rx_pkts_filtered; in ale_stats_update()
2157 stat->tx_frames += smb->tx_frames; in ale_stats_update()
2158 stat->tx_bcast_frames += smb->tx_bcast_frames; in ale_stats_update()
2159 stat->tx_mcast_frames += smb->tx_mcast_frames; in ale_stats_update()
2160 stat->tx_pause_frames += smb->tx_pause_frames; in ale_stats_update()
2161 stat->tx_excess_defer += smb->tx_excess_defer; in ale_stats_update()
2162 stat->tx_control_frames += smb->tx_control_frames; in ale_stats_update()
2163 stat->tx_deferred += smb->tx_deferred; in ale_stats_update()
2164 stat->tx_bytes += smb->tx_bytes; in ale_stats_update()
2165 stat->tx_pkts_64 += smb->tx_pkts_64; in ale_stats_update()
2166 stat->tx_pkts_65_127 += smb->tx_pkts_65_127; in ale_stats_update()
2167 stat->tx_pkts_128_255 += smb->tx_pkts_128_255; in ale_stats_update()
2168 stat->tx_pkts_256_511 += smb->tx_pkts_256_511; in ale_stats_update()
2169 stat->tx_pkts_512_1023 += smb->tx_pkts_512_1023; in ale_stats_update()
2170 stat->tx_pkts_1024_1518 += smb->tx_pkts_1024_1518; in ale_stats_update()
2171 stat->tx_pkts_1519_max += smb->tx_pkts_1519_max; in ale_stats_update()
2172 stat->tx_single_colls += smb->tx_single_colls; in ale_stats_update()
2173 stat->tx_multi_colls += smb->tx_multi_colls; in ale_stats_update()
2174 stat->tx_late_colls += smb->tx_late_colls; in ale_stats_update()
2175 stat->tx_excess_colls += smb->tx_excess_colls; in ale_stats_update()
2176 stat->tx_underrun += smb->tx_underrun; in ale_stats_update()
2177 stat->tx_desc_underrun += smb->tx_desc_underrun; in ale_stats_update()
2178 stat->tx_lenerrs += smb->tx_lenerrs; in ale_stats_update()
2179 stat->tx_pkts_truncated += smb->tx_pkts_truncated; in ale_stats_update()
2180 stat->tx_bcast_bytes += smb->tx_bcast_bytes; in ale_stats_update()
2181 stat->tx_mcast_bytes += smb->tx_mcast_bytes; in ale_stats_update()
2184 if_inc_counter(ifp, IFCOUNTER_OPACKETS, smb->tx_frames); in ale_stats_update()
2186 if_inc_counter(ifp, IFCOUNTER_COLLISIONS, smb->tx_single_colls + in ale_stats_update()
2187 smb->tx_multi_colls * 2 + smb->tx_late_colls + in ale_stats_update()
2188 smb->tx_excess_colls * HDPX_CFG_RETRY_DEFAULT); in ale_stats_update()
2190 if_inc_counter(ifp, IFCOUNTER_OERRORS, smb->tx_late_colls + in ale_stats_update()
2191 smb->tx_excess_colls + smb->tx_underrun + smb->tx_pkts_truncated); in ale_stats_update()
2193 if_inc_counter(ifp, IFCOUNTER_IPACKETS, smb->rx_frames); in ale_stats_update()
2196 smb->rx_crcerrs + smb->rx_lenerrs + in ale_stats_update()
2197 smb->rx_runts + smb->rx_pkts_truncated + in ale_stats_update()
2198 smb->rx_fifo_oflows + smb->rx_rrs_errs + in ale_stats_update()
2199 smb->rx_alignerrs); in ale_stats_update()
2790 * Hardware can be configured to issue SMB interrupt based in ale_init_locked()
2793 * relying on periodic SMB interrupt. in ale_init_locked()