vfio: Fix runaway interruptible timeout
authorAlex Williamson <alex.williamson@redhat.com>
Fri, 1 May 2015 22:31:41 +0000 (16:31 -0600)
committerAlex Williamson <alex.williamson@redhat.com>
Fri, 1 May 2015 22:31:41 +0000 (16:31 -0600)
commitdb7d4d7f40215843000cb9d441c9149fd42ea36b
tree838cf9aa408444cbed520ccf294d301019f2b3c1
parent5f55d2ae699d1756ad6132786c7f9c27dc456b66
vfio: Fix runaway interruptible timeout

Commit 13060b64b819 ("vfio: Add and use device request op for vfio
bus drivers") incorrectly makes use of an interruptible timeout.
When interrupted, the signal remains pending resulting in subsequent
timeouts occurring instantly.  This makes the loop spin at a much
higher rate than intended.

Instead of making this completely non-interruptible, we can change
this into a sort of interruptible-once behavior and use the "once"
to log debug information.  The driver API doesn't allow us to abort
and return an error code.

Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Fixes: 13060b64b819
Cc: stable@vger.kernel.org # v4.0
drivers/vfio/vfio.c