vhost: fix long stall of negotiation
authorYuanhan Liu <yuanhan.liu@linux.intel.com>
Sun, 22 Jan 2017 08:46:59 +0000 (16:46 +0800)
committerYuanhan Liu <yuanhan.liu@linux.intel.com>
Sat, 28 Jan 2017 13:25:40 +0000 (14:25 +0100)
commitb8b992e93f387b0d0dda00b9feb6adb05ffe081c
tree646c4e0a59a57a1a0d7a1a2ac1971efdfb298907
parentcc7301908c031a288eeb6c12db21b938755b67ee
vhost: fix long stall of negotiation

Setting up the mapping from GPA (guest physical address) to HPA (guest
physical address) could be very time consuming when the guest memory is
backened with small pages (4K). The bigger the guest memory, the longer
it takes. This could lead a very long vhost-user negotiation.

Since the mapping is only needed in zero copy mode so far, we could
avoid such time consuming settup when zero copy is turned off (which is
the default case).

It's actually a workaround, a right fix might be to start a new thread,
and hide the big latency there.

Fixes: e246896178e6 ("vhost: get guest/host physical address mappings")
Cc: stable@dpdk.org
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
lib/librte_vhost/vhost_user.c