Lines Matching refs:old_stats
142 struct flow_stats *old_stats; in lan966x_police_port_add() local
171 old_stats = &port->tc.police_stat; in lan966x_police_port_add()
173 old_stats->bytes = new_stats.rx_bytes; in lan966x_police_port_add()
174 old_stats->pkts = new_stats.rx_packets; in lan966x_police_port_add()
175 old_stats->drops = new_stats.rx_dropped; in lan966x_police_port_add()
176 old_stats->lastused = jiffies; in lan966x_police_port_add()
210 struct flow_stats *old_stats; in lan966x_police_port_stats() local
212 old_stats = &port->tc.police_stat; in lan966x_police_port_stats()
216 new_stats.rx_bytes - old_stats->bytes, in lan966x_police_port_stats()
217 new_stats.rx_packets - old_stats->pkts, in lan966x_police_port_stats()
218 new_stats.rx_dropped - old_stats->drops, in lan966x_police_port_stats()
219 old_stats->lastused, in lan966x_police_port_stats()
222 old_stats->bytes = new_stats.rx_bytes; in lan966x_police_port_stats()
223 old_stats->pkts = new_stats.rx_packets; in lan966x_police_port_stats()
224 old_stats->drops = new_stats.rx_dropped; in lan966x_police_port_stats()
225 old_stats->lastused = jiffies; in lan966x_police_port_stats()