nvme: merge probe_work and reset_work
authorChristoph Hellwig <hch@lst.de>
Thu, 26 Nov 2015 11:42:26 +0000 (12:42 +0100)
committerJens Axboe <axboe@fb.com>
Tue, 22 Dec 2015 16:38:33 +0000 (09:38 -0700)
commitfd634f4142861e533ac57e88ece8e98ab5851edb
tree686c18eac611c7782a5dfe0cc48282bac6daf051
parente1569a16180aef4311ff5fc54f54b23ae9e8a03e
nvme: merge probe_work and reset_work

If we're using two work queues we're always going to run into races where
one item is tearing down what the other one is initializing.  So insted
merge the two work queues, and let the old probe_work also tear the
controller down first if it was alive.  Together with the better detection
of the probe path using a flag this gives us a properly serialized
reset/probe path that also doesn't accidentally trigger when two commands
time out and the second one tries to reset the controller while the first
reset is still in progress.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Keith Busch <keith.busch@intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/nvme/host/pci.c