Skip to content
Commit 9a6d5488 authored by Jens Axboe's avatar Jens Axboe
Browse files

ide: ensure atapi sense request aren't preempted

There's an issue with how sense requests are handled in IDE. If ide-cd
encounters an error, it queues a sense request. With how IDE request
handling is done, this is the next request we need to handle. But it's
impossible to guarantee this, as another request could come in between
the sense being queued, and ->queue_rq() being run and handling it. If
that request ALSO fails, then we attempt to doubly queue the single
sense request we have.

Since we only support one active request at the time, defer request
processing when a sense request is queued.

Fixes: 60033520

 "ide: convert to blk-mq"
Reported-by: default avatarHe Zhe <zhe.he@windriver.com>
Tested-by: default avatarHe Zhe <zhe.he@windriver.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 85bd6e61
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment