Home
last modified time | relevance | path

Searched refs:decode_buf (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/sys/dev/sfxge/
H A Dsfxge_port.c91 port->mac_stats.decode_buf, NULL)) != EAGAIN) in sfxge_mac_stat_update()
114 mac_stats = (uint64_t *)sc->port.mac_stats.decode_buf; in sfxge_get_counter()
174 val = ((uint64_t *)sc->port.mac_stats.decode_buf)[id]; in sfxge_mac_stat_handler()
603 port->phy_stats.decode_buf)) != EAGAIN) in sfxge_phy_stat_update()
624 val = ((uint32_t *)sc->port.phy_stats.decode_buf)[id]; in sfxge_phy_stat_handler()
673 free(port->phy_stats.decode_buf, M_SFXGE); in sfxge_port_fini()
676 free(port->mac_stats.decode_buf, M_SFXGE); in sfxge_port_fini()
768 port->phy_stats.decode_buf = malloc(EFX_PHY_NSTATS * sizeof(uint32_t), in sfxge_port_init()
791 port->mac_stats.decode_buf = malloc(EFX_MAC_NSTATS * sizeof(uint64_t), in sfxge_port_init()
813 free(port->mac_stats.decode_buf, M_SFXGE); in sfxge_port_init()
[all …]
H A Dsfxge.h231 void *decode_buf; member