Re: [dpdk-dev] [PATCH v2 5/6] net/virtio: fix multiple process support

2016-12-28 Thread Yuanhan Liu
On Wed, Dec 28, 2016 at 07:02:41PM +0800, Yuanhan Liu wrote: ... > Cc: sta...@kernel.org I knew I would make a mistake like this some day :/ Not my first time typing wrong, but it's the first time sending it out. Sorry for that. Fixed in this reply. --yliu

[dpdk-dev] [PATCH v2 5/6] net/virtio: fix multiple process support

2016-12-28 Thread Yuanhan Liu
The introduce of virtio 1.0 support brings yet another set of ops, badly, it's not handled correctly, that it breaks the multiple process support. The issue is the data/function pointer may vary from different processes, and the old used to do one time set (for primary process only). That said, th