Home
last modified time | relevance | path

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

/f-stack/dpdk/drivers/net/octeontx/base/
H A Docteontx_bgx.c151 octeontx_mbox_bgx_port_stats_t bgx_stats; in octeontx_bgx_port_stats() local
159 res = octeontx_mbox_send(&hdr, NULL, 0, &bgx_stats, len); in octeontx_bgx_port_stats()
163 stats->rx_packets = bgx_stats.rx_packets; in octeontx_bgx_port_stats()
164 stats->rx_bytes = bgx_stats.rx_bytes; in octeontx_bgx_port_stats()
165 stats->rx_dropped = bgx_stats.rx_dropped; in octeontx_bgx_port_stats()
166 stats->rx_errors = bgx_stats.rx_errors; in octeontx_bgx_port_stats()
167 stats->tx_packets = bgx_stats.tx_packets; in octeontx_bgx_port_stats()
168 stats->tx_bytes = bgx_stats.tx_bytes; in octeontx_bgx_port_stats()
169 stats->tx_dropped = bgx_stats.tx_dropped; in octeontx_bgx_port_stats()
170 stats->tx_errors = bgx_stats.tx_errors; in octeontx_bgx_port_stats()
/f-stack/dpdk/drivers/net/octeontx/
H A Docteontx_ethdev.c298 octeontx_mbox_bgx_port_stats_t bgx_stats; in octeontx_port_stats() local
303 res = octeontx_bgx_port_stats(nic->port_id, &bgx_stats); in octeontx_port_stats()
309 stats->ipackets = bgx_stats.rx_packets; in octeontx_port_stats()
310 stats->ibytes = bgx_stats.rx_bytes; in octeontx_port_stats()
311 stats->imissed = bgx_stats.rx_dropped; in octeontx_port_stats()
312 stats->ierrors = bgx_stats.rx_errors; in octeontx_port_stats()
313 stats->opackets = bgx_stats.tx_packets; in octeontx_port_stats()
314 stats->obytes = bgx_stats.tx_bytes; in octeontx_port_stats()
315 stats->oerrors = bgx_stats.tx_errors; in octeontx_port_stats()