[dpdk-dev] [PATCH v4 0/2] net/vhost: add pmd xstats support

2016-09-21 Thread Zhiyong Yang
Subject: [PATCH v4 1/2] net/vhost: add a new defined stats struct The patch moves all stats counters to a new defined struct vhost_stats as follows, in order to manage all stats counters in a unified way and simplify the subsequent function implementation(vhost_dev_xstats_reset). Signed-off-by: Z

[dpdk-dev] [PATCH v4 0/2] net/vhost: add pmd xstats support

2016-09-21 Thread Zhiyong Yang
Patch 1 moves all stats counters to a new defined struct vhost_stats, in order to manage all stats counters in a consistent way. Changes in v4: A queue can be only used as TX or RX, So, we can use pkts instead of rx_pkts and tx_pkts, the same to rx_bytes and tx_bytes. Before modification: struct v