app/testpmd: workaround deadlock in hot-unplug callback
authorJeff Guo <jia.guo@intel.com>
Thu, 15 Nov 2018 09:18:24 +0000 (17:18 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 18 Nov 2018 16:17:07 +0000 (17:17 +0100)
commitcc1bf3077d750cea01a9432ea42d41a45f5a2c98
treef69adf0d99e26a35c37bae5107336454307e4ded
parent8ffe738651240c3814bf1ef4c29d0e06c0f793c6
app/testpmd: workaround deadlock in hot-unplug callback

Because the user's callback is invoked in eal interrupt callback, the
interrupt callback need to be finished before it can be unregistered
when detaching device. So finish callback soon and use a deferred
removal to detach device is need.

It is a workaround, once the device detaching be moved into the eal in
the future, the deferred removal could be deleted. This patch aim to
add this workaround and refine the function name and the description to
be more explicit and comment the limitation.

Fixes: 2049c5113fe8 ("app/testpmd: use hotplug failure handler")

Signed-off-by: Jeff Guo <jia.guo@intel.com>
app/test-pmd/testpmd.c