1 // SPDX-License-Identifier: GPL-2.0
3 * Block device elevator/IO-scheduler.
5 * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
7 * 30042000 Jens Axboe <axboe@kernel.dk> :
9 * Split the elevator a bit so that it is possible to choose a different
10 * one or even write a new "plug in". There are three pieces:
11 * - elevator_fn, inserts a new request in the queue list
12 * - elevator_merge_fn, decides whether a new buffer can be merged with
14 * - elevator_dequeue_fn, called when a request is taken off the active list
16 * 20082000 Dave Jones <davej@suse.de> :
17 * Removed tests for max-bomb-segments, which was breaking elvtune
18 * when run without -bN
21 * - Rework again to work with bio instead of buffer_heads
22 * - loose bi_dev comparisons, partition handling is right now
23 * - completely modularize elevator setup and teardown
26 #include <linux/kernel.h>
28 #include <linux/blkdev.h>
29 #include <linux/elevator.h>
30 #include <linux/bio.h>
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/init.h>
34 #include <linux/compiler.h>
35 #include <linux/blktrace_api.h>
36 #include <linux/hash.h>
37 #include <linux/uaccess.h>
38 #include <linux/pm_runtime.h>
39 #include <linux/blk-cgroup.h>
41 #include <trace/events/block.h>
44 #include "blk-mq-sched.h"
48 static DEFINE_SPINLOCK(elv_list_lock
);
49 static LIST_HEAD(elv_list
);
54 #define rq_hash_key(rq) (blk_rq_pos(rq) + blk_rq_sectors(rq))
57 * Query io scheduler to see if the current process issuing bio may be
60 static int elv_iosched_allow_bio_merge(struct request
*rq
, struct bio
*bio
)
62 struct request_queue
*q
= rq
->q
;
63 struct elevator_queue
*e
= q
->elevator
;
65 if (e
->type
->ops
.allow_merge
)
66 return e
->type
->ops
.allow_merge(q
, rq
, bio
);
72 * can we safely merge with this request?
74 bool elv_bio_merge_ok(struct request
*rq
, struct bio
*bio
)
76 if (!blk_rq_merge_ok(rq
, bio
))
79 if (!elv_iosched_allow_bio_merge(rq
, bio
))
84 EXPORT_SYMBOL(elv_bio_merge_ok
);
86 static inline bool elv_support_features(unsigned int elv_features
,
87 unsigned int required_features
)
89 return (required_features
& elv_features
) == required_features
;
93 * elevator_match - Test an elevator name and features
94 * @e: Scheduler to test
95 * @name: Elevator name to test
96 * @required_features: Features that the elevator must provide
98 * Return true if the elevator @e name matches @name and if @e provides all
99 * the features specified by @required_features.
101 static bool elevator_match(const struct elevator_type
*e
, const char *name
,
102 unsigned int required_features
)
104 if (!elv_support_features(e
->elevator_features
, required_features
))
106 if (!strcmp(e
->elevator_name
, name
))
108 if (e
->elevator_alias
&& !strcmp(e
->elevator_alias
, name
))
115 * elevator_find - Find an elevator
116 * @name: Name of the elevator to find
117 * @required_features: Features that the elevator must provide
119 * Return the first registered scheduler with name @name and supporting the
120 * features @required_features and NULL otherwise.
122 static struct elevator_type
*elevator_find(const char *name
,
123 unsigned int required_features
)
125 struct elevator_type
*e
;
127 list_for_each_entry(e
, &elv_list
, list
) {
128 if (elevator_match(e
, name
, required_features
))
135 static void elevator_put(struct elevator_type
*e
)
137 module_put(e
->elevator_owner
);
140 static struct elevator_type
*elevator_get(struct request_queue
*q
,
141 const char *name
, bool try_loading
)
143 struct elevator_type
*e
;
145 spin_lock(&elv_list_lock
);
147 e
= elevator_find(name
, q
->required_elevator_features
);
148 if (!e
&& try_loading
) {
149 spin_unlock(&elv_list_lock
);
150 request_module("%s-iosched", name
);
151 spin_lock(&elv_list_lock
);
152 e
= elevator_find(name
, q
->required_elevator_features
);
155 if (e
&& !try_module_get(e
->elevator_owner
))
158 spin_unlock(&elv_list_lock
);
162 static struct kobj_type elv_ktype
;
164 struct elevator_queue
*elevator_alloc(struct request_queue
*q
,
165 struct elevator_type
*e
)
167 struct elevator_queue
*eq
;
169 eq
= kzalloc_node(sizeof(*eq
), GFP_KERNEL
, q
->node
);
174 kobject_init(&eq
->kobj
, &elv_ktype
);
175 mutex_init(&eq
->sysfs_lock
);
180 EXPORT_SYMBOL(elevator_alloc
);
182 static void elevator_release(struct kobject
*kobj
)
184 struct elevator_queue
*e
;
186 e
= container_of(kobj
, struct elevator_queue
, kobj
);
187 elevator_put(e
->type
);
191 void __elevator_exit(struct request_queue
*q
, struct elevator_queue
*e
)
193 mutex_lock(&e
->sysfs_lock
);
194 blk_mq_exit_sched(q
, e
);
195 mutex_unlock(&e
->sysfs_lock
);
197 kobject_put(&e
->kobj
);
200 static inline void __elv_rqhash_del(struct request
*rq
)
203 rq
->rq_flags
&= ~RQF_HASHED
;
206 void elv_rqhash_del(struct request_queue
*q
, struct request
*rq
)
209 __elv_rqhash_del(rq
);
211 EXPORT_SYMBOL_GPL(elv_rqhash_del
);
213 void elv_rqhash_add(struct request_queue
*q
, struct request
*rq
)
215 struct elevator_queue
*e
= q
->elevator
;
217 BUG_ON(ELV_ON_HASH(rq
));
218 hash_add(e
->hash
, &rq
->hash
, rq_hash_key(rq
));
219 rq
->rq_flags
|= RQF_HASHED
;
221 EXPORT_SYMBOL_GPL(elv_rqhash_add
);
223 void elv_rqhash_reposition(struct request_queue
*q
, struct request
*rq
)
225 __elv_rqhash_del(rq
);
226 elv_rqhash_add(q
, rq
);
229 struct request
*elv_rqhash_find(struct request_queue
*q
, sector_t offset
)
231 struct elevator_queue
*e
= q
->elevator
;
232 struct hlist_node
*next
;
235 hash_for_each_possible_safe(e
->hash
, rq
, next
, hash
, offset
) {
236 BUG_ON(!ELV_ON_HASH(rq
));
238 if (unlikely(!rq_mergeable(rq
))) {
239 __elv_rqhash_del(rq
);
243 if (rq_hash_key(rq
) == offset
)
251 * RB-tree support functions for inserting/lookup/removal of requests
252 * in a sorted RB tree.
254 void elv_rb_add(struct rb_root
*root
, struct request
*rq
)
256 struct rb_node
**p
= &root
->rb_node
;
257 struct rb_node
*parent
= NULL
;
258 struct request
*__rq
;
262 __rq
= rb_entry(parent
, struct request
, rb_node
);
264 if (blk_rq_pos(rq
) < blk_rq_pos(__rq
))
266 else if (blk_rq_pos(rq
) >= blk_rq_pos(__rq
))
270 rb_link_node(&rq
->rb_node
, parent
, p
);
271 rb_insert_color(&rq
->rb_node
, root
);
273 EXPORT_SYMBOL(elv_rb_add
);
275 void elv_rb_del(struct rb_root
*root
, struct request
*rq
)
277 BUG_ON(RB_EMPTY_NODE(&rq
->rb_node
));
278 rb_erase(&rq
->rb_node
, root
);
279 RB_CLEAR_NODE(&rq
->rb_node
);
281 EXPORT_SYMBOL(elv_rb_del
);
283 struct request
*elv_rb_find(struct rb_root
*root
, sector_t sector
)
285 struct rb_node
*n
= root
->rb_node
;
289 rq
= rb_entry(n
, struct request
, rb_node
);
291 if (sector
< blk_rq_pos(rq
))
293 else if (sector
> blk_rq_pos(rq
))
301 EXPORT_SYMBOL(elv_rb_find
);
303 enum elv_merge
elv_merge(struct request_queue
*q
, struct request
**req
,
306 struct elevator_queue
*e
= q
->elevator
;
307 struct request
*__rq
;
311 * nomerges: No merges at all attempted
312 * noxmerges: Only simple one-hit cache try
313 * merges: All merge tries attempted
315 if (blk_queue_nomerges(q
) || !bio_mergeable(bio
))
316 return ELEVATOR_NO_MERGE
;
319 * First try one-hit cache.
321 if (q
->last_merge
&& elv_bio_merge_ok(q
->last_merge
, bio
)) {
322 enum elv_merge ret
= blk_try_merge(q
->last_merge
, bio
);
324 if (ret
!= ELEVATOR_NO_MERGE
) {
325 *req
= q
->last_merge
;
330 if (blk_queue_noxmerges(q
))
331 return ELEVATOR_NO_MERGE
;
334 * See if our hash lookup can find a potential backmerge.
336 __rq
= elv_rqhash_find(q
, bio
->bi_iter
.bi_sector
);
337 if (__rq
&& elv_bio_merge_ok(__rq
, bio
)) {
339 return ELEVATOR_BACK_MERGE
;
342 if (e
->type
->ops
.request_merge
)
343 return e
->type
->ops
.request_merge(q
, req
, bio
);
345 return ELEVATOR_NO_MERGE
;
349 * Attempt to do an insertion back merge. Only check for the case where
350 * we can append 'rq' to an existing request, so we can throw 'rq' away
353 * Returns true if we merged, false otherwise
355 bool elv_attempt_insert_merge(struct request_queue
*q
, struct request
*rq
)
357 struct request
*__rq
;
360 if (blk_queue_nomerges(q
))
364 * First try one-hit cache.
366 if (q
->last_merge
&& blk_attempt_req_merge(q
, q
->last_merge
, rq
))
369 if (blk_queue_noxmerges(q
))
374 * See if our hash lookup can find a potential backmerge.
377 __rq
= elv_rqhash_find(q
, blk_rq_pos(rq
));
378 if (!__rq
|| !blk_attempt_req_merge(q
, __rq
, rq
))
381 /* The merged request could be merged with others, try again */
389 void elv_merged_request(struct request_queue
*q
, struct request
*rq
,
392 struct elevator_queue
*e
= q
->elevator
;
394 if (e
->type
->ops
.request_merged
)
395 e
->type
->ops
.request_merged(q
, rq
, type
);
397 if (type
== ELEVATOR_BACK_MERGE
)
398 elv_rqhash_reposition(q
, rq
);
403 void elv_merge_requests(struct request_queue
*q
, struct request
*rq
,
404 struct request
*next
)
406 struct elevator_queue
*e
= q
->elevator
;
408 if (e
->type
->ops
.requests_merged
)
409 e
->type
->ops
.requests_merged(q
, rq
, next
);
411 elv_rqhash_reposition(q
, rq
);
415 struct request
*elv_latter_request(struct request_queue
*q
, struct request
*rq
)
417 struct elevator_queue
*e
= q
->elevator
;
419 if (e
->type
->ops
.next_request
)
420 return e
->type
->ops
.next_request(q
, rq
);
425 struct request
*elv_former_request(struct request_queue
*q
, struct request
*rq
)
427 struct elevator_queue
*e
= q
->elevator
;
429 if (e
->type
->ops
.former_request
)
430 return e
->type
->ops
.former_request(q
, rq
);
435 #define to_elv(atr) container_of((atr), struct elv_fs_entry, attr)
438 elv_attr_show(struct kobject
*kobj
, struct attribute
*attr
, char *page
)
440 struct elv_fs_entry
*entry
= to_elv(attr
);
441 struct elevator_queue
*e
;
447 e
= container_of(kobj
, struct elevator_queue
, kobj
);
448 mutex_lock(&e
->sysfs_lock
);
449 error
= e
->type
? entry
->show(e
, page
) : -ENOENT
;
450 mutex_unlock(&e
->sysfs_lock
);
455 elv_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
456 const char *page
, size_t length
)
458 struct elv_fs_entry
*entry
= to_elv(attr
);
459 struct elevator_queue
*e
;
465 e
= container_of(kobj
, struct elevator_queue
, kobj
);
466 mutex_lock(&e
->sysfs_lock
);
467 error
= e
->type
? entry
->store(e
, page
, length
) : -ENOENT
;
468 mutex_unlock(&e
->sysfs_lock
);
472 static const struct sysfs_ops elv_sysfs_ops
= {
473 .show
= elv_attr_show
,
474 .store
= elv_attr_store
,
477 static struct kobj_type elv_ktype
= {
478 .sysfs_ops
= &elv_sysfs_ops
,
479 .release
= elevator_release
,
482 int elv_register_queue(struct request_queue
*q
, bool uevent
)
484 struct elevator_queue
*e
= q
->elevator
;
487 lockdep_assert_held(&q
->sysfs_lock
);
489 error
= kobject_add(&e
->kobj
, &q
->kobj
, "%s", "iosched");
491 struct elv_fs_entry
*attr
= e
->type
->elevator_attrs
;
493 while (attr
->attr
.name
) {
494 if (sysfs_create_file(&e
->kobj
, &attr
->attr
))
500 kobject_uevent(&e
->kobj
, KOBJ_ADD
);
507 void elv_unregister_queue(struct request_queue
*q
)
509 lockdep_assert_held(&q
->sysfs_lock
);
512 struct elevator_queue
*e
= q
->elevator
;
514 kobject_uevent(&e
->kobj
, KOBJ_REMOVE
);
515 kobject_del(&e
->kobj
);
518 /* Re-enable throttling in case elevator disabled it */
519 wbt_enable_default(q
);
523 int elv_register(struct elevator_type
*e
)
525 /* create icq_cache if requested */
527 if (WARN_ON(e
->icq_size
< sizeof(struct io_cq
)) ||
528 WARN_ON(e
->icq_align
< __alignof__(struct io_cq
)))
531 snprintf(e
->icq_cache_name
, sizeof(e
->icq_cache_name
),
532 "%s_io_cq", e
->elevator_name
);
533 e
->icq_cache
= kmem_cache_create(e
->icq_cache_name
, e
->icq_size
,
534 e
->icq_align
, 0, NULL
);
539 /* register, don't allow duplicate names */
540 spin_lock(&elv_list_lock
);
541 if (elevator_find(e
->elevator_name
, 0)) {
542 spin_unlock(&elv_list_lock
);
543 kmem_cache_destroy(e
->icq_cache
);
546 list_add_tail(&e
->list
, &elv_list
);
547 spin_unlock(&elv_list_lock
);
549 printk(KERN_INFO
"io scheduler %s registered\n", e
->elevator_name
);
553 EXPORT_SYMBOL_GPL(elv_register
);
555 void elv_unregister(struct elevator_type
*e
)
558 spin_lock(&elv_list_lock
);
559 list_del_init(&e
->list
);
560 spin_unlock(&elv_list_lock
);
563 * Destroy icq_cache if it exists. icq's are RCU managed. Make
564 * sure all RCU operations are complete before proceeding.
568 kmem_cache_destroy(e
->icq_cache
);
572 EXPORT_SYMBOL_GPL(elv_unregister
);
574 int elevator_switch_mq(struct request_queue
*q
,
575 struct elevator_type
*new_e
)
579 lockdep_assert_held(&q
->sysfs_lock
);
582 if (q
->elevator
->registered
)
583 elv_unregister_queue(q
);
586 elevator_exit(q
, q
->elevator
);
589 ret
= blk_mq_init_sched(q
, new_e
);
594 ret
= elv_register_queue(q
, true);
596 elevator_exit(q
, q
->elevator
);
602 blk_add_trace_msg(q
, "elv switch: %s", new_e
->elevator_name
);
604 blk_add_trace_msg(q
, "elv switch: none");
610 static inline bool elv_support_iosched(struct request_queue
*q
)
612 if (!queue_is_mq(q
) ||
613 (q
->tag_set
&& (q
->tag_set
->flags
& BLK_MQ_F_NO_SCHED
)))
619 * For single queue devices, default to using mq-deadline. If we have multiple
620 * queues or mq-deadline is not available, default to "none".
622 static struct elevator_type
*elevator_get_default(struct request_queue
*q
)
624 if (q
->nr_hw_queues
!= 1)
627 return elevator_get(q
, "mq-deadline", false);
631 * Get the first elevator providing the features required by the request queue.
632 * Default to "none" if no matching elevator is found.
634 static struct elevator_type
*elevator_get_by_features(struct request_queue
*q
)
636 struct elevator_type
*e
, *found
= NULL
;
638 spin_lock(&elv_list_lock
);
640 list_for_each_entry(e
, &elv_list
, list
) {
641 if (elv_support_features(e
->elevator_features
,
642 q
->required_elevator_features
)) {
648 if (found
&& !try_module_get(found
->elevator_owner
))
651 spin_unlock(&elv_list_lock
);
656 * For a device queue that has no required features, use the default elevator
657 * settings. Otherwise, use the first elevator available matching the required
658 * features. If no suitable elevator is find or if the chosen elevator
659 * initialization fails, fall back to the "none" elevator (no elevator).
661 void elevator_init_mq(struct request_queue
*q
)
663 struct elevator_type
*e
;
666 if (!elv_support_iosched(q
))
669 WARN_ON_ONCE(blk_queue_registered(q
));
671 if (unlikely(q
->elevator
))
674 if (!q
->required_elevator_features
)
675 e
= elevator_get_default(q
);
677 e
= elevator_get_by_features(q
);
681 blk_mq_freeze_queue(q
);
682 blk_mq_quiesce_queue(q
);
684 err
= blk_mq_init_sched(q
, e
);
686 blk_mq_unquiesce_queue(q
);
687 blk_mq_unfreeze_queue(q
);
690 pr_warn("\"%s\" elevator initialization failed, "
691 "falling back to \"none\"\n", e
->elevator_name
);
698 * switch to new_e io scheduler. be careful not to introduce deadlocks -
699 * we don't free the old io scheduler, before we have allocated what we
700 * need for the new one. this way we have a chance of going back to the old
701 * one, if the new one fails init for some reason.
703 static int elevator_switch(struct request_queue
*q
, struct elevator_type
*new_e
)
707 lockdep_assert_held(&q
->sysfs_lock
);
709 blk_mq_freeze_queue(q
);
710 blk_mq_quiesce_queue(q
);
712 err
= elevator_switch_mq(q
, new_e
);
714 blk_mq_unquiesce_queue(q
);
715 blk_mq_unfreeze_queue(q
);
721 * Switch this queue to the given IO scheduler.
723 static int __elevator_change(struct request_queue
*q
, const char *name
)
725 char elevator_name
[ELV_NAME_MAX
];
726 struct elevator_type
*e
;
728 /* Make sure queue is not in the middle of being removed */
729 if (!blk_queue_registered(q
))
733 * Special case for mq, turn off scheduling
735 if (!strncmp(name
, "none", 4)) {
738 return elevator_switch(q
, NULL
);
741 strlcpy(elevator_name
, name
, sizeof(elevator_name
));
742 e
= elevator_get(q
, strstrip(elevator_name
), true);
747 elevator_match(q
->elevator
->type
, elevator_name
, 0)) {
752 return elevator_switch(q
, e
);
755 ssize_t
elv_iosched_store(struct request_queue
*q
, const char *name
,
760 if (!elv_support_iosched(q
))
763 ret
= __elevator_change(q
, name
);
770 ssize_t
elv_iosched_show(struct request_queue
*q
, char *name
)
772 struct elevator_queue
*e
= q
->elevator
;
773 struct elevator_type
*elv
= NULL
;
774 struct elevator_type
*__e
;
778 return sprintf(name
, "none\n");
781 len
+= sprintf(name
+len
, "[none] ");
785 spin_lock(&elv_list_lock
);
786 list_for_each_entry(__e
, &elv_list
, list
) {
787 if (elv
&& elevator_match(elv
, __e
->elevator_name
, 0)) {
788 len
+= sprintf(name
+len
, "[%s] ", elv
->elevator_name
);
791 if (elv_support_iosched(q
) &&
792 elevator_match(__e
, __e
->elevator_name
,
793 q
->required_elevator_features
))
794 len
+= sprintf(name
+len
, "%s ", __e
->elevator_name
);
796 spin_unlock(&elv_list_lock
);
799 len
+= sprintf(name
+len
, "none");
801 len
+= sprintf(len
+name
, "\n");
805 struct request
*elv_rb_former_request(struct request_queue
*q
,
808 struct rb_node
*rbprev
= rb_prev(&rq
->rb_node
);
811 return rb_entry_rq(rbprev
);
815 EXPORT_SYMBOL(elv_rb_former_request
);
817 struct request
*elv_rb_latter_request(struct request_queue
*q
,
820 struct rb_node
*rbnext
= rb_next(&rq
->rb_node
);
823 return rb_entry_rq(rbnext
);
827 EXPORT_SYMBOL(elv_rb_latter_request
);
829 static int __init
elevator_setup(char *str
)
831 pr_warn("Kernel parameter elevator= does not have any effect anymore.\n"
832 "Please use sysfs to set IO scheduler for individual devices.\n");
836 __setup("elevator=", elevator_setup
);