mbox series

[0/1] lib/vhost: support async dequeue for split ring

Message ID 20210602083110.5530-1-yuanx.wang@intel.com (mailing list archive)
Headers
Series lib/vhost: support async dequeue for split ring |

Message

Wang, YuanX June 2, 2021, 8:31 a.m. UTC
  This patch implements asynchronous dequeue data path for split ring.
A new asynchronous dequeue function is introduced. With this function,
the application can try to receive packets from the guest with
offloading large copies to the DMA engine, thus saving precious CPU
cycles.

Yuan Wang (1):
  lib/vhost: support async dequeue for split ring

 doc/guides/prog_guide/vhost_lib.rst |  10 +
 examples/vhost/ioat.c               |  30 +-
 examples/vhost/ioat.h               |   3 +
 examples/vhost/main.c               |  60 +--
 lib/vhost/rte_vhost_async.h         |  44 ++-
 lib/vhost/version.map               |   3 +
 lib/vhost/virtio_net.c              | 549 ++++++++++++++++++++++++++++
 7 files changed, 664 insertions(+), 35 deletions(-)