Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
block: fix deadlock in blk_abort_queue() for drivers that readd to ti…
…meout list blk_abort_queue() iterates the timeout list and aborts each request on the list, but if the driver error handling readds a request to the timeout list during this processing, we could be looping forever. Fix this by splicing current entries to a local list and run over that list instead. Signed-off-by: Jens Axboe <[email protected]>
- Loading branch information