net/virtio: fix xstats name
authorZhiyong Yang <zhiyong.yang@intel.com>
Wed, 7 Sep 2016 06:11:00 +0000 (14:11 +0800)
committerYuanhan Liu <yuanhan.liu@linux.intel.com>
Tue, 13 Sep 2016 03:25:09 +0000 (05:25 +0200)
commit81f7234b9e858a7e98bae1eb88bcd02ac93997ce
tree630e74a92454e56b84cc86f57a111edd59400ae6
parenteb9dce6c3eb5f980f5206427d4dd8d7aea0cf960
net/virtio: fix xstats name

We have a stats named "size_1024_1517_packets", while the code
actually counts the range "[1024, 1518]", which is obviously wrong.
The code is as follows in the function virtio_update_packet_stats.

else if (s < 1519)
stats->size_bins[6]++;

We could either fix it by correcting the "if" check in the code,
or fix it by just renaming the stats to conform to the code. The
latter solution is taken because that's what the RFC2819 suggests.

Fixes: 76d4c652e07d ("virtio: add extended stats")

Signed-off-by: Zhiyong Yang <zhiyong.yang@intel.com>
Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
drivers/net/virtio/virtio_ethdev.c