Re: [dpdk-dev] [PATCH 2/4] net/virtio-user: fix the control vq support

2019-01-23 Thread Maxime Coquelin
On 1/22/19 6:01 PM, Tiwei Bie wrote: This patch fixed below issues in the packed ring based control vq support in virtio user: 1. The idx_hdr should be used_idx instead of the id in the desc; 2. We just need to write out a single used descriptor for each descriptor list; 3. The avail/used

[dpdk-dev] [PATCH 2/4] net/virtio-user: fix the control vq support

2019-01-22 Thread Tiwei Bie
This patch fixed below issues in the packed ring based control vq support in virtio user: 1. The idx_hdr should be used_idx instead of the id in the desc; 2. We just need to write out a single used descriptor for each descriptor list; 3. The avail/used bits should be initialized to 0; Meanwhil