Re: [ovs-dev] [PATCH v2 1/2] netdev-dpdk: Fix vHost stats.

2016-08-18 Thread Daniele Di Proietto
On 18/08/2016 06:50, "Stokes, Ian" wrote: >> This patch introduces function 'netdev_dpdk_filter_packet_len()' which is >> intended to find and remove all packets with 'pkt_len > max_packet_len' >> from the Tx batch. >> >> It fixes inaccurate counting of 'tx_bytes' in vHost case if there was

Re: [ovs-dev] [PATCH v2 1/2] netdev-dpdk: Fix vHost stats.

2016-08-18 Thread Stokes, Ian
> This patch introduces function 'netdev_dpdk_filter_packet_len()' which is > intended to find and remove all packets with 'pkt_len > max_packet_len' > from the Tx batch. > > It fixes inaccurate counting of 'tx_bytes' in vHost case if there was > dropped packets and allows to simplify send functio

[ovs-dev] [PATCH v2 1/2] netdev-dpdk: Fix vHost stats.

2016-08-18 Thread Ilya Maximets
This patch introduces function 'netdev_dpdk_filter_packet_len()' which is intended to find and remove all packets with 'pkt_len > max_packet_len' from the Tx batch. It fixes inaccurate counting of 'tx_bytes' in vHost case if there was dropped packets and allows to simplify send function. Fixes: 0