Re: [dpdk-dev] [PATCH v3 3/4] vdpa/mlx5: support virtio queue statistics get

2020-06-18 Thread Maxime Coquelin
On 6/2/20 5:47 PM, Matan Azrad wrote: > Add support for statistics operations. > > A DevX counter object is allocated per virtq in order to manage the > virtq statistics. > > The counter object is allocated before the virtq creation and destroyed > after it, so the statistics are valid only in

[dpdk-dev] [PATCH v3 3/4] vdpa/mlx5: support virtio queue statistics get

2020-06-02 Thread Matan Azrad
Add support for statistics operations. A DevX counter object is allocated per virtq in order to manage the virtq statistics. The counter object is allocated before the virtq creation and destroyed after it, so the statistics are valid only in the life time of the virtq. Signed-off-by: Matan Azra