Lines Matching refs:stats
284 void ovs_vport_get_stats(struct vport *vport, struct ovs_vport_stats *stats) in ovs_vport_get_stats() argument
290 stats->rx_errors = dev_stats->rx_errors; in ovs_vport_get_stats()
291 stats->tx_errors = dev_stats->tx_errors; in ovs_vport_get_stats()
292 stats->tx_dropped = dev_stats->tx_dropped; in ovs_vport_get_stats()
293 stats->rx_dropped = dev_stats->rx_dropped; in ovs_vport_get_stats()
295 stats->rx_bytes = dev_stats->rx_bytes; in ovs_vport_get_stats()
296 stats->rx_packets = dev_stats->rx_packets; in ovs_vport_get_stats()
297 stats->tx_bytes = dev_stats->tx_bytes; in ovs_vport_get_stats()
298 stats->tx_packets = dev_stats->tx_packets; in ovs_vport_get_stats()
320 const struct vport_upcall_stats_percpu *stats; in ovs_vport_get_upcall_stats() local
323 stats = per_cpu_ptr(vport->upcall_stats, i); in ovs_vport_get_upcall_stats()
325 start = u64_stats_fetch_begin(&stats->syncp); in ovs_vport_get_upcall_stats()
326 tx_success += u64_stats_read(&stats->n_success); in ovs_vport_get_upcall_stats()
327 tx_fail += u64_stats_read(&stats->n_fail); in ovs_vport_get_upcall_stats()
328 } while (u64_stats_fetch_retry(&stats->syncp, start)); in ovs_vport_get_upcall_stats()
564 vport->dev->stats.tx_errors++; in ovs_vport_send()