Home | History | Annotate | Download | only in pci

Lines Matching defs:smb

865 	 * Create DMA stuffs for SMB block
875 /* Allocate DMA'able memory for SMB block */
881 "SMB block, error = %i\n", device_xname(sc->sc_dev), error);
893 /* Load the DMA map for SMB block */
898 printf("%s: could not load DMA'able memory for SMB block, "
1043 /* SMB block */
1851 /* Set CMB/SMB timer and enable them. */
1856 /* Request SMB updates for every seconds. */
1934 /* Stop CMB/SMB updates. */
1990 struct smb *smb;
1998 smb = sc->age_rdata.age_smb_block;
1999 if (smb->updated == 0)
2003 stat->rx_frames += smb->rx_frames;
2004 stat->rx_bcast_frames += smb->rx_bcast_frames;
2005 stat->rx_mcast_frames += smb->rx_mcast_frames;
2006 stat->rx_pause_frames += smb->rx_pause_frames;
2007 stat->rx_control_frames += smb->rx_control_frames;
2008 stat->rx_crcerrs += smb->rx_crcerrs;
2009 stat->rx_lenerrs += smb->rx_lenerrs;
2010 stat->rx_bytes += smb->rx_bytes;
2011 stat->rx_runts += smb->rx_runts;
2012 stat->rx_fragments += smb->rx_fragments;
2013 stat->rx_pkts_64 += smb->rx_pkts_64;
2014 stat->rx_pkts_65_127 += smb->rx_pkts_65_127;
2015 stat->rx_pkts_128_255 += smb->rx_pkts_128_255;
2016 stat->rx_pkts_256_511 += smb->rx_pkts_256_511;
2017 stat->rx_pkts_512_1023 += smb->rx_pkts_512_1023;
2018 stat->rx_pkts_1024_1518 += smb->rx_pkts_1024_1518;
2019 stat->rx_pkts_1519_max += smb->rx_pkts_1519_max;
2020 stat->rx_pkts_truncated += smb->rx_pkts_truncated;
2021 stat->rx_fifo_oflows += smb->rx_fifo_oflows;
2022 stat->rx_desc_oflows += smb->rx_desc_oflows;
2023 stat->rx_alignerrs += smb->rx_alignerrs;
2024 stat->rx_bcast_bytes += smb->rx_bcast_bytes;
2025 stat->rx_mcast_bytes += smb->rx_mcast_bytes;
2026 stat->rx_pkts_filtered += smb->rx_pkts_filtered;
2029 stat->tx_frames += smb->tx_frames;
2030 stat->tx_bcast_frames += smb->tx_bcast_frames;
2031 stat->tx_mcast_frames += smb->tx_mcast_frames;
2032 stat->tx_pause_frames += smb->tx_pause_frames;
2033 stat->tx_excess_defer += smb->tx_excess_defer;
2034 stat->tx_control_frames += smb->tx_control_frames;
2035 stat->tx_deferred += smb->tx_deferred;
2036 stat->tx_bytes += smb->tx_bytes;
2037 stat->tx_pkts_64 += smb->tx_pkts_64;
2038 stat->tx_pkts_65_127 += smb->tx_pkts_65_127;
2039 stat->tx_pkts_128_255 += smb->tx_pkts_128_255;
2040 stat->tx_pkts_256_511 += smb->tx_pkts_256_511;
2041 stat->tx_pkts_512_1023 += smb->tx_pkts_512_1023;
2042 stat->tx_pkts_1024_1518 += smb->tx_pkts_1024_1518;
2043 stat->tx_pkts_1519_max += smb->tx_pkts_1519_max;
2044 stat->tx_single_colls += smb->tx_single_colls;
2045 stat->tx_multi_colls += smb->tx_multi_colls;
2046 stat->tx_late_colls += smb->tx_late_colls;
2047 stat->tx_excess_colls += smb->tx_excess_colls;
2048 stat->tx_underrun += smb->tx_underrun;
2049 stat->tx_desc_underrun += smb->tx_desc_underrun;
2050 stat->tx_lenerrs += smb->tx_lenerrs;
2051 stat->tx_pkts_truncated += smb->tx_pkts_truncated;
2052 stat->tx_bcast_bytes += smb->tx_bcast_bytes;
2053 stat->tx_mcast_bytes += smb->tx_mcast_bytes;
2058 if_statadd_ref(ifp, nsr, if_opackets, smb->tx_frames);
2061 smb->tx_single_colls +
2062 smb->tx_multi_colls + smb->tx_late_colls +
2063 smb->tx_excess_colls * HDPX_CFG_RETRY_DEFAULT);
2066 smb->tx_excess_colls +
2067 smb->tx_late_colls + smb->tx_underrun +
2068 smb->tx_pkts_truncated);
2071 smb->rx_crcerrs + smb->rx_lenerrs +
2072 smb->rx_runts + smb->rx_pkts_truncated +
2073 smb->rx_fifo_oflows + smb->rx_desc_oflows +
2074 smb->rx_alignerrs);
2079 smb->updated = 0;