[dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD

2016-06-30 Thread Yuanhan Liu
On Fri, Jun 24, 2016 at 10:17:20AM +0800, Yuanhan Liu wrote: > On Fri, Jun 24, 2016 at 11:04:20AM +0900, Tetsuya Mukawa wrote: > > According to 'rte_eth_stats' structure comments, 'imissed' > > should represent RX error counting, but currently 'imissed' is > > used to count TX error. > > The patch

[dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD

2016-06-24 Thread Tetsuya Mukawa
On 2016/06/24 11:17, Yuanhan Liu wrote: > On Fri, Jun 24, 2016 at 11:04:20AM +0900, Tetsuya Mukawa wrote: >> According to 'rte_eth_stats' structure comments, 'imissed' >> should represent RX error counting, but currently 'imissed' is >> used to count TX error. >> The patch replaces 'imissed' by 'oe

[dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD

2016-06-24 Thread Tetsuya Mukawa
According to 'rte_eth_stats' structure comments, 'imissed' should represent RX error counting, but currently 'imissed' is used to count TX error. The patch replaces 'imissed' by 'oerrors'. Fixes: ee584e9710b9 ("vhost: add driver on top of the library") Signed-off-by: Tetsuya Mukawa --- drivers/n

[dpdk-dev] [PATCH] vhost: fix Tx error counting of vhost PMD

2016-06-24 Thread Yuanhan Liu
On Fri, Jun 24, 2016 at 11:04:20AM +0900, Tetsuya Mukawa wrote: > According to 'rte_eth_stats' structure comments, 'imissed' > should represent RX error counting, but currently 'imissed' is > used to count TX error. > The patch replaces 'imissed' by 'oerrors'. > > Fixes: ee584e9710b9 ("vhost: add