Searched refs:stats_recv (Results 1 – 1 of 1) sorted by relevance
2420 struct virtchnl2_vport_stats *stats_recv; in idpf_send_get_stats_msg() local2435 if (xn_params.recv_mem.iov_len < sizeof(*stats_recv)) { in idpf_send_get_stats_msg()2440 stats_recv = xn_params.recv_mem.iov_base; in idpf_send_get_stats_msg()2444 netstats->rx_packets = le64_to_cpu(stats_recv->rx_unicast) + in idpf_send_get_stats_msg()2445 le64_to_cpu(stats_recv->rx_multicast) + in idpf_send_get_stats_msg()2446 le64_to_cpu(stats_recv->rx_broadcast); in idpf_send_get_stats_msg()2447 netstats->tx_packets = le64_to_cpu(stats_recv->tx_unicast) + in idpf_send_get_stats_msg()2448 le64_to_cpu(stats_recv->tx_multicast) + in idpf_send_get_stats_msg()2449 le64_to_cpu(stats_recv->tx_broadcast); in idpf_send_get_stats_msg()2450 netstats->rx_bytes = le64_to_cpu(stats_recv->rx_bytes); in idpf_send_get_stats_msg()[all …]