search for: tx_queue_1_packets

Displaying 4 results from an estimated 4 matches for "tx_queue_1_packets".

Did you mean: rx_queue_1_packets
2017 Dec 20
4
[PATCH net-next] virtio_net: Add ethtool stats
...0 rx_length_errors: 0 rx_frame_errors: 0 tx_dropped: 0 tx_fifo_errors: 0 rx_queue_0_packets: 2090408 rx_queue_0_bytes: 3164825094 rx_queue_1_packets: 2082531 rx_queue_1_bytes: 3152932314 tx_queue_0_packets: 2770841 tx_queue_0_bytes: 4194955474 tx_queue_1_packets: 3084697 tx_queue_1_bytes: 4670196372 Signed-off-by: Toshiaki Makita <makita.toshiaki at lab.ntt.co.jp> --- drivers/net/virtio_net.c | 187 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 136 insertions(+), 51 deletions(-) diff --git a/drivers/net/virtio_net.c b/driver...
2017 Dec 20
4
[PATCH net-next] virtio_net: Add ethtool stats
...0 rx_length_errors: 0 rx_frame_errors: 0 tx_dropped: 0 tx_fifo_errors: 0 rx_queue_0_packets: 2090408 rx_queue_0_bytes: 3164825094 rx_queue_1_packets: 2082531 rx_queue_1_bytes: 3152932314 tx_queue_0_packets: 2770841 tx_queue_0_bytes: 4194955474 tx_queue_1_packets: 3084697 tx_queue_1_bytes: 4670196372 Signed-off-by: Toshiaki Makita <makita.toshiaki at lab.ntt.co.jp> --- drivers/net/virtio_net.c | 187 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 136 insertions(+), 51 deletions(-) diff --git a/drivers/net/virtio_net.c b/driver...
2018 Jan 17
1
[PATCH v2 net-next] virtio_net: Add ethtool stats
...to debug performance problems on multiqueue environment. $ ethtool -S ens10 NIC statistics: rx_queue_0_packets: 2090408 rx_queue_0_bytes: 3164825094 rx_queue_1_packets: 2082531 rx_queue_1_bytes: 3152932314 tx_queue_0_packets: 2770841 tx_queue_0_bytes: 4194955474 tx_queue_1_packets: 3084697 tx_queue_1_bytes: 4670196372 This change converts existing per-cpu stats structure into per-queue one. This should not impact on performance since each queue counter is not updated concurrently by multiple cpus. Performance numbers: - Guest has 2 vcpus and 2 queues - Guest runs ne...
2017 Dec 20
0
[PATCH net-next] virtio_net: Add ethtool stats
...t; tx_dropped: 0 > tx_fifo_errors: 0 > rx_queue_0_packets: 2090408 > rx_queue_0_bytes: 3164825094 > rx_queue_1_packets: 2082531 > rx_queue_1_bytes: 3152932314 > tx_queue_0_packets: 2770841 > tx_queue_0_bytes: 4194955474 > tx_queue_1_packets: 3084697 > tx_queue_1_bytes: 4670196372 > > Signed-off-by: Toshiaki Makita<makita.toshiaki at lab.ntt.co.jp> Thanks for the patch. This is not the first patch that wants to do this. Maybe you can go through the previous comments (E.g there's one in https://patchwork.ozla...