[dpdk-dev] [PATCH 3/7] vhost: refactor source code structure

2016-08-24 Thread Maxime Coquelin
On 08/18/2016 10:48 AM, Yuanhan Liu wrote: > The code structure is a bit messy now. For example, vhost-user message > handling is spread to three different files: > > vhost-net-user.c virtio-net.c virtio-net-user.c > > Where, vhost-net-user.c is the entrance to handle all those messages > a

[dpdk-dev] [PATCH 3/7] vhost: refactor source code structure

2016-08-18 Thread Yuanhan Liu
The code structure is a bit messy now. For example, vhost-user message handling is spread to three different files: vhost-net-user.c virtio-net.c virtio-net-user.c Where, vhost-net-user.c is the entrance to handle all those messages and then invoke the right method for a specific message. S