Signed-off-by: Christoph Hellwig <h...@lst.de>
---
 block/blk-core.c |   11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/block/blk-core.c b/block/blk-core.c
index 4cd5ffc..47af781 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -163,9 +163,14 @@ static void blk_delay_work(struct work_struct *work)
        struct request_queue *q;
 
        q = container_of(work, struct request_queue, delay_work.work);
-       spin_lock_irq(q->queue_lock);
-       __blk_run_queue(q);
-       spin_unlock_irq(q->queue_lock);
+
+       if (q->mq_ops) {
+               blk_mq_start_stopped_hw_queues(q, false);
+       } else {
+               spin_lock_irq(q->queue_lock);
+               __blk_run_queue(q);
+               spin_unlock_irq(q->queue_lock);
+       }
 }
 
 /**
-- 
1.7.10.4


--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to