OSDN Git Service

nvme-fc: correct io timeout behavior
authorJames Smart <jsmart2021@gmail.com>
Thu, 19 Oct 2017 23:11:39 +0000 (16:11 -0700)
committerChristoph Hellwig <hch@lst.de>
Fri, 20 Oct 2017 10:17:05 +0000 (12:17 +0200)
commit134aedc9c157d49069e9a98636b0a917678586ee
treea237b6b40c8089a9dddff8b12a5f7575a4b14508
parent0a02e39fd1eb2ceb3dd0dc765cb2de4d09697a14
nvme-fc: correct io timeout behavior

The transport io timeout behavior wasn't quite correct. It ignored
that the io error handler is supposed to be synchronous so it possibly
allowed the blk request to be restarted while the io associated was
still aborting. Timeouts on reserved commands, those used for
association create, were never timing out thus they hung out forever.

To correct:
If an io is times out while a remoteport is not connected, just
restart the io timer. The lack of connectivity will simultaneously
be resetting the controller, so the reset path will abort and terminate
the io.

If an io is times out while it was marked for transport abort, just
reset the io timer. The abort process is underway and will complete
the io.

Otherwise, if an io times out, abort the io. If the abort was
unsuccessful (unlikely) give up and return not handled.

If the abort was successful, as the abort process is underway it will
terminate the io, so rather than synchronously waiting, just restart
the io timer.

Signed-off-by: James Smart <james.smart@broadcom.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/fc.c