Lines Matching refs:tmp_counters
91 struct bnxt_re_cnp_counters tmp_counters[2] = {{}, {}}; in bnxt_re_get_qos_stats() local
123 tmp_counters[0].cnp_tx_pkts = le64_to_cpu(resp.packet_0); in bnxt_re_get_qos_stats()
124 tmp_counters[0].cnp_tx_bytes = le64_to_cpu(resp.byte_0); in bnxt_re_get_qos_stats()
125 tmp_counters[0].cnp_rx_pkts = le64_to_cpu(resp.packet_1); in bnxt_re_get_qos_stats()
126 tmp_counters[0].cnp_rx_bytes = le64_to_cpu(resp.byte_1); in bnxt_re_get_qos_stats()
142 cnps->prev[0].cnp_tx_pkts = tmp_counters[0].cnp_tx_pkts; in bnxt_re_get_qos_stats()
143 cnps->prev[0].cnp_tx_bytes = tmp_counters[0].cnp_tx_bytes; in bnxt_re_get_qos_stats()
144 cnps->prev[0].cnp_rx_pkts = tmp_counters[0].cnp_rx_pkts; in bnxt_re_get_qos_stats()
145 cnps->prev[0].cnp_rx_bytes = tmp_counters[0].cnp_rx_bytes; in bnxt_re_get_qos_stats()
147 cnps->prev[1].cnp_tx_pkts = tmp_counters[1].cnp_tx_pkts; in bnxt_re_get_qos_stats()
148 cnps->prev[1].cnp_tx_bytes = tmp_counters[1].cnp_tx_bytes; in bnxt_re_get_qos_stats()
149 cnps->prev[1].cnp_rx_pkts = tmp_counters[1].cnp_rx_pkts; in bnxt_re_get_qos_stats()
150 cnps->prev[1].cnp_rx_bytes = tmp_counters[1].cnp_rx_bytes; in bnxt_re_get_qos_stats()
174 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()