vhost: fix async copy on multi-page buffers
authorPatrick Fu <patrick.fu@intel.com>
Wed, 29 Jul 2020 02:04:56 +0000 (10:04 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 29 Jul 2020 22:41:24 +0000 (00:41 +0200)
commit6563cf92380a963f283246e1ca9292fdca66cc57
treeb24ef381d324cb4e4a7ddeb3e4e5f41de624e461
parent570ee25677d8634e99d2120b363f2dd4948d5bac
vhost: fix async copy on multi-page buffers

Async copy fails when single ring buffer vector is split on multiple
physical pages. This happens because current hpa address translation
function doesn't handle multi-page buffers. A new gpa to hpa address
conversion function, which returns the hpa on the first hitting host
pages, is implemented in this patch. Async data path recursively calls
this new function to construct a multi-segments async copy descriptor
for ring buffers crossing physical page boundaries.

Fixes: cd6760da1076 ("vhost: introduce async enqueue for split ring")

Signed-off-by: Patrick Fu <patrick.fu@intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
lib/librte_vhost/vhost.h
lib/librte_vhost/virtio_net.c