This fixes a problem where ioctl returns -EAGAIN when the system is
activating new path.
Instead of returning an error, we submit a work item to kmultipathd
(that will potentially activate the new path) and retry in ten
milliseconds.
Note that the patch doesn't retry ioctls if the ioctls itself fails due
to a path failure. This is quite dangerous --- some SCSI commands cannot
be retried because they are not idempotent (XOR write commands). For
commands that can be retried, there is a danger that if the device
rejects the SCSI command, the path could be errorneously marked as
failed, and the request would be retried on the other path which would
fail too. It can be determined if the failure happens on the device or
on the SCSI controller, but there is no guarantee that all SCSI drivers
set these flags correctly.