Lines Matching full:smb

952 		    "could not create SMB DMA tag.\n");  in age_dma_alloc()
1037 /* SMB block */ in age_dma_alloc()
1044 "could not allocate DMA'able memory for SMB block.\n"); in age_dma_alloc()
1053 "could not load DMA'able memory for SMB block.\n"); in age_dma_alloc()
1265 /* SMB block */ in age_dma_free()
1999 struct smb *smb; in age_stats_update() local
2010 smb = sc->age_rdata.age_smb_block; in age_stats_update()
2011 if (smb->updated == 0) in age_stats_update()
2016 stat->rx_frames += smb->rx_frames; in age_stats_update()
2017 stat->rx_bcast_frames += smb->rx_bcast_frames; in age_stats_update()
2018 stat->rx_mcast_frames += smb->rx_mcast_frames; in age_stats_update()
2019 stat->rx_pause_frames += smb->rx_pause_frames; in age_stats_update()
2020 stat->rx_control_frames += smb->rx_control_frames; in age_stats_update()
2021 stat->rx_crcerrs += smb->rx_crcerrs; in age_stats_update()
2022 stat->rx_lenerrs += smb->rx_lenerrs; in age_stats_update()
2023 stat->rx_bytes += smb->rx_bytes; in age_stats_update()
2024 stat->rx_runts += smb->rx_runts; in age_stats_update()
2025 stat->rx_fragments += smb->rx_fragments; in age_stats_update()
2026 stat->rx_pkts_64 += smb->rx_pkts_64; in age_stats_update()
2027 stat->rx_pkts_65_127 += smb->rx_pkts_65_127; in age_stats_update()
2028 stat->rx_pkts_128_255 += smb->rx_pkts_128_255; in age_stats_update()
2029 stat->rx_pkts_256_511 += smb->rx_pkts_256_511; in age_stats_update()
2030 stat->rx_pkts_512_1023 += smb->rx_pkts_512_1023; in age_stats_update()
2031 stat->rx_pkts_1024_1518 += smb->rx_pkts_1024_1518; in age_stats_update()
2032 stat->rx_pkts_1519_max += smb->rx_pkts_1519_max; in age_stats_update()
2033 stat->rx_pkts_truncated += smb->rx_pkts_truncated; in age_stats_update()
2034 stat->rx_fifo_oflows += smb->rx_fifo_oflows; in age_stats_update()
2035 stat->rx_desc_oflows += smb->rx_desc_oflows; in age_stats_update()
2036 stat->rx_alignerrs += smb->rx_alignerrs; in age_stats_update()
2037 stat->rx_bcast_bytes += smb->rx_bcast_bytes; in age_stats_update()
2038 stat->rx_mcast_bytes += smb->rx_mcast_bytes; in age_stats_update()
2039 stat->rx_pkts_filtered += smb->rx_pkts_filtered; in age_stats_update()
2042 stat->tx_frames += smb->tx_frames; in age_stats_update()
2043 stat->tx_bcast_frames += smb->tx_bcast_frames; in age_stats_update()
2044 stat->tx_mcast_frames += smb->tx_mcast_frames; in age_stats_update()
2045 stat->tx_pause_frames += smb->tx_pause_frames; in age_stats_update()
2046 stat->tx_excess_defer += smb->tx_excess_defer; in age_stats_update()
2047 stat->tx_control_frames += smb->tx_control_frames; in age_stats_update()
2048 stat->tx_deferred += smb->tx_deferred; in age_stats_update()
2049 stat->tx_bytes += smb->tx_bytes; in age_stats_update()
2050 stat->tx_pkts_64 += smb->tx_pkts_64; in age_stats_update()
2051 stat->tx_pkts_65_127 += smb->tx_pkts_65_127; in age_stats_update()
2052 stat->tx_pkts_128_255 += smb->tx_pkts_128_255; in age_stats_update()
2053 stat->tx_pkts_256_511 += smb->tx_pkts_256_511; in age_stats_update()
2054 stat->tx_pkts_512_1023 += smb->tx_pkts_512_1023; in age_stats_update()
2055 stat->tx_pkts_1024_1518 += smb->tx_pkts_1024_1518; in age_stats_update()
2056 stat->tx_pkts_1519_max += smb->tx_pkts_1519_max; in age_stats_update()
2057 stat->tx_single_colls += smb->tx_single_colls; in age_stats_update()
2058 stat->tx_multi_colls += smb->tx_multi_colls; in age_stats_update()
2059 stat->tx_late_colls += smb->tx_late_colls; in age_stats_update()
2060 stat->tx_excess_colls += smb->tx_excess_colls; in age_stats_update()
2061 stat->tx_underrun += smb->tx_underrun; in age_stats_update()
2062 stat->tx_desc_underrun += smb->tx_desc_underrun; in age_stats_update()
2063 stat->tx_lenerrs += smb->tx_lenerrs; in age_stats_update()
2064 stat->tx_pkts_truncated += smb->tx_pkts_truncated; in age_stats_update()
2065 stat->tx_bcast_bytes += smb->tx_bcast_bytes; in age_stats_update()
2066 stat->tx_mcast_bytes += smb->tx_mcast_bytes; in age_stats_update()
2069 if_inc_counter(ifp, IFCOUNTER_OPACKETS, smb->tx_frames); in age_stats_update()
2071 if_inc_counter(ifp, IFCOUNTER_COLLISIONS, smb->tx_single_colls + in age_stats_update()
2072 smb->tx_multi_colls + smb->tx_late_colls + in age_stats_update()
2073 smb->tx_excess_colls * HDPX_CFG_RETRY_DEFAULT); in age_stats_update()
2075 if_inc_counter(ifp, IFCOUNTER_OERRORS, smb->tx_excess_colls + in age_stats_update()
2076 smb->tx_late_colls + smb->tx_underrun + in age_stats_update()
2077 smb->tx_pkts_truncated); in age_stats_update()
2079 if_inc_counter(ifp, IFCOUNTER_IPACKETS, smb->rx_frames); in age_stats_update()
2081 if_inc_counter(ifp, IFCOUNTER_IERRORS, smb->rx_crcerrs + in age_stats_update()
2082 smb->rx_lenerrs + smb->rx_runts + smb->rx_pkts_truncated + in age_stats_update()
2083 smb->rx_fifo_oflows + smb->rx_desc_oflows + in age_stats_update()
2084 smb->rx_alignerrs); in age_stats_update()
2087 smb->updated = 0; in age_stats_update()
2167 /* Check whether CMB was updated while serving Tx/Rx/SMB handler. */ in age_int_task()
2774 /* Set CMB/SMB timer and enable them. */ in age_init_locked()
2778 /* Request SMB updates for every seconds. */ in age_init_locked()
2849 /* Stop CMB/SMB updates. */ in age_stop()