diff options
author | Ming Lei <ming.lei@redhat.com> | 2017-06-06 23:22:04 +0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2017-06-18 14:20:04 -0600 |
commit | f660174e8bcdb2bf99129f9f7c86e5fc0e830f85 (patch) | |
tree | 8acdd08f1cf04c23e2dabae8cc52ace0d6644f48 /drivers/md/dm-rq.c | |
parent | e4e739131ac93d373cd2d2fd92820a6a39115ba5 (diff) | |
download | linux-stable-f660174e8bcdb2bf99129f9f7c86e5fc0e830f85.tar.gz linux-stable-f660174e8bcdb2bf99129f9f7c86e5fc0e830f85.tar.bz2 linux-stable-f660174e8bcdb2bf99129f9f7c86e5fc0e830f85.zip |
blk-mq: use the introduced blk_mq_unquiesce_queue()
blk_mq_unquiesce_queue() is used for unquiescing the
queue explicitly, so replace blk_mq_start_stopped_hw_queues()
with it.
For the scsi part, this patch takes Bart's suggestion to
switch to block quiesce/unquiesce API completely.
Cc: linux-nvme@lists.infradead.org
Cc: linux-scsi@vger.kernel.org
Cc: dm-devel@redhat.com
Reviewed-by: Bart Van Assche <Bart.VanAssche@sandisk.com>
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/dm-rq.c')
-rw-r--r-- | drivers/md/dm-rq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-rq.c b/drivers/md/dm-rq.c index fafd5326e572..c6ebc5b1e00e 100644 --- a/drivers/md/dm-rq.c +++ b/drivers/md/dm-rq.c @@ -71,7 +71,7 @@ static void dm_old_start_queue(struct request_queue *q) static void dm_mq_start_queue(struct request_queue *q) { - blk_mq_start_stopped_hw_queues(q, true); + blk_mq_unquiesce_queue(q); blk_mq_kick_requeue_list(q); } |