Lines Matching refs:pcpu_stats
373 struct mlxsw_sp_port_pcpu_stats *pcpu_stats; in mlxsw_sp_port_xmit() local
389 this_cpu_inc(mlxsw_sp_port->pcpu_stats->tx_dropped); in mlxsw_sp_port_xmit()
396 this_cpu_inc(mlxsw_sp_port->pcpu_stats->tx_dropped); in mlxsw_sp_port_xmit()
408 pcpu_stats = this_cpu_ptr(mlxsw_sp_port->pcpu_stats); in mlxsw_sp_port_xmit()
409 u64_stats_update_begin(&pcpu_stats->syncp); in mlxsw_sp_port_xmit()
410 pcpu_stats->tx_packets++; in mlxsw_sp_port_xmit()
411 pcpu_stats->tx_bytes += len; in mlxsw_sp_port_xmit()
412 u64_stats_update_end(&pcpu_stats->syncp); in mlxsw_sp_port_xmit()
414 this_cpu_inc(mlxsw_sp_port->pcpu_stats->tx_dropped); in mlxsw_sp_port_xmit()
460 p = per_cpu_ptr(mlxsw_sp_port->pcpu_stats, i); in mlxsw_sp_port_get_stats64()
1233 mlxsw_sp_port->pcpu_stats = in mlxsw_sp_port_create()
1235 if (!mlxsw_sp_port->pcpu_stats) { in mlxsw_sp_port_create()
1331 free_percpu(mlxsw_sp_port->pcpu_stats); in mlxsw_sp_port_create()
1354 free_percpu(mlxsw_sp_port->pcpu_stats); in mlxsw_sp_port_remove()
1469 struct mlxsw_sp_port_pcpu_stats *pcpu_stats; in mlxsw_sp_rx_listener_func() local
1479 pcpu_stats = this_cpu_ptr(mlxsw_sp_port->pcpu_stats); in mlxsw_sp_rx_listener_func()
1480 u64_stats_update_begin(&pcpu_stats->syncp); in mlxsw_sp_rx_listener_func()
1481 pcpu_stats->rx_packets++; in mlxsw_sp_rx_listener_func()
1482 pcpu_stats->rx_bytes += skb->len; in mlxsw_sp_rx_listener_func()
1483 u64_stats_update_end(&pcpu_stats->syncp); in mlxsw_sp_rx_listener_func()