Home
last modified time | relevance | path

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

/freebsd/sys/dev/bnxt/bnxt_re/
H A Dstats.c174 pkts = bnxt_re_stat_diff(tmp_counters[0].cnp_tx_pkts, in bnxt_re_get_qos_stats()
178 diff = bnxt_re_stat_diff(tmp_counters[0].cnp_tx_bytes, in bnxt_re_get_qos_stats()
183 pkts = bnxt_re_stat_diff(tmp_counters[0].cnp_rx_pkts, in bnxt_re_get_qos_stats()
187 bytes = bnxt_re_stat_diff(tmp_counters[0].cnp_rx_bytes, in bnxt_re_get_qos_stats()
197 pkts = bnxt_re_stat_diff(tmp_counters[1].cnp_tx_pkts, in bnxt_re_get_qos_stats()
201 diff = bnxt_re_stat_diff(tmp_counters[1].cnp_tx_bytes, in bnxt_re_get_qos_stats()
205 pkts = bnxt_re_stat_diff(tmp_counters[1].cnp_rx_pkts, in bnxt_re_get_qos_stats()
209 bytes = bnxt_re_stat_diff(tmp_counters[1].cnp_rx_bytes, in bnxt_re_get_qos_stats()
214 pkts = bnxt_re_stat_diff(roce_only_tmp[0].tx_pkts, in bnxt_re_get_qos_stats()
218 diff = bnxt_re_stat_diff(roce_only_tmp[0].tx_bytes, in bnxt_re_get_qos_stats()
[all …]
H A Dstats.h186 static inline u64 bnxt_re_stat_diff(u64 cur, u64 *prev, u64 mask) in bnxt_re_stat_diff() function