Lines Matching refs:xdp_stats
1993 mvpp2_get_xdp_stats(struct mvpp2_port *port, struct mvpp2_pcpu_stats *xdp_stats) in mvpp2_get_xdp_stats() argument
2021 xdp_stats->xdp_redirect += xdp_redirect; in mvpp2_get_xdp_stats()
2022 xdp_stats->xdp_pass += xdp_pass; in mvpp2_get_xdp_stats()
2023 xdp_stats->xdp_drop += xdp_drop; in mvpp2_get_xdp_stats()
2024 xdp_stats->xdp_xmit += xdp_xmit; in mvpp2_get_xdp_stats()
2025 xdp_stats->xdp_xmit_err += xdp_xmit_err; in mvpp2_get_xdp_stats()
2026 xdp_stats->xdp_tx += xdp_tx; in mvpp2_get_xdp_stats()
2027 xdp_stats->xdp_tx_err += xdp_tx_err; in mvpp2_get_xdp_stats()
2033 struct mvpp2_pcpu_stats xdp_stats = {}; in mvpp2_read_stats() local
2064 mvpp2_get_xdp_stats(port, &xdp_stats); in mvpp2_read_stats()
2071 *pstats++ = xdp_stats.xdp_redirect; in mvpp2_read_stats()
2074 *pstats++ = xdp_stats.xdp_pass; in mvpp2_read_stats()
2077 *pstats++ = xdp_stats.xdp_drop; in mvpp2_read_stats()
2080 *pstats++ = xdp_stats.xdp_tx; in mvpp2_read_stats()
2083 *pstats++ = xdp_stats.xdp_tx_err; in mvpp2_read_stats()
2086 *pstats++ = xdp_stats.xdp_xmit; in mvpp2_read_stats()
2089 *pstats++ = xdp_stats.xdp_xmit_err; in mvpp2_read_stats()