Commit 655fe787 authored by Sasha Levin's avatar Sasha Levin

dm rq: fix the starting and stopping of blk-mq queues

[ Upstream commit 7d9595d8 ]

Improve dm_stop_queue() to cancel any requeue_work.  Also, have
dm_start_queue() and dm_stop_queue() clear/set the QUEUE_FLAG_STOPPED
for the blk-mq request_queue.

On suspend dm_stop_queue() handles stopping the blk-mq request_queue
BUT: even though the hw_queues are marked BLK_MQ_S_STOPPED at that point
there is still a race that is allowing block/blk-mq.c to call ->queue_rq
against a hctx that it really shouldn't.  Add a check to
dm_mq_queue_rq() that guards against this rarity (albeit _not_
race-free).
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
Cc: stable@vger.kernel.org # must patch dm.c on < 4.8 kernels
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
parent 980b6556
...@@ -1200,8 +1200,14 @@ static void stop_queue(struct request_queue *q) ...@@ -1200,8 +1200,14 @@ static void stop_queue(struct request_queue *q)
{ {
if (!q->mq_ops) if (!q->mq_ops)
old_stop_queue(q); old_stop_queue(q);
else else {
spin_lock_irq(q->queue_lock);
queue_flag_set(QUEUE_FLAG_STOPPED, q);
spin_unlock_irq(q->queue_lock);
blk_mq_cancel_requeue_work(q);
blk_mq_stop_hw_queues(q); blk_mq_stop_hw_queues(q);
}
} }
static void old_start_queue(struct request_queue *q) static void old_start_queue(struct request_queue *q)
...@@ -1218,8 +1224,10 @@ static void start_queue(struct request_queue *q) ...@@ -1218,8 +1224,10 @@ static void start_queue(struct request_queue *q)
{ {
if (!q->mq_ops) if (!q->mq_ops)
old_start_queue(q); old_start_queue(q);
else else {
queue_flag_clear_unlocked(QUEUE_FLAG_STOPPED, q);
blk_mq_start_stopped_hw_queues(q, true); blk_mq_start_stopped_hw_queues(q, true);
}
} }
static void dm_done(struct request *clone, int error, bool mapped) static void dm_done(struct request *clone, int error, bool mapped)
...@@ -2731,6 +2739,17 @@ static int dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx, ...@@ -2731,6 +2739,17 @@ static int dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
} }
dm_put_live_table(md, srcu_idx); dm_put_live_table(md, srcu_idx);
/*
* On suspend dm_stop_queue() handles stopping the blk-mq
* request_queue BUT: even though the hw_queues are marked
* BLK_MQ_S_STOPPED at that point there is still a race that
* is allowing block/blk-mq.c to call ->queue_rq against a
* hctx that it really shouldn't. The following check guards
* against this rarity (albeit _not_ race-free).
*/
if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
return BLK_MQ_RQ_QUEUE_BUSY;
if (ti->type->busy && ti->type->busy(ti)) if (ti->type->busy && ti->type->busy(ti))
return BLK_MQ_RQ_QUEUE_BUSY; return BLK_MQ_RQ_QUEUE_BUSY;
......
Markdown is supported
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