examples/vhost: zero copy mode
authorOuyang Changchun <changchun.ouyang@intel.com>
Wed, 28 May 2014 08:06:38 +0000 (16:06 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 28 May 2014 14:00:55 +0000 (16:00 +0200)
commitc3dfe188ba05d495c3e2909e1b401cc9ffa36ee8
tree6e3cfde4647a0dc9d8a57b8b1991d242bac0421e
parent029fd06d40fa8cff7f562dc85d7cc4609d5c91fb
examples/vhost: zero copy mode

This patch supports user space vhost zero copy. It removes packets copying between host and guest in RX/TX.
It introduces an extra ring to store the detached mbufs. At initialization stage all mbufs will put into
this ring; when one guest starts, vhost gets the available buffer address allocated by guest for RX and
translates them into host space addresses, then attaches them to mbufs and puts the attached mbufs into
mempool.
Queue starting and DMA refilling will get mbufs from mempool and use them to set the DMA addresses.

For TX, it gets the buffer addresses of available packets to be transmitted from guest and translates
them to host space addresses, then attaches them to mbufs and puts them to TX queues.
After TX finishes, it pulls mbufs out from mempool, detaches them and puts them back into the extra ring.

Signed-off-by: Ouyang Changchun <changchun.ouyang@intel.com>
Tested-by: Waterman Cao <waterman.cao@intel.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
examples/vhost/main.c
examples/vhost/virtio-net.c
examples/vhost/virtio-net.h