Home
last modified time | relevance | path

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

/freebsd/sys/dev/sfxge/
H A Dsfxge_port.c90 port->mac_stats.decode_buf, NULL)) != EAGAIN) in sfxge_mac_stat_update()
113 mac_stats = (uint64_t *)sc->port.mac_stats.decode_buf; in sfxge_get_counter()
173 val = ((uint64_t *)sc->port.mac_stats.decode_buf)[id]; in sfxge_mac_stat_handler()
602 port->phy_stats.decode_buf)) != EAGAIN) in sfxge_phy_stat_update()
623 val = ((uint32_t *)sc->port.phy_stats.decode_buf)[id]; in sfxge_phy_stat_handler()
672 free(port->phy_stats.decode_buf, M_SFXGE); in sfxge_port_fini()
675 free(port->mac_stats.decode_buf, M_SFXGE); in sfxge_port_fini()
767 port->phy_stats.decode_buf = malloc(EFX_PHY_NSTATS * sizeof(uint32_t), in sfxge_port_init()
790 port->mac_stats.decode_buf = malloc(EFX_MAC_NSTATS * sizeof(uint64_t), in sfxge_port_init()
812 free(port->mac_stats.decode_buf, M_SFXGE); in sfxge_port_init()
[all …]
H A Dsfxge.h231 void *decode_buf; member