mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 22:24:09 +08:00
scsi: core: use blk_mq_run_hw_queues in scsi_kick_queue
We don't use blk-mq start/stop hw queue any more, so no reason to use blk_mq_start_hw_queues which does clear_bit, replace it with blk_mq_run_hw_queues. Signed-off-by: Jianchao Wang <jianchao.w.wang@oracle.com> Reviewed-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
e7c3b37983
commit
51372570ac
@ -372,7 +372,7 @@ void scsi_device_unbusy(struct scsi_device *sdev)
|
||||
static void scsi_kick_queue(struct request_queue *q)
|
||||
{
|
||||
if (q->mq_ops)
|
||||
blk_mq_start_hw_queues(q);
|
||||
blk_mq_run_hw_queues(q, false);
|
||||
else
|
||||
blk_run_queue(q);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user