blob: ec98aed39c4f5beb7a4b2d2cef618498ebd22d22 [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Block device elevator/IO-scheduler.
4 *
5 * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
6 *
Jens Axboe0fe23472006-09-04 15:41:16 +02007 * 30042000 Jens Axboe <axboe@kernel.dk> :
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
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
13 * an existing request
14 * - elevator_dequeue_fn, called when a request is taken off the active list
15 *
16 * 20082000 Dave Jones <davej@suse.de> :
17 * Removed tests for max-bomb-segments, which was breaking elvtune
18 * when run without -bN
19 *
20 * Jens:
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
24 *
25 */
26#include <linux/kernel.h>
27#include <linux/fs.h>
28#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/slab.h>
32#include <linux/init.h>
33#include <linux/compiler.h>
Jens Axboe2056a782006-03-23 20:00:26 +010034#include <linux/blktrace_api.h>
Jens Axboe98170642006-07-28 09:23:08 +020035#include <linux/hash.h>
Jens Axboe0835da62008-08-26 09:15:47 +020036#include <linux/uaccess.h>
Lin Mingc8158812013-03-23 11:42:27 +080037#include <linux/pm_runtime.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040038#include <linux/blk-cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Li Zefan55782132009-06-09 13:43:05 +080040#include <trace/events/block.h>
41
Christoph Hellwig2e9bc342021-09-20 14:33:23 +020042#include "elevator.h"
Jens Axboe242f9dc2008-09-14 05:55:09 -070043#include "blk.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070044#include "blk-mq-sched.h"
Bart Van Asschebca6b062018-09-26 14:01:03 -070045#include "blk-pm.h"
Jan Kara8330cdb2017-04-19 11:33:27 +020046#include "blk-wbt.h"
Jens Axboe242f9dc2008-09-14 05:55:09 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048static DEFINE_SPINLOCK(elv_list_lock);
49static LIST_HEAD(elv_list);
50
51/*
Jens Axboe98170642006-07-28 09:23:08 +020052 * Merge hash stuff.
53 */
Tejun Heo83096eb2009-05-07 22:24:39 +090054#define rq_hash_key(rq) (blk_rq_pos(rq) + blk_rq_sectors(rq))
Jens Axboe98170642006-07-28 09:23:08 +020055
56/*
Jens Axboeda775262006-12-20 11:04:12 +010057 * Query io scheduler to see if the current process issuing bio may be
58 * merged with rq.
59 */
Tahsin Erdogan72ef7992016-07-07 11:48:22 -070060static int elv_iosched_allow_bio_merge(struct request *rq, struct bio *bio)
Jens Axboeda775262006-12-20 11:04:12 +010061{
Jens Axboe165125e2007-07-24 09:28:11 +020062 struct request_queue *q = rq->q;
Jens Axboeb374d182008-10-31 10:05:07 +010063 struct elevator_queue *e = q->elevator;
Jens Axboeda775262006-12-20 11:04:12 +010064
Jens Axboef9cd4bf2018-11-01 16:41:41 -060065 if (e->type->ops.allow_merge)
66 return e->type->ops.allow_merge(q, rq, bio);
Jens Axboeda775262006-12-20 11:04:12 +010067
68 return 1;
69}
70
71/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * can we safely merge with this request?
73 */
Tahsin Erdogan72ef7992016-07-07 11:48:22 -070074bool elv_bio_merge_ok(struct request *rq, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Tejun Heo050c8ea2012-02-08 09:19:38 +010076 if (!blk_rq_merge_ok(rq, bio))
Tahsin Erdogan72ef7992016-07-07 11:48:22 -070077 return false;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +020078
Tahsin Erdogan72ef7992016-07-07 11:48:22 -070079 if (!elv_iosched_allow_bio_merge(rq, bio))
80 return false;
Jens Axboeda775262006-12-20 11:04:12 +010081
Tahsin Erdogan72ef7992016-07-07 11:48:22 -070082 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
Tahsin Erdogan72ef7992016-07-07 11:48:22 -070084EXPORT_SYMBOL(elv_bio_merge_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Damien Le Moal68c43f12019-09-05 18:51:31 +090086static inline bool elv_support_features(unsigned int elv_features,
87 unsigned int required_features)
Jens Axboe8ac0d9a2017-10-25 12:35:02 -060088{
Damien Le Moal68c43f12019-09-05 18:51:31 +090089 return (required_features & elv_features) == required_features;
90}
91
92/**
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
97 *
Randy Dunlap5b8f65e2020-07-30 18:42:29 -070098 * Return true if the elevator @e name matches @name and if @e provides all
99 * the features specified by @required_features.
Damien Le Moal68c43f12019-09-05 18:51:31 +0900100 */
101static bool elevator_match(const struct elevator_type *e, const char *name,
102 unsigned int required_features)
103{
104 if (!elv_support_features(e->elevator_features, required_features))
105 return false;
Jens Axboe8ac0d9a2017-10-25 12:35:02 -0600106 if (!strcmp(e->elevator_name, name))
107 return true;
108 if (e->elevator_alias && !strcmp(e->elevator_alias, name))
109 return true;
110
111 return false;
112}
113
Damien Le Moal68c43f12019-09-05 18:51:31 +0900114/**
115 * elevator_find - Find an elevator
116 * @name: Name of the elevator to find
117 * @required_features: Features that the elevator must provide
118 *
119 * Return the first registered scheduler with name @name and supporting the
120 * features @required_features and NULL otherwise.
Jens Axboe2527d992017-10-25 12:33:42 -0600121 */
Damien Le Moal68c43f12019-09-05 18:51:31 +0900122static struct elevator_type *elevator_find(const char *name,
123 unsigned int required_features)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Vasily Tarasova22b1692006-10-11 09:24:27 +0200125 struct elevator_type *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Matthias Kaehlcke70cee262007-07-10 12:26:24 +0200127 list_for_each_entry(e, &elv_list, list) {
Damien Le Moal68c43f12019-09-05 18:51:31 +0900128 if (elevator_match(e, name, required_features))
Vasily Tarasova22b1692006-10-11 09:24:27 +0200129 return e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Vasily Tarasova22b1692006-10-11 09:24:27 +0200132 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static void elevator_put(struct elevator_type *e)
136{
137 module_put(e->elevator_owner);
138}
139
Jens Axboe2527d992017-10-25 12:33:42 -0600140static struct elevator_type *elevator_get(struct request_queue *q,
141 const char *name, bool try_loading)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Tejun Heo2824bc932005-10-20 10:56:41 +0200143 struct elevator_type *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200145 spin_lock(&elv_list_lock);
Tejun Heo2824bc932005-10-20 10:56:41 +0200146
Damien Le Moal68c43f12019-09-05 18:51:31 +0900147 e = elevator_find(name, q->required_elevator_features);
Tejun Heo21c3c5d2013-01-22 16:48:03 -0800148 if (!e && try_loading) {
Jens Axboee1640942008-02-19 10:20:37 +0100149 spin_unlock(&elv_list_lock);
Kees Cook490b94b2011-05-05 18:02:12 -0600150 request_module("%s-iosched", name);
Jens Axboee1640942008-02-19 10:20:37 +0100151 spin_lock(&elv_list_lock);
Damien Le Moal68c43f12019-09-05 18:51:31 +0900152 e = elevator_find(name, q->required_elevator_features);
Jens Axboee1640942008-02-19 10:20:37 +0100153 }
154
Tejun Heo2824bc932005-10-20 10:56:41 +0200155 if (e && !try_module_get(e->elevator_owner))
156 e = NULL;
157
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200158 spin_unlock(&elv_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return e;
160}
161
Al Viro3d1ab402006-03-18 18:35:43 -0500162static struct kobj_type elv_ktype;
163
Jianpeng Mad50235b2013-07-03 13:25:24 +0200164struct elevator_queue *elevator_alloc(struct request_queue *q,
Jens Axboe165125e2007-07-24 09:28:11 +0200165 struct elevator_type *e)
Al Viro3d1ab402006-03-18 18:35:43 -0500166{
Jens Axboeb374d182008-10-31 10:05:07 +0100167 struct elevator_queue *eq;
Jens Axboe98170642006-07-28 09:23:08 +0200168
Joe Perchesc1b511e2013-08-29 15:21:42 -0700169 eq = kzalloc_node(sizeof(*eq), GFP_KERNEL, q->node);
Jens Axboe98170642006-07-28 09:23:08 +0200170 if (unlikely(!eq))
Chao Yu8406a4d2015-04-23 10:47:44 -0600171 return NULL;
Jens Axboe98170642006-07-28 09:23:08 +0200172
Tejun Heo22f746e2011-12-14 00:33:41 +0100173 eq->type = e;
Greg Kroah-Hartmanf9cb0742007-12-17 23:05:35 -0700174 kobject_init(&eq->kobj, &elv_ktype);
Jens Axboe98170642006-07-28 09:23:08 +0200175 mutex_init(&eq->sysfs_lock);
Sasha Levin242d98f2012-12-17 10:01:27 -0500176 hash_init(eq->hash);
Jens Axboe98170642006-07-28 09:23:08 +0200177
Al Viro3d1ab402006-03-18 18:35:43 -0500178 return eq;
179}
Jianpeng Mad50235b2013-07-03 13:25:24 +0200180EXPORT_SYMBOL(elevator_alloc);
Al Viro3d1ab402006-03-18 18:35:43 -0500181
182static void elevator_release(struct kobject *kobj)
183{
Jens Axboeb374d182008-10-31 10:05:07 +0100184 struct elevator_queue *e;
Jens Axboe98170642006-07-28 09:23:08 +0200185
Jens Axboeb374d182008-10-31 10:05:07 +0100186 e = container_of(kobj, struct elevator_queue, kobj);
Tejun Heo22f746e2011-12-14 00:33:41 +0100187 elevator_put(e->type);
Al Viro3d1ab402006-03-18 18:35:43 -0500188 kfree(e);
189}
190
Christoph Hellwig0c6cb3a2021-11-23 19:53:07 +0100191void elevator_exit(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Christoph Hellwig0c6cb3a2021-11-23 19:53:07 +0100193 struct elevator_queue *e = q->elevator;
194
Al Viro3d1ab402006-03-18 18:35:43 -0500195 mutex_lock(&e->sysfs_lock);
Yufen Yudd1c3722020-10-08 23:26:27 -0400196 blk_mq_exit_sched(q, e);
Al Viro3d1ab402006-03-18 18:35:43 -0500197 mutex_unlock(&e->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Al Viro3d1ab402006-03-18 18:35:43 -0500199 kobject_put(&e->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
Jens Axboe2e662b62006-07-13 11:55:04 +0200201
Jens Axboe98170642006-07-28 09:23:08 +0200202static inline void __elv_rqhash_del(struct request *rq)
203{
Sasha Levin242d98f2012-12-17 10:01:27 -0500204 hash_del(&rq->hash);
Christoph Hellwige8064022016-10-20 15:12:13 +0200205 rq->rq_flags &= ~RQF_HASHED;
Jens Axboe98170642006-07-28 09:23:08 +0200206}
207
Jens Axboe70b3ea02016-12-07 08:43:31 -0700208void elv_rqhash_del(struct request_queue *q, struct request *rq)
Jens Axboe98170642006-07-28 09:23:08 +0200209{
210 if (ELV_ON_HASH(rq))
211 __elv_rqhash_del(rq);
212}
Jens Axboebd166ef2017-01-17 06:03:22 -0700213EXPORT_SYMBOL_GPL(elv_rqhash_del);
Jens Axboe98170642006-07-28 09:23:08 +0200214
Jens Axboe70b3ea02016-12-07 08:43:31 -0700215void elv_rqhash_add(struct request_queue *q, struct request *rq)
Jens Axboe98170642006-07-28 09:23:08 +0200216{
Jens Axboeb374d182008-10-31 10:05:07 +0100217 struct elevator_queue *e = q->elevator;
Jens Axboe98170642006-07-28 09:23:08 +0200218
219 BUG_ON(ELV_ON_HASH(rq));
Sasha Levin242d98f2012-12-17 10:01:27 -0500220 hash_add(e->hash, &rq->hash, rq_hash_key(rq));
Christoph Hellwige8064022016-10-20 15:12:13 +0200221 rq->rq_flags |= RQF_HASHED;
Jens Axboe98170642006-07-28 09:23:08 +0200222}
Jens Axboebd166ef2017-01-17 06:03:22 -0700223EXPORT_SYMBOL_GPL(elv_rqhash_add);
Jens Axboe98170642006-07-28 09:23:08 +0200224
Jens Axboe70b3ea02016-12-07 08:43:31 -0700225void elv_rqhash_reposition(struct request_queue *q, struct request *rq)
Jens Axboe98170642006-07-28 09:23:08 +0200226{
227 __elv_rqhash_del(rq);
228 elv_rqhash_add(q, rq);
229}
230
Jens Axboe70b3ea02016-12-07 08:43:31 -0700231struct request *elv_rqhash_find(struct request_queue *q, sector_t offset)
Jens Axboe98170642006-07-28 09:23:08 +0200232{
Jens Axboeb374d182008-10-31 10:05:07 +0100233 struct elevator_queue *e = q->elevator;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800234 struct hlist_node *next;
Jens Axboe98170642006-07-28 09:23:08 +0200235 struct request *rq;
236
Linus Torvaldsee89f812013-02-28 12:52:24 -0800237 hash_for_each_possible_safe(e->hash, rq, next, hash, offset) {
Jens Axboe98170642006-07-28 09:23:08 +0200238 BUG_ON(!ELV_ON_HASH(rq));
239
240 if (unlikely(!rq_mergeable(rq))) {
241 __elv_rqhash_del(rq);
242 continue;
243 }
244
245 if (rq_hash_key(rq) == offset)
246 return rq;
247 }
248
249 return NULL;
250}
251
Tejun Heo8922e162005-10-20 16:23:44 +0200252/*
Jens Axboe2e662b62006-07-13 11:55:04 +0200253 * RB-tree support functions for inserting/lookup/removal of requests
254 * in a sorted RB tree.
255 */
Jeff Moyer796d5112011-06-02 21:19:05 +0200256void elv_rb_add(struct rb_root *root, struct request *rq)
Jens Axboe2e662b62006-07-13 11:55:04 +0200257{
258 struct rb_node **p = &root->rb_node;
259 struct rb_node *parent = NULL;
260 struct request *__rq;
261
262 while (*p) {
263 parent = *p;
264 __rq = rb_entry(parent, struct request, rb_node);
265
Tejun Heo83096eb2009-05-07 22:24:39 +0900266 if (blk_rq_pos(rq) < blk_rq_pos(__rq))
Jens Axboe2e662b62006-07-13 11:55:04 +0200267 p = &(*p)->rb_left;
Jeff Moyer796d5112011-06-02 21:19:05 +0200268 else if (blk_rq_pos(rq) >= blk_rq_pos(__rq))
Jens Axboe2e662b62006-07-13 11:55:04 +0200269 p = &(*p)->rb_right;
Jens Axboe2e662b62006-07-13 11:55:04 +0200270 }
271
272 rb_link_node(&rq->rb_node, parent, p);
273 rb_insert_color(&rq->rb_node, root);
Jens Axboe2e662b62006-07-13 11:55:04 +0200274}
Jens Axboe2e662b62006-07-13 11:55:04 +0200275EXPORT_SYMBOL(elv_rb_add);
276
277void elv_rb_del(struct rb_root *root, struct request *rq)
278{
279 BUG_ON(RB_EMPTY_NODE(&rq->rb_node));
280 rb_erase(&rq->rb_node, root);
281 RB_CLEAR_NODE(&rq->rb_node);
282}
Jens Axboe2e662b62006-07-13 11:55:04 +0200283EXPORT_SYMBOL(elv_rb_del);
284
285struct request *elv_rb_find(struct rb_root *root, sector_t sector)
286{
287 struct rb_node *n = root->rb_node;
288 struct request *rq;
289
290 while (n) {
291 rq = rb_entry(n, struct request, rb_node);
292
Tejun Heo83096eb2009-05-07 22:24:39 +0900293 if (sector < blk_rq_pos(rq))
Jens Axboe2e662b62006-07-13 11:55:04 +0200294 n = n->rb_left;
Tejun Heo83096eb2009-05-07 22:24:39 +0900295 else if (sector > blk_rq_pos(rq))
Jens Axboe2e662b62006-07-13 11:55:04 +0200296 n = n->rb_right;
297 else
298 return rq;
299 }
300
301 return NULL;
302}
Jens Axboe2e662b62006-07-13 11:55:04 +0200303EXPORT_SYMBOL(elv_rb_find);
304
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100305enum elv_merge elv_merge(struct request_queue *q, struct request **req,
306 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Jens Axboeb374d182008-10-31 10:05:07 +0100308 struct elevator_queue *e = q->elevator;
Jens Axboe98170642006-07-28 09:23:08 +0200309 struct request *__rq;
Tejun Heo06b86242005-10-20 16:46:23 +0200310
Jens Axboe98170642006-07-28 09:23:08 +0200311 /*
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100312 * Levels of merges:
313 * nomerges: No merges at all attempted
314 * noxmerges: Only simple one-hit cache try
315 * merges: All merge tries attempted
316 */
Ming Lei7460d382015-10-20 23:13:55 +0800317 if (blk_queue_nomerges(q) || !bio_mergeable(bio))
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100318 return ELEVATOR_NO_MERGE;
319
320 /*
Jens Axboe98170642006-07-28 09:23:08 +0200321 * First try one-hit cache.
322 */
Tahsin Erdogan72ef7992016-07-07 11:48:22 -0700323 if (q->last_merge && elv_bio_merge_ok(q->last_merge, bio)) {
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100324 enum elv_merge ret = blk_try_merge(q->last_merge, bio);
325
Tejun Heo06b86242005-10-20 16:46:23 +0200326 if (ret != ELEVATOR_NO_MERGE) {
327 *req = q->last_merge;
328 return ret;
329 }
330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100332 if (blk_queue_noxmerges(q))
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200333 return ELEVATOR_NO_MERGE;
334
Jens Axboe98170642006-07-28 09:23:08 +0200335 /*
336 * See if our hash lookup can find a potential backmerge.
337 */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700338 __rq = elv_rqhash_find(q, bio->bi_iter.bi_sector);
Tahsin Erdogan72ef7992016-07-07 11:48:22 -0700339 if (__rq && elv_bio_merge_ok(__rq, bio)) {
Jens Axboe98170642006-07-28 09:23:08 +0200340 *req = __rq;
Ming Lei866663b2021-07-29 11:42:26 +0800341
342 if (blk_discard_mergable(__rq))
343 return ELEVATOR_DISCARD_MERGE;
Jens Axboe98170642006-07-28 09:23:08 +0200344 return ELEVATOR_BACK_MERGE;
345 }
346
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600347 if (e->type->ops.request_merge)
348 return e->type->ops.request_merge(q, req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 return ELEVATOR_NO_MERGE;
351}
352
Jens Axboe5e84ea32011-03-21 10:14:27 +0100353/*
354 * Attempt to do an insertion back merge. Only check for the case where
355 * we can append 'rq' to an existing request, so we can throw 'rq' away
356 * afterwards.
357 *
Jan Karafd2ef392021-06-23 11:36:34 +0200358 * Returns true if we merged, false otherwise. 'free' will contain all
359 * requests that need to be freed.
Jens Axboe5e84ea32011-03-21 10:14:27 +0100360 */
Jan Karafd2ef392021-06-23 11:36:34 +0200361bool elv_attempt_insert_merge(struct request_queue *q, struct request *rq,
362 struct list_head *free)
Jens Axboe5e84ea32011-03-21 10:14:27 +0100363{
364 struct request *__rq;
Shaohua Libee03932012-11-09 08:44:27 +0100365 bool ret;
Jens Axboe5e84ea32011-03-21 10:14:27 +0100366
367 if (blk_queue_nomerges(q))
368 return false;
369
370 /*
371 * First try one-hit cache.
372 */
Jan Karafd2ef392021-06-23 11:36:34 +0200373 if (q->last_merge && blk_attempt_req_merge(q, q->last_merge, rq)) {
374 list_add(&rq->queuelist, free);
Jens Axboe5e84ea32011-03-21 10:14:27 +0100375 return true;
Jan Karafd2ef392021-06-23 11:36:34 +0200376 }
Jens Axboe5e84ea32011-03-21 10:14:27 +0100377
378 if (blk_queue_noxmerges(q))
379 return false;
380
Shaohua Libee03932012-11-09 08:44:27 +0100381 ret = false;
Jens Axboe5e84ea32011-03-21 10:14:27 +0100382 /*
383 * See if our hash lookup can find a potential backmerge.
384 */
Shaohua Libee03932012-11-09 08:44:27 +0100385 while (1) {
386 __rq = elv_rqhash_find(q, blk_rq_pos(rq));
387 if (!__rq || !blk_attempt_req_merge(q, __rq, rq))
388 break;
Jens Axboe5e84ea32011-03-21 10:14:27 +0100389
Jan Karafd2ef392021-06-23 11:36:34 +0200390 list_add(&rq->queuelist, free);
Shaohua Libee03932012-11-09 08:44:27 +0100391 /* The merged request could be merged with others, try again */
392 ret = true;
393 rq = __rq;
394 }
395
396 return ret;
Jens Axboe5e84ea32011-03-21 10:14:27 +0100397}
398
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100399void elv_merged_request(struct request_queue *q, struct request *rq,
400 enum elv_merge type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Jens Axboeb374d182008-10-31 10:05:07 +0100402 struct elevator_queue *e = q->elevator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600404 if (e->type->ops.request_merged)
405 e->type->ops.request_merged(q, rq, type);
Tejun Heo06b86242005-10-20 16:46:23 +0200406
Jens Axboe2e662b62006-07-13 11:55:04 +0200407 if (type == ELEVATOR_BACK_MERGE)
408 elv_rqhash_reposition(q, rq);
Jens Axboe98170642006-07-28 09:23:08 +0200409
Tejun Heo06b86242005-10-20 16:46:23 +0200410 q->last_merge = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Jens Axboe165125e2007-07-24 09:28:11 +0200413void elv_merge_requests(struct request_queue *q, struct request *rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 struct request *next)
415{
Jens Axboeb374d182008-10-31 10:05:07 +0100416 struct elevator_queue *e = q->elevator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600418 if (e->type->ops.requests_merged)
419 e->type->ops.requests_merged(q, rq, next);
Tejun Heo06b86242005-10-20 16:46:23 +0200420
Jens Axboe98170642006-07-28 09:23:08 +0200421 elv_rqhash_reposition(q, rq);
Tejun Heo06b86242005-10-20 16:46:23 +0200422 q->last_merge = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Jens Axboe165125e2007-07-24 09:28:11 +0200425struct request *elv_latter_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Jens Axboeb374d182008-10-31 10:05:07 +0100427 struct elevator_queue *e = q->elevator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600429 if (e->type->ops.next_request)
430 return e->type->ops.next_request(q, rq);
Jens Axboebd166ef2017-01-17 06:03:22 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return NULL;
433}
434
Jens Axboe165125e2007-07-24 09:28:11 +0200435struct request *elv_former_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Jens Axboeb374d182008-10-31 10:05:07 +0100437 struct elevator_queue *e = q->elevator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600439 if (e->type->ops.former_request)
440 return e->type->ops.former_request(q, rq);
Jens Axboea1ce35f2018-10-29 10:23:51 -0600441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return NULL;
443}
444
Al Viro3d1ab402006-03-18 18:35:43 -0500445#define to_elv(atr) container_of((atr), struct elv_fs_entry, attr)
446
447static ssize_t
448elv_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
449{
Al Viro3d1ab402006-03-18 18:35:43 -0500450 struct elv_fs_entry *entry = to_elv(attr);
Jens Axboeb374d182008-10-31 10:05:07 +0100451 struct elevator_queue *e;
Al Viro3d1ab402006-03-18 18:35:43 -0500452 ssize_t error;
453
454 if (!entry->show)
455 return -EIO;
456
Jens Axboeb374d182008-10-31 10:05:07 +0100457 e = container_of(kobj, struct elevator_queue, kobj);
Al Viro3d1ab402006-03-18 18:35:43 -0500458 mutex_lock(&e->sysfs_lock);
Tejun Heo22f746e2011-12-14 00:33:41 +0100459 error = e->type ? entry->show(e, page) : -ENOENT;
Al Viro3d1ab402006-03-18 18:35:43 -0500460 mutex_unlock(&e->sysfs_lock);
461 return error;
462}
463
464static ssize_t
465elv_attr_store(struct kobject *kobj, struct attribute *attr,
466 const char *page, size_t length)
467{
Al Viro3d1ab402006-03-18 18:35:43 -0500468 struct elv_fs_entry *entry = to_elv(attr);
Jens Axboeb374d182008-10-31 10:05:07 +0100469 struct elevator_queue *e;
Al Viro3d1ab402006-03-18 18:35:43 -0500470 ssize_t error;
471
472 if (!entry->store)
473 return -EIO;
474
Jens Axboeb374d182008-10-31 10:05:07 +0100475 e = container_of(kobj, struct elevator_queue, kobj);
Al Viro3d1ab402006-03-18 18:35:43 -0500476 mutex_lock(&e->sysfs_lock);
Tejun Heo22f746e2011-12-14 00:33:41 +0100477 error = e->type ? entry->store(e, page, length) : -ENOENT;
Al Viro3d1ab402006-03-18 18:35:43 -0500478 mutex_unlock(&e->sysfs_lock);
479 return error;
480}
481
Emese Revfy52cf25d2010-01-19 02:58:23 +0100482static const struct sysfs_ops elv_sysfs_ops = {
Al Viro3d1ab402006-03-18 18:35:43 -0500483 .show = elv_attr_show,
484 .store = elv_attr_store,
485};
486
487static struct kobj_type elv_ktype = {
488 .sysfs_ops = &elv_sysfs_ops,
489 .release = elevator_release,
490};
491
Ming Leicecf5d82019-08-27 19:01:48 +0800492int elv_register_queue(struct request_queue *q, bool uevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Tejun Heo5a5bafd2012-03-05 13:14:56 -0800494 struct elevator_queue *e = q->elevator;
Al Viro3d1ab402006-03-18 18:35:43 -0500495 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Yufen Yuf0c6ae02020-10-08 23:26:31 -0400497 lockdep_assert_held(&q->sysfs_lock);
498
Greg Kroah-Hartmanb2d6db52007-12-17 23:05:35 -0700499 error = kobject_add(&e->kobj, &q->kobj, "%s", "iosched");
Al Viro3d1ab402006-03-18 18:35:43 -0500500 if (!error) {
Tejun Heo22f746e2011-12-14 00:33:41 +0100501 struct elv_fs_entry *attr = e->type->elevator_attrs;
Al Viro3d1ab402006-03-18 18:35:43 -0500502 if (attr) {
Al Viroe572ec72006-03-18 22:27:18 -0500503 while (attr->attr.name) {
504 if (sysfs_create_file(&e->kobj, &attr->attr))
Al Viro3d1ab402006-03-18 18:35:43 -0500505 break;
Al Viroe572ec72006-03-18 22:27:18 -0500506 attr++;
Al Viro3d1ab402006-03-18 18:35:43 -0500507 }
508 }
Ming Leicecf5d82019-08-27 19:01:48 +0800509 if (uevent)
510 kobject_uevent(&e->kobj, KOBJ_ADD);
511
Jens Axboe430c62f2010-10-07 09:35:16 +0200512 e->registered = 1;
Al Viro3d1ab402006-03-18 18:35:43 -0500513 }
514 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
Jens Axboebc1c1162006-06-08 08:49:06 +0200516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517void elv_unregister_queue(struct request_queue *q)
518{
Yufen Yuf0c6ae02020-10-08 23:26:31 -0400519 lockdep_assert_held(&q->sysfs_lock);
520
Tejun Heof8fc8772011-12-14 00:33:40 +0100521 if (q) {
522 struct elevator_queue *e = q->elevator;
523
524 kobject_uevent(&e->kobj, KOBJ_REMOVE);
525 kobject_del(&e->kobj);
Ming Leicecf5d82019-08-27 19:01:48 +0800526
Tejun Heof8fc8772011-12-14 00:33:40 +0100527 e->registered = 0;
Jan Kara8330cdb2017-04-19 11:33:27 +0200528 /* Re-enable throttling in case elevator disabled it */
529 wbt_enable_default(q);
Tejun Heof8fc8772011-12-14 00:33:40 +0100530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Jens Axboee567bf72014-06-22 16:32:48 -0600533int elv_register(struct elevator_type *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Damien Le Moale42cfb12021-06-18 10:59:22 +0900535 /* insert_requests and dispatch_request are mandatory */
536 if (WARN_ON_ONCE(!e->ops.insert_requests || !e->ops.dispatch_request))
537 return -EINVAL;
538
Tejun Heo3d3c2372011-12-14 00:33:42 +0100539 /* create icq_cache if requested */
540 if (e->icq_size) {
541 if (WARN_ON(e->icq_size < sizeof(struct io_cq)) ||
542 WARN_ON(e->icq_align < __alignof__(struct io_cq)))
543 return -EINVAL;
544
545 snprintf(e->icq_cache_name, sizeof(e->icq_cache_name),
546 "%s_io_cq", e->elevator_name);
547 e->icq_cache = kmem_cache_create(e->icq_cache_name, e->icq_size,
548 e->icq_align, 0, NULL);
549 if (!e->icq_cache)
550 return -ENOMEM;
551 }
552
553 /* register, don't allow duplicate names */
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200554 spin_lock(&elv_list_lock);
Damien Le Moal68c43f12019-09-05 18:51:31 +0900555 if (elevator_find(e->elevator_name, 0)) {
Tejun Heo3d3c2372011-12-14 00:33:42 +0100556 spin_unlock(&elv_list_lock);
Chengguang Xu62d2a192018-08-28 07:31:11 +0800557 kmem_cache_destroy(e->icq_cache);
Tejun Heo3d3c2372011-12-14 00:33:42 +0100558 return -EBUSY;
559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 list_add_tail(&e->list, &elv_list);
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200561 spin_unlock(&elv_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Hisao Tanabed0b0a812019-04-08 00:27:42 +0900563 printk(KERN_INFO "io scheduler %s registered\n", e->elevator_name);
564
Tejun Heo3d3c2372011-12-14 00:33:42 +0100565 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567EXPORT_SYMBOL_GPL(elv_register);
568
569void elv_unregister(struct elevator_type *e)
570{
Tejun Heo3d3c2372011-12-14 00:33:42 +0100571 /* unregister */
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200572 spin_lock(&elv_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 list_del_init(&e->list);
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200574 spin_unlock(&elv_list_lock);
Tejun Heo3d3c2372011-12-14 00:33:42 +0100575
576 /*
577 * Destroy icq_cache if it exists. icq's are RCU managed. Make
578 * sure all RCU operations are complete before proceeding.
579 */
580 if (e->icq_cache) {
581 rcu_barrier();
582 kmem_cache_destroy(e->icq_cache);
583 e->icq_cache = NULL;
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586EXPORT_SYMBOL_GPL(elv_unregister);
587
Jianchao Wangd48ece22018-08-21 15:15:03 +0800588int elevator_switch_mq(struct request_queue *q,
Omar Sandoval54d53292017-04-07 08:52:27 -0600589 struct elevator_type *new_e)
590{
591 int ret;
592
Bart Van Assche14a23492018-01-17 11:48:09 -0800593 lockdep_assert_held(&q->sysfs_lock);
594
Omar Sandoval54d53292017-04-07 08:52:27 -0600595 if (q->elevator) {
Ming Leib89f6252019-09-23 23:12:09 +0800596 if (q->elevator->registered)
Omar Sandoval54d53292017-04-07 08:52:27 -0600597 elv_unregister_queue(q);
Ming Leicecf5d82019-08-27 19:01:48 +0800598
Omar Sandoval54d53292017-04-07 08:52:27 -0600599 ioc_clear_queue(q);
Christoph Hellwigf46b81c2021-11-23 19:53:06 +0100600 blk_mq_sched_free_rqs(q);
Christoph Hellwig0c6cb3a2021-11-23 19:53:07 +0100601 elevator_exit(q);
Omar Sandoval54d53292017-04-07 08:52:27 -0600602 }
603
604 ret = blk_mq_init_sched(q, new_e);
605 if (ret)
606 goto out;
607
608 if (new_e) {
Ming Leicecf5d82019-08-27 19:01:48 +0800609 ret = elv_register_queue(q, true);
Omar Sandoval54d53292017-04-07 08:52:27 -0600610 if (ret) {
Christoph Hellwigf46b81c2021-11-23 19:53:06 +0100611 blk_mq_sched_free_rqs(q);
Christoph Hellwig0c6cb3a2021-11-23 19:53:07 +0100612 elevator_exit(q);
Omar Sandoval54d53292017-04-07 08:52:27 -0600613 goto out;
614 }
615 }
616
617 if (new_e)
618 blk_add_trace_msg(q, "elv switch: %s", new_e->elevator_name);
619 else
620 blk_add_trace_msg(q, "elv switch: none");
621
622out:
Omar Sandoval54d53292017-04-07 08:52:27 -0600623 return ret;
Omar Sandoval54d53292017-04-07 08:52:27 -0600624}
625
Damien Le Moal61db4372019-09-05 18:51:29 +0900626static inline bool elv_support_iosched(struct request_queue *q)
627{
Yufen Yu6251b752020-10-08 23:26:28 -0400628 if (!queue_is_mq(q) ||
Damien Le Moal7a7c5e72019-10-09 07:39:54 +0900629 (q->tag_set && (q->tag_set->flags & BLK_MQ_F_NO_SCHED)))
Damien Le Moal61db4372019-09-05 18:51:29 +0900630 return false;
631 return true;
632}
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634/*
Damien Le Moala0958ba2019-09-05 18:51:32 +0900635 * For single queue devices, default to using mq-deadline. If we have multiple
636 * queues or mq-deadline is not available, default to "none".
637 */
638static struct elevator_type *elevator_get_default(struct request_queue *q)
639{
Bart Van Assche90b71982021-08-05 10:41:59 -0700640 if (q->tag_set && q->tag_set->flags & BLK_MQ_F_NO_SCHED_BY_DEFAULT)
641 return NULL;
642
Ming Lei580dca82021-04-06 11:19:33 +0800643 if (q->nr_hw_queues != 1 &&
John Garry079a2e32021-10-05 18:23:39 +0800644 !blk_mq_is_shared_tags(q->tag_set->flags))
Damien Le Moala0958ba2019-09-05 18:51:32 +0900645 return NULL;
646
647 return elevator_get(q, "mq-deadline", false);
648}
649
650/*
651 * Get the first elevator providing the features required by the request queue.
652 * Default to "none" if no matching elevator is found.
653 */
654static struct elevator_type *elevator_get_by_features(struct request_queue *q)
655{
Jens Axboea2614252019-09-06 07:02:31 -0600656 struct elevator_type *e, *found = NULL;
Damien Le Moala0958ba2019-09-05 18:51:32 +0900657
658 spin_lock(&elv_list_lock);
659
660 list_for_each_entry(e, &elv_list, list) {
661 if (elv_support_features(e->elevator_features,
Jens Axboea2614252019-09-06 07:02:31 -0600662 q->required_elevator_features)) {
663 found = e;
Damien Le Moala0958ba2019-09-05 18:51:32 +0900664 break;
Jens Axboea2614252019-09-06 07:02:31 -0600665 }
Damien Le Moala0958ba2019-09-05 18:51:32 +0900666 }
667
Jens Axboea2614252019-09-06 07:02:31 -0600668 if (found && !try_module_get(found->elevator_owner))
669 found = NULL;
Damien Le Moala0958ba2019-09-05 18:51:32 +0900670
671 spin_unlock(&elv_list_lock);
Jens Axboea2614252019-09-06 07:02:31 -0600672 return found;
Damien Le Moala0958ba2019-09-05 18:51:32 +0900673}
674
675/*
676 * For a device queue that has no required features, use the default elevator
677 * settings. Otherwise, use the first elevator available matching the required
678 * features. If no suitable elevator is find or if the chosen elevator
679 * initialization fails, fall back to the "none" elevator (no elevator).
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200680 */
Damien Le Moal954b4a52019-09-05 18:51:30 +0900681void elevator_init_mq(struct request_queue *q)
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200682{
683 struct elevator_type *e;
Damien Le Moal954b4a52019-09-05 18:51:30 +0900684 int err;
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200685
Damien Le Moal61db4372019-09-05 18:51:29 +0900686 if (!elv_support_iosched(q))
Damien Le Moal954b4a52019-09-05 18:51:30 +0900687 return;
Damien Le Moal61db4372019-09-05 18:51:29 +0900688
Yufen Yu75e6c002020-10-08 23:26:29 -0400689 WARN_ON_ONCE(blk_queue_registered(q));
Ming Leic48dac12019-08-27 19:01:45 +0800690
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200691 if (unlikely(q->elevator))
Damien Le Moal954b4a52019-09-05 18:51:30 +0900692 return;
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200693
Damien Le Moala0958ba2019-09-05 18:51:32 +0900694 if (!q->required_elevator_features)
695 e = elevator_get_default(q);
696 else
697 e = elevator_get_by_features(q);
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200698 if (!e)
Damien Le Moal954b4a52019-09-05 18:51:30 +0900699 return;
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200700
Ming Lei245a4892021-11-17 19:55:02 +0800701 /*
702 * We are called before adding disk, when there isn't any FS I/O,
703 * so freezing queue plus canceling dispatch work is enough to
704 * drain any dispatch activities originated from passthrough
705 * requests, then no need to quiesce queue which may add long boot
706 * latency, especially when lots of disks are involved.
707 */
Damien Le Moal737eb782019-09-05 18:51:33 +0900708 blk_mq_freeze_queue(q);
Ming Lei245a4892021-11-17 19:55:02 +0800709 blk_mq_cancel_work_sync(q);
Damien Le Moal737eb782019-09-05 18:51:33 +0900710
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200711 err = blk_mq_init_sched(q, e);
Damien Le Moal737eb782019-09-05 18:51:33 +0900712
Damien Le Moal737eb782019-09-05 18:51:33 +0900713 blk_mq_unfreeze_queue(q);
714
Damien Le Moal954b4a52019-09-05 18:51:30 +0900715 if (err) {
716 pr_warn("\"%s\" elevator initialization failed, "
717 "falling back to \"none\"\n", e->elevator_name);
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200718 elevator_put(e);
Damien Le Moal954b4a52019-09-05 18:51:30 +0900719 }
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200720}
Christoph Hellwig131d08e2018-05-31 19:11:40 +0200721
722/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 * switch to new_e io scheduler. be careful not to introduce deadlocks -
724 * we don't free the old io scheduler, before we have allocated what we
725 * need for the new one. this way we have a chance of going back to the old
Tejun Heocb98fc82005-10-28 08:29:39 +0200726 * one, if the new one fails init for some reason.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 */
Jens Axboe165125e2007-07-24 09:28:11 +0200728static int elevator_switch(struct request_queue *q, struct elevator_type *new_e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Tejun Heoe8989fa2012-03-05 13:15:20 -0800730 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Bart Van Assche14a23492018-01-17 11:48:09 -0800732 lockdep_assert_held(&q->sysfs_lock);
733
Jens Axboea1ce35f2018-10-29 10:23:51 -0600734 blk_mq_freeze_queue(q);
735 blk_mq_quiesce_queue(q);
Jianchao Wangd48ece22018-08-21 15:15:03 +0800736
Jens Axboea1ce35f2018-10-29 10:23:51 -0600737 err = elevator_switch_mq(q, new_e);
Jianchao Wangd48ece22018-08-21 15:15:03 +0800738
Jens Axboea1ce35f2018-10-29 10:23:51 -0600739 blk_mq_unquiesce_queue(q);
740 blk_mq_unfreeze_queue(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200741
Jens Axboe5dd531a2010-08-23 13:52:19 +0200742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Jens Axboe5dd531a2010-08-23 13:52:19 +0200745/*
746 * Switch this queue to the given IO scheduler.
747 */
Tomoki Sekiyama7c8a3672013-10-15 16:42:19 -0600748static int __elevator_change(struct request_queue *q, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 char elevator_name[ELV_NAME_MAX];
751 struct elevator_type *e;
752
David Jefferye9a823f2017-08-28 10:52:44 -0600753 /* Make sure queue is not in the middle of being removed */
Ming Lei58c898b2019-08-27 19:01:47 +0800754 if (!blk_queue_registered(q))
David Jefferye9a823f2017-08-28 10:52:44 -0600755 return -ENOENT;
756
Jens Axboebd166ef2017-01-17 06:03:22 -0700757 /*
758 * Special case for mq, turn off scheduling
759 */
Aleksei Zakharovfbd72122019-02-11 13:50:37 +0300760 if (!strncmp(name, "none", 4)) {
761 if (!q->elevator)
762 return 0;
Jens Axboebd166ef2017-01-17 06:03:22 -0700763 return elevator_switch(q, NULL);
Aleksei Zakharovfbd72122019-02-11 13:50:37 +0300764 }
Martin K. Petersencd43e262009-05-22 17:17:52 -0400765
Li Zefanee2e9922008-10-14 08:49:56 +0200766 strlcpy(elevator_name, name, sizeof(elevator_name));
Jens Axboe2527d992017-10-25 12:33:42 -0600767 e = elevator_get(q, strstrip(elevator_name), true);
Jens Axboe340ff322017-05-10 07:40:04 -0600768 if (!e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Damien Le Moal68c43f12019-09-05 18:51:31 +0900771 if (q->elevator &&
772 elevator_match(q->elevator->type, elevator_name, 0)) {
Nate Diller2ca7d932005-10-30 15:02:24 -0800773 elevator_put(e);
Jens Axboe5dd531a2010-08-23 13:52:19 +0200774 return 0;
Nate Diller2ca7d932005-10-30 15:02:24 -0800775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Jens Axboe5dd531a2010-08-23 13:52:19 +0200777 return elevator_switch(q, e);
778}
Tomoki Sekiyama7c8a3672013-10-15 16:42:19 -0600779
Jens Axboe5dd531a2010-08-23 13:52:19 +0200780ssize_t elv_iosched_store(struct request_queue *q, const char *name,
781 size_t count)
782{
783 int ret;
784
Yufen Yu6251b752020-10-08 23:26:28 -0400785 if (!elv_support_iosched(q))
Jens Axboe5dd531a2010-08-23 13:52:19 +0200786 return count;
787
Tomoki Sekiyama7c8a3672013-10-15 16:42:19 -0600788 ret = __elevator_change(q, name);
Jens Axboe5dd531a2010-08-23 13:52:19 +0200789 if (!ret)
790 return count;
791
Jens Axboe5dd531a2010-08-23 13:52:19 +0200792 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Jens Axboe165125e2007-07-24 09:28:11 +0200795ssize_t elv_iosched_show(struct request_queue *q, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Jens Axboeb374d182008-10-31 10:05:07 +0100797 struct elevator_queue *e = q->elevator;
Jens Axboebd166ef2017-01-17 06:03:22 -0700798 struct elevator_type *elv = NULL;
Matthias Kaehlcke70cee262007-07-10 12:26:24 +0200799 struct elevator_type *__e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 int len = 0;
801
Jens Axboe344e9ff2018-11-15 12:22:51 -0700802 if (!queue_is_mq(q))
Martin K. Petersencd43e262009-05-22 17:17:52 -0400803 return sprintf(name, "none\n");
804
Jens Axboebd166ef2017-01-17 06:03:22 -0700805 if (!q->elevator)
806 len += sprintf(name+len, "[none] ");
807 else
808 elv = e->type;
Martin K. Petersencd43e262009-05-22 17:17:52 -0400809
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200810 spin_lock(&elv_list_lock);
Matthias Kaehlcke70cee262007-07-10 12:26:24 +0200811 list_for_each_entry(__e, &elv_list, list) {
Damien Le Moal68c43f12019-09-05 18:51:31 +0900812 if (elv && elevator_match(elv, __e->elevator_name, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 len += sprintf(name+len, "[%s] ", elv->elevator_name);
Jens Axboebd166ef2017-01-17 06:03:22 -0700814 continue;
815 }
Damien Le Moal68c43f12019-09-05 18:51:31 +0900816 if (elv_support_iosched(q) &&
817 elevator_match(__e, __e->elevator_name,
818 q->required_elevator_features))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 len += sprintf(name+len, "%s ", __e->elevator_name);
820 }
Jens Axboe2a12dcd2007-04-26 14:41:53 +0200821 spin_unlock(&elv_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Jens Axboe344e9ff2018-11-15 12:22:51 -0700823 if (q->elevator)
Jens Axboebd166ef2017-01-17 06:03:22 -0700824 len += sprintf(name+len, "none");
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 len += sprintf(len+name, "\n");
827 return len;
828}
829
Jens Axboe165125e2007-07-24 09:28:11 +0200830struct request *elv_rb_former_request(struct request_queue *q,
831 struct request *rq)
Jens Axboe2e662b62006-07-13 11:55:04 +0200832{
833 struct rb_node *rbprev = rb_prev(&rq->rb_node);
834
835 if (rbprev)
836 return rb_entry_rq(rbprev);
837
838 return NULL;
839}
Jens Axboe2e662b62006-07-13 11:55:04 +0200840EXPORT_SYMBOL(elv_rb_former_request);
841
Jens Axboe165125e2007-07-24 09:28:11 +0200842struct request *elv_rb_latter_request(struct request_queue *q,
843 struct request *rq)
Jens Axboe2e662b62006-07-13 11:55:04 +0200844{
845 struct rb_node *rbnext = rb_next(&rq->rb_node);
846
847 if (rbnext)
848 return rb_entry_rq(rbnext);
849
850 return NULL;
851}
Jens Axboe2e662b62006-07-13 11:55:04 +0200852EXPORT_SYMBOL(elv_rb_latter_request);
Jan Karaf8db3832019-11-06 11:48:57 +0100853
854static int __init elevator_setup(char *str)
855{
856 pr_warn("Kernel parameter elevator= does not have any effect anymore.\n"
857 "Please use sysfs to set IO scheduler for individual devices.\n");
858 return 1;
859}
860
861__setup("elevator=", elevator_setup);