vhost: fix deadlock on IOTLB miss
authorMaxime Coquelin <maxime.coquelin@redhat.com>
Thu, 12 Oct 2017 15:38:49 +0000 (17:38 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 13 Oct 2017 20:08:21 +0000 (22:08 +0200)
commit1aadb2f6b1d1d9b13327a3fe7badf40fabcae882
tree65bc4592500baa09ded4b486a379e7ba1b7accf9
parent3ab2d9e8d8594a4b22da1b8393401ef3d80431c3
vhost: fix deadlock on IOTLB miss

An optimization was done to only take the iotlb cache lock
once per packet burst instead of once per IOVA translation.

With this, IOTLB miss requests are sent to Qemu with the lock
held, which can cause a deadlock if the socket buffer is full,
and if Qemu is waiting for an IOTLB update to be done.

Holding the lock is not necessary when sending an IOTLB miss
request, as it is not manipulating the IOTLB cache list, which
the lock protects. Let's just release it while sending the
IOTLB miss.

Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Reviewed-by: Jens Freimann <jfreimann@redhat.com>
lib/librte_vhost/vhost.c