search for: virtnet_gstats_len

Displaying 2 results from an estimated 2 matches for "virtnet_gstats_len".

2017 Dec 20
4
[PATCH net-next] virtio_net: Add ethtool stats
...+ { "rx_length_errors", VIRTNET_NETDEV_STAT(rx_length_errors) }, + { "rx_frame_errors", VIRTNET_NETDEV_STAT(rx_frame_errors) }, + { "tx_dropped", VIRTNET_NETDEV_STAT(tx_dropped) }, + { "tx_fifo_errors", VIRTNET_NETDEV_STAT(tx_fifo_errors) }, +}; + +# define VIRTNET_GSTATS_LEN ARRAY_SIZE(virtnet_gstrings_stats) + +struct virtnet_queue_stats { + struct u64_stats_sync syncp; + u64 bytes; + u64 packets; }; /* Internal representation of a send virtqueue */ @@ -86,6 +103,8 @@ struct send_queue { /* Name of the send queue: output.$index */ char name[40]; + struct vir...
2017 Dec 20
4
[PATCH net-next] virtio_net: Add ethtool stats
...+ { "rx_length_errors", VIRTNET_NETDEV_STAT(rx_length_errors) }, + { "rx_frame_errors", VIRTNET_NETDEV_STAT(rx_frame_errors) }, + { "tx_dropped", VIRTNET_NETDEV_STAT(tx_dropped) }, + { "tx_fifo_errors", VIRTNET_NETDEV_STAT(tx_fifo_errors) }, +}; + +# define VIRTNET_GSTATS_LEN ARRAY_SIZE(virtnet_gstrings_stats) + +struct virtnet_queue_stats { + struct u64_stats_sync syncp; + u64 bytes; + u64 packets; }; /* Internal representation of a send virtqueue */ @@ -86,6 +103,8 @@ struct send_queue { /* Name of the send queue: output.$index */ char name[40]; + struct vir...