[dpdk-dev] [PATCH v4 2/6] vhost: rewrite enqueue

2016-09-07 Thread Yuanhan Liu
Hmmm, yet another email didn't send out successfully. Resend. BTW, please work out v5 on top of the latest next-virtio tree. Thanks. --yliu On Mon, Sep 05, 2016 at 02:39:25PM +0800, Yuanhan Liu wrote: On Mon, Aug 29, 2016 at 11:36:00PM -0400, Zhihong Wang wrote: > This patch

[dpdk-dev] [PATCH v4 2/6] vhost: rewrite enqueue

2016-09-07 Thread Wang, Zhihong
> -Original Message- > From: Yuanhan Liu [mailto:yuanhan.liu at linux.intel.com] > Sent: Wednesday, September 7, 2016 1:33 PM > To: Wang, Zhihong > Cc: dev at dpdk.org; maxime.coquelin at redhat.com; > thomas.monjalon at 6wind.com > Subject: Re: [PATCH v4 2/6] vhost: rewrite enqueue >

[dpdk-dev] [PATCH v4 2/6] vhost: rewrite enqueue

2016-09-05 Thread Yuanhan Liu
On Mon, Aug 29, 2016 at 11:36:00PM -0400, Zhihong Wang wrote: > This patch implements the vhost logic from scratch into a single function > designed for high performance and better maintainability. > > This is the baseline version of the new code, more optimization will be > added in the

[dpdk-dev] [PATCH v4 2/6] vhost: rewrite enqueue

2016-08-30 Thread Zhihong Wang
This patch implements the vhost logic from scratch into a single function designed for high performance and better maintainability. This is the baseline version of the new code, more optimization will be added in the following patches in this patch set. --- Changes in v4: 1. Refactor the code