[dpdk-dev] [PATCH 1/3] vhost: Fix return value of GET_VRING_BASE message

2015-10-08 Thread Yuanhan Liu
On Wed, Aug 19, 2015 at 06:51:07PM +0900, Tetsuya Mukawa wrote: > When vhost-user frontend sends GET_VRING_BASE, last used index of vring > should be returned. In DPDK vhost library, 'last_used_idx' represents it. > But the value can be over max index value. That's true, and I guess it's a

[dpdk-dev] [PATCH 1/3] vhost: Fix return value of GET_VRING_BASE message

2015-09-28 Thread Xie, Huawei
On 9/25/2015 9:15 PM, Thomas Monjalon wrote: > Huawei, Changchun, > Please could you review this series? > Thanks > > Sorry, recently quite busy. Would check this and Pavel's patch after Chinese Holiday(Oct.1-Oct.7). Btw, Changchun left Intel and could be no longer reached by this mail address. I

[dpdk-dev] [PATCH 1/3] vhost: Fix return value of GET_VRING_BASE message

2015-09-25 Thread Thomas Monjalon
Huawei, Changchun, Please could you review this series? Thanks

[dpdk-dev] [PATCH 1/3] vhost: Fix return value of GET_VRING_BASE message

2015-08-19 Thread Tetsuya Mukawa
When vhost-user frontend sends GET_VRING_BASE, last used index of vring should be returned. In DPDK vhost library, 'last_used_idx' represents it. But the value can be over max index value. To return correct value to vhost frontend, it's needed to be masked. Signed-off-by: Tetsuya Mukawa ---