diff options
author | Christoph Hellwig <hch@lst.de> | 2022-10-30 11:07:14 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-11-01 09:12:24 -0600 |
commit | 64b36075eb0e50af6f59047b5f698a9f2bb2b4fd (patch) | |
tree | 411815f10bee1d8f5ce412a9c0a099b21d93b878 /block/blk-mq.c | |
parent | ffb86425ee2cadbe573c483b789aab2dd57aeb7b (diff) |
block: split elevator_switch
Split an elevator_disable helper from elevator_switch for the case where
we want to switch to no scheduler at all. This includes removing the
pointless elevator_switch_mq helper and removing the switch to no
schedule logic from blk_mq_init_sched.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20221030100714.876891-8-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-mq.c')
-rw-r--r-- | block/blk-mq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-mq.c b/block/blk-mq.c index 623e8a506539..a78538586a40 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -4588,7 +4588,7 @@ static bool blk_mq_elv_switch_none(struct list_head *head, __elevator_get(qe->type); qe->type = q->elevator->type; list_add(&qe->node, head); - elevator_switch(q, NULL); + elevator_disable(q); mutex_unlock(&q->sysfs_lock); return true; |