summaryrefslogtreecommitdiffstats
path: root/block/elevator.c
diff options
context:
space:
mode:
authorMing Lei2017-05-02 01:28:02 +0200
committerJens Axboe2017-05-02 19:33:08 +0200
commit7a148c2fcff83309748bfaafe121aa85b724624f (patch)
tree931f0857f3019dedc0282ceeb036af274f42b77e /block/elevator.c
parentblk-mq: update ->init_request and ->exit_request prototypes (diff)
downloadkernel-qcow2-linux-7a148c2fcff83309748bfaafe121aa85b724624f.tar.gz
kernel-qcow2-linux-7a148c2fcff83309748bfaafe121aa85b724624f.tar.xz
kernel-qcow2-linux-7a148c2fcff83309748bfaafe121aa85b724624f.zip
block: don't call blk_mq_quiesce_queue() after queue is frozen
After queue is frozen, no request in this queue can be in use at all, so there can't be any .queue_rq() running on this queue. It isn't necessary to call blk_mq_quiesce_queue() any more, so remove it in both elevator_switch_mq() and blk_mq_update_nr_requests(). Cc: Bart Van Assche <bart.vanassche@sandisk.com> Signed-off-by: Ming Lei <ming.lei@redhat.com> Fixed up the description a bit. Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block/elevator.c')
-rw-r--r--block/elevator.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/block/elevator.c b/block/elevator.c
index 80f485451096..ab726a5c0bf6 100644
--- a/block/elevator.c
+++ b/block/elevator.c
@@ -950,7 +950,6 @@ static int elevator_switch_mq(struct request_queue *q,
int ret;
blk_mq_freeze_queue(q);
- blk_mq_quiesce_queue(q);
if (q->elevator) {
if (q->elevator->registered)
@@ -978,9 +977,7 @@ static int elevator_switch_mq(struct request_queue *q,
out:
blk_mq_unfreeze_queue(q);
- blk_mq_start_stopped_hw_queues(q, true);
return ret;
-
}
/*