ARM: dts: omap5: Add bus_dma_limit for L3 bus
[linux/fpc-iii.git] / block / bfq-iosched.c
blob8fe4b69195119fab6c768b86e56107e34f1ac5dd
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Budget Fair Queueing (BFQ) I/O scheduler.
5 * Based on ideas and code from CFQ:
6 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
8 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
9 * Paolo Valente <paolo.valente@unimore.it>
11 * Copyright (C) 2010 Paolo Valente <paolo.valente@unimore.it>
12 * Arianna Avanzini <avanzini@google.com>
14 * Copyright (C) 2017 Paolo Valente <paolo.valente@linaro.org>
16 * BFQ is a proportional-share I/O scheduler, with some extra
17 * low-latency capabilities. BFQ also supports full hierarchical
18 * scheduling through cgroups. Next paragraphs provide an introduction
19 * on BFQ inner workings. Details on BFQ benefits, usage and
20 * limitations can be found in Documentation/block/bfq-iosched.rst.
22 * BFQ is a proportional-share storage-I/O scheduling algorithm based
23 * on the slice-by-slice service scheme of CFQ. But BFQ assigns
24 * budgets, measured in number of sectors, to processes instead of
25 * time slices. The device is not granted to the in-service process
26 * for a given time slice, but until it has exhausted its assigned
27 * budget. This change from the time to the service domain enables BFQ
28 * to distribute the device throughput among processes as desired,
29 * without any distortion due to throughput fluctuations, or to device
30 * internal queueing. BFQ uses an ad hoc internal scheduler, called
31 * B-WF2Q+, to schedule processes according to their budgets. More
32 * precisely, BFQ schedules queues associated with processes. Each
33 * process/queue is assigned a user-configurable weight, and B-WF2Q+
34 * guarantees that each queue receives a fraction of the throughput
35 * proportional to its weight. Thanks to the accurate policy of
36 * B-WF2Q+, BFQ can afford to assign high budgets to I/O-bound
37 * processes issuing sequential requests (to boost the throughput),
38 * and yet guarantee a low latency to interactive and soft real-time
39 * applications.
41 * In particular, to provide these low-latency guarantees, BFQ
42 * explicitly privileges the I/O of two classes of time-sensitive
43 * applications: interactive and soft real-time. In more detail, BFQ
44 * behaves this way if the low_latency parameter is set (default
45 * configuration). This feature enables BFQ to provide applications in
46 * these classes with a very low latency.
48 * To implement this feature, BFQ constantly tries to detect whether
49 * the I/O requests in a bfq_queue come from an interactive or a soft
50 * real-time application. For brevity, in these cases, the queue is
51 * said to be interactive or soft real-time. In both cases, BFQ
52 * privileges the service of the queue, over that of non-interactive
53 * and non-soft-real-time queues. This privileging is performed,
54 * mainly, by raising the weight of the queue. So, for brevity, we
55 * call just weight-raising periods the time periods during which a
56 * queue is privileged, because deemed interactive or soft real-time.
58 * The detection of soft real-time queues/applications is described in
59 * detail in the comments on the function
60 * bfq_bfqq_softrt_next_start. On the other hand, the detection of an
61 * interactive queue works as follows: a queue is deemed interactive
62 * if it is constantly non empty only for a limited time interval,
63 * after which it does become empty. The queue may be deemed
64 * interactive again (for a limited time), if it restarts being
65 * constantly non empty, provided that this happens only after the
66 * queue has remained empty for a given minimum idle time.
68 * By default, BFQ computes automatically the above maximum time
69 * interval, i.e., the time interval after which a constantly
70 * non-empty queue stops being deemed interactive. Since a queue is
71 * weight-raised while it is deemed interactive, this maximum time
72 * interval happens to coincide with the (maximum) duration of the
73 * weight-raising for interactive queues.
75 * Finally, BFQ also features additional heuristics for
76 * preserving both a low latency and a high throughput on NCQ-capable,
77 * rotational or flash-based devices, and to get the job done quickly
78 * for applications consisting in many I/O-bound processes.
80 * NOTE: if the main or only goal, with a given device, is to achieve
81 * the maximum-possible throughput at all times, then do switch off
82 * all low-latency heuristics for that device, by setting low_latency
83 * to 0.
85 * BFQ is described in [1], where also a reference to the initial,
86 * more theoretical paper on BFQ can be found. The interested reader
87 * can find in the latter paper full details on the main algorithm, as
88 * well as formulas of the guarantees and formal proofs of all the
89 * properties. With respect to the version of BFQ presented in these
90 * papers, this implementation adds a few more heuristics, such as the
91 * ones that guarantee a low latency to interactive and soft real-time
92 * applications, and a hierarchical extension based on H-WF2Q+.
94 * B-WF2Q+ is based on WF2Q+, which is described in [2], together with
95 * H-WF2Q+, while the augmented tree used here to implement B-WF2Q+
96 * with O(log N) complexity derives from the one introduced with EEVDF
97 * in [3].
99 * [1] P. Valente, A. Avanzini, "Evolution of the BFQ Storage I/O
100 * Scheduler", Proceedings of the First Workshop on Mobile System
101 * Technologies (MST-2015), May 2015.
102 * http://algogroup.unimore.it/people/paolo/disk_sched/mst-2015.pdf
104 * [2] Jon C.R. Bennett and H. Zhang, "Hierarchical Packet Fair Queueing
105 * Algorithms", IEEE/ACM Transactions on Networking, 5(5):675-689,
106 * Oct 1997.
108 * http://www.cs.cmu.edu/~hzhang/papers/TON-97-Oct.ps.gz
110 * [3] I. Stoica and H. Abdel-Wahab, "Earliest Eligible Virtual Deadline
111 * First: A Flexible and Accurate Mechanism for Proportional Share
112 * Resource Allocation", technical report.
114 * http://www.cs.berkeley.edu/~istoica/papers/eevdf-tr-95.pdf
116 #include <linux/module.h>
117 #include <linux/slab.h>
118 #include <linux/blkdev.h>
119 #include <linux/cgroup.h>
120 #include <linux/elevator.h>
121 #include <linux/ktime.h>
122 #include <linux/rbtree.h>
123 #include <linux/ioprio.h>
124 #include <linux/sbitmap.h>
125 #include <linux/delay.h>
127 #include "blk.h"
128 #include "blk-mq.h"
129 #include "blk-mq-tag.h"
130 #include "blk-mq-sched.h"
131 #include "bfq-iosched.h"
132 #include "blk-wbt.h"
134 #define BFQ_BFQQ_FNS(name) \
135 void bfq_mark_bfqq_##name(struct bfq_queue *bfqq) \
137 __set_bit(BFQQF_##name, &(bfqq)->flags); \
139 void bfq_clear_bfqq_##name(struct bfq_queue *bfqq) \
141 __clear_bit(BFQQF_##name, &(bfqq)->flags); \
143 int bfq_bfqq_##name(const struct bfq_queue *bfqq) \
145 return test_bit(BFQQF_##name, &(bfqq)->flags); \
148 BFQ_BFQQ_FNS(just_created);
149 BFQ_BFQQ_FNS(busy);
150 BFQ_BFQQ_FNS(wait_request);
151 BFQ_BFQQ_FNS(non_blocking_wait_rq);
152 BFQ_BFQQ_FNS(fifo_expire);
153 BFQ_BFQQ_FNS(has_short_ttime);
154 BFQ_BFQQ_FNS(sync);
155 BFQ_BFQQ_FNS(IO_bound);
156 BFQ_BFQQ_FNS(in_large_burst);
157 BFQ_BFQQ_FNS(coop);
158 BFQ_BFQQ_FNS(split_coop);
159 BFQ_BFQQ_FNS(softrt_update);
160 BFQ_BFQQ_FNS(has_waker);
161 #undef BFQ_BFQQ_FNS \
163 /* Expiration time of sync (0) and async (1) requests, in ns. */
164 static const u64 bfq_fifo_expire[2] = { NSEC_PER_SEC / 4, NSEC_PER_SEC / 8 };
166 /* Maximum backwards seek (magic number lifted from CFQ), in KiB. */
167 static const int bfq_back_max = 16 * 1024;
169 /* Penalty of a backwards seek, in number of sectors. */
170 static const int bfq_back_penalty = 2;
172 /* Idling period duration, in ns. */
173 static u64 bfq_slice_idle = NSEC_PER_SEC / 125;
175 /* Minimum number of assigned budgets for which stats are safe to compute. */
176 static const int bfq_stats_min_budgets = 194;
178 /* Default maximum budget values, in sectors and number of requests. */
179 static const int bfq_default_max_budget = 16 * 1024;
182 * When a sync request is dispatched, the queue that contains that
183 * request, and all the ancestor entities of that queue, are charged
184 * with the number of sectors of the request. In contrast, if the
185 * request is async, then the queue and its ancestor entities are
186 * charged with the number of sectors of the request, multiplied by
187 * the factor below. This throttles the bandwidth for async I/O,
188 * w.r.t. to sync I/O, and it is done to counter the tendency of async
189 * writes to steal I/O throughput to reads.
191 * The current value of this parameter is the result of a tuning with
192 * several hardware and software configurations. We tried to find the
193 * lowest value for which writes do not cause noticeable problems to
194 * reads. In fact, the lower this parameter, the stabler I/O control,
195 * in the following respect. The lower this parameter is, the less
196 * the bandwidth enjoyed by a group decreases
197 * - when the group does writes, w.r.t. to when it does reads;
198 * - when other groups do reads, w.r.t. to when they do writes.
200 static const int bfq_async_charge_factor = 3;
202 /* Default timeout values, in jiffies, approximating CFQ defaults. */
203 const int bfq_timeout = HZ / 8;
206 * Time limit for merging (see comments in bfq_setup_cooperator). Set
207 * to the slowest value that, in our tests, proved to be effective in
208 * removing false positives, while not causing true positives to miss
209 * queue merging.
211 * As can be deduced from the low time limit below, queue merging, if
212 * successful, happens at the very beginning of the I/O of the involved
213 * cooperating processes, as a consequence of the arrival of the very
214 * first requests from each cooperator. After that, there is very
215 * little chance to find cooperators.
217 static const unsigned long bfq_merge_time_limit = HZ/10;
219 static struct kmem_cache *bfq_pool;
221 /* Below this threshold (in ns), we consider thinktime immediate. */
222 #define BFQ_MIN_TT (2 * NSEC_PER_MSEC)
224 /* hw_tag detection: parallel requests threshold and min samples needed. */
225 #define BFQ_HW_QUEUE_THRESHOLD 3
226 #define BFQ_HW_QUEUE_SAMPLES 32
228 #define BFQQ_SEEK_THR (sector_t)(8 * 100)
229 #define BFQQ_SECT_THR_NONROT (sector_t)(2 * 32)
230 #define BFQ_RQ_SEEKY(bfqd, last_pos, rq) \
231 (get_sdist(last_pos, rq) > \
232 BFQQ_SEEK_THR && \
233 (!blk_queue_nonrot(bfqd->queue) || \
234 blk_rq_sectors(rq) < BFQQ_SECT_THR_NONROT))
235 #define BFQQ_CLOSE_THR (sector_t)(8 * 1024)
236 #define BFQQ_SEEKY(bfqq) (hweight32(bfqq->seek_history) > 19)
238 * Sync random I/O is likely to be confused with soft real-time I/O,
239 * because it is characterized by limited throughput and apparently
240 * isochronous arrival pattern. To avoid false positives, queues
241 * containing only random (seeky) I/O are prevented from being tagged
242 * as soft real-time.
244 #define BFQQ_TOTALLY_SEEKY(bfqq) (bfqq->seek_history == -1)
246 /* Min number of samples required to perform peak-rate update */
247 #define BFQ_RATE_MIN_SAMPLES 32
248 /* Min observation time interval required to perform a peak-rate update (ns) */
249 #define BFQ_RATE_MIN_INTERVAL (300*NSEC_PER_MSEC)
250 /* Target observation time interval for a peak-rate update (ns) */
251 #define BFQ_RATE_REF_INTERVAL NSEC_PER_SEC
254 * Shift used for peak-rate fixed precision calculations.
255 * With
256 * - the current shift: 16 positions
257 * - the current type used to store rate: u32
258 * - the current unit of measure for rate: [sectors/usec], or, more precisely,
259 * [(sectors/usec) / 2^BFQ_RATE_SHIFT] to take into account the shift,
260 * the range of rates that can be stored is
261 * [1 / 2^BFQ_RATE_SHIFT, 2^(32 - BFQ_RATE_SHIFT)] sectors/usec =
262 * [1 / 2^16, 2^16] sectors/usec = [15e-6, 65536] sectors/usec =
263 * [15, 65G] sectors/sec
264 * Which, assuming a sector size of 512B, corresponds to a range of
265 * [7.5K, 33T] B/sec
267 #define BFQ_RATE_SHIFT 16
270 * When configured for computing the duration of the weight-raising
271 * for interactive queues automatically (see the comments at the
272 * beginning of this file), BFQ does it using the following formula:
273 * duration = (ref_rate / r) * ref_wr_duration,
274 * where r is the peak rate of the device, and ref_rate and
275 * ref_wr_duration are two reference parameters. In particular,
276 * ref_rate is the peak rate of the reference storage device (see
277 * below), and ref_wr_duration is about the maximum time needed, with
278 * BFQ and while reading two files in parallel, to load typical large
279 * applications on the reference device (see the comments on
280 * max_service_from_wr below, for more details on how ref_wr_duration
281 * is obtained). In practice, the slower/faster the device at hand
282 * is, the more/less it takes to load applications with respect to the
283 * reference device. Accordingly, the longer/shorter BFQ grants
284 * weight raising to interactive applications.
286 * BFQ uses two different reference pairs (ref_rate, ref_wr_duration),
287 * depending on whether the device is rotational or non-rotational.
289 * In the following definitions, ref_rate[0] and ref_wr_duration[0]
290 * are the reference values for a rotational device, whereas
291 * ref_rate[1] and ref_wr_duration[1] are the reference values for a
292 * non-rotational device. The reference rates are not the actual peak
293 * rates of the devices used as a reference, but slightly lower
294 * values. The reason for using slightly lower values is that the
295 * peak-rate estimator tends to yield slightly lower values than the
296 * actual peak rate (it can yield the actual peak rate only if there
297 * is only one process doing I/O, and the process does sequential
298 * I/O).
300 * The reference peak rates are measured in sectors/usec, left-shifted
301 * by BFQ_RATE_SHIFT.
303 static int ref_rate[2] = {14000, 33000};
305 * To improve readability, a conversion function is used to initialize
306 * the following array, which entails that the array can be
307 * initialized only in a function.
309 static int ref_wr_duration[2];
312 * BFQ uses the above-detailed, time-based weight-raising mechanism to
313 * privilege interactive tasks. This mechanism is vulnerable to the
314 * following false positives: I/O-bound applications that will go on
315 * doing I/O for much longer than the duration of weight
316 * raising. These applications have basically no benefit from being
317 * weight-raised at the beginning of their I/O. On the opposite end,
318 * while being weight-raised, these applications
319 * a) unjustly steal throughput to applications that may actually need
320 * low latency;
321 * b) make BFQ uselessly perform device idling; device idling results
322 * in loss of device throughput with most flash-based storage, and may
323 * increase latencies when used purposelessly.
325 * BFQ tries to reduce these problems, by adopting the following
326 * countermeasure. To introduce this countermeasure, we need first to
327 * finish explaining how the duration of weight-raising for
328 * interactive tasks is computed.
330 * For a bfq_queue deemed as interactive, the duration of weight
331 * raising is dynamically adjusted, as a function of the estimated
332 * peak rate of the device, so as to be equal to the time needed to
333 * execute the 'largest' interactive task we benchmarked so far. By
334 * largest task, we mean the task for which each involved process has
335 * to do more I/O than for any of the other tasks we benchmarked. This
336 * reference interactive task is the start-up of LibreOffice Writer,
337 * and in this task each process/bfq_queue needs to have at most ~110K
338 * sectors transferred.
340 * This last piece of information enables BFQ to reduce the actual
341 * duration of weight-raising for at least one class of I/O-bound
342 * applications: those doing sequential or quasi-sequential I/O. An
343 * example is file copy. In fact, once started, the main I/O-bound
344 * processes of these applications usually consume the above 110K
345 * sectors in much less time than the processes of an application that
346 * is starting, because these I/O-bound processes will greedily devote
347 * almost all their CPU cycles only to their target,
348 * throughput-friendly I/O operations. This is even more true if BFQ
349 * happens to be underestimating the device peak rate, and thus
350 * overestimating the duration of weight raising. But, according to
351 * our measurements, once transferred 110K sectors, these processes
352 * have no right to be weight-raised any longer.
354 * Basing on the last consideration, BFQ ends weight-raising for a
355 * bfq_queue if the latter happens to have received an amount of
356 * service at least equal to the following constant. The constant is
357 * set to slightly more than 110K, to have a minimum safety margin.
359 * This early ending of weight-raising reduces the amount of time
360 * during which interactive false positives cause the two problems
361 * described at the beginning of these comments.
363 static const unsigned long max_service_from_wr = 120000;
365 #define RQ_BIC(rq) icq_to_bic((rq)->elv.priv[0])
366 #define RQ_BFQQ(rq) ((rq)->elv.priv[1])
368 struct bfq_queue *bic_to_bfqq(struct bfq_io_cq *bic, bool is_sync)
370 return bic->bfqq[is_sync];
373 void bic_set_bfqq(struct bfq_io_cq *bic, struct bfq_queue *bfqq, bool is_sync)
375 bic->bfqq[is_sync] = bfqq;
378 struct bfq_data *bic_to_bfqd(struct bfq_io_cq *bic)
380 return bic->icq.q->elevator->elevator_data;
384 * icq_to_bic - convert iocontext queue structure to bfq_io_cq.
385 * @icq: the iocontext queue.
387 static struct bfq_io_cq *icq_to_bic(struct io_cq *icq)
389 /* bic->icq is the first member, %NULL will convert to %NULL */
390 return container_of(icq, struct bfq_io_cq, icq);
394 * bfq_bic_lookup - search into @ioc a bic associated to @bfqd.
395 * @bfqd: the lookup key.
396 * @ioc: the io_context of the process doing I/O.
397 * @q: the request queue.
399 static struct bfq_io_cq *bfq_bic_lookup(struct bfq_data *bfqd,
400 struct io_context *ioc,
401 struct request_queue *q)
403 if (ioc) {
404 unsigned long flags;
405 struct bfq_io_cq *icq;
407 spin_lock_irqsave(&q->queue_lock, flags);
408 icq = icq_to_bic(ioc_lookup_icq(ioc, q));
409 spin_unlock_irqrestore(&q->queue_lock, flags);
411 return icq;
414 return NULL;
418 * Scheduler run of queue, if there are requests pending and no one in the
419 * driver that will restart queueing.
421 void bfq_schedule_dispatch(struct bfq_data *bfqd)
423 if (bfqd->queued != 0) {
424 bfq_log(bfqd, "schedule dispatch");
425 blk_mq_run_hw_queues(bfqd->queue, true);
429 #define bfq_class_idle(bfqq) ((bfqq)->ioprio_class == IOPRIO_CLASS_IDLE)
430 #define bfq_class_rt(bfqq) ((bfqq)->ioprio_class == IOPRIO_CLASS_RT)
432 #define bfq_sample_valid(samples) ((samples) > 80)
435 * Lifted from AS - choose which of rq1 and rq2 that is best served now.
436 * We choose the request that is closer to the head right now. Distance
437 * behind the head is penalized and only allowed to a certain extent.
439 static struct request *bfq_choose_req(struct bfq_data *bfqd,
440 struct request *rq1,
441 struct request *rq2,
442 sector_t last)
444 sector_t s1, s2, d1 = 0, d2 = 0;
445 unsigned long back_max;
446 #define BFQ_RQ1_WRAP 0x01 /* request 1 wraps */
447 #define BFQ_RQ2_WRAP 0x02 /* request 2 wraps */
448 unsigned int wrap = 0; /* bit mask: requests behind the disk head? */
450 if (!rq1 || rq1 == rq2)
451 return rq2;
452 if (!rq2)
453 return rq1;
455 if (rq_is_sync(rq1) && !rq_is_sync(rq2))
456 return rq1;
457 else if (rq_is_sync(rq2) && !rq_is_sync(rq1))
458 return rq2;
459 if ((rq1->cmd_flags & REQ_META) && !(rq2->cmd_flags & REQ_META))
460 return rq1;
461 else if ((rq2->cmd_flags & REQ_META) && !(rq1->cmd_flags & REQ_META))
462 return rq2;
464 s1 = blk_rq_pos(rq1);
465 s2 = blk_rq_pos(rq2);
468 * By definition, 1KiB is 2 sectors.
470 back_max = bfqd->bfq_back_max * 2;
473 * Strict one way elevator _except_ in the case where we allow
474 * short backward seeks which are biased as twice the cost of a
475 * similar forward seek.
477 if (s1 >= last)
478 d1 = s1 - last;
479 else if (s1 + back_max >= last)
480 d1 = (last - s1) * bfqd->bfq_back_penalty;
481 else
482 wrap |= BFQ_RQ1_WRAP;
484 if (s2 >= last)
485 d2 = s2 - last;
486 else if (s2 + back_max >= last)
487 d2 = (last - s2) * bfqd->bfq_back_penalty;
488 else
489 wrap |= BFQ_RQ2_WRAP;
491 /* Found required data */
494 * By doing switch() on the bit mask "wrap" we avoid having to
495 * check two variables for all permutations: --> faster!
497 switch (wrap) {
498 case 0: /* common case for CFQ: rq1 and rq2 not wrapped */
499 if (d1 < d2)
500 return rq1;
501 else if (d2 < d1)
502 return rq2;
504 if (s1 >= s2)
505 return rq1;
506 else
507 return rq2;
509 case BFQ_RQ2_WRAP:
510 return rq1;
511 case BFQ_RQ1_WRAP:
512 return rq2;
513 case BFQ_RQ1_WRAP|BFQ_RQ2_WRAP: /* both rqs wrapped */
514 default:
516 * Since both rqs are wrapped,
517 * start with the one that's further behind head
518 * (--> only *one* back seek required),
519 * since back seek takes more time than forward.
521 if (s1 <= s2)
522 return rq1;
523 else
524 return rq2;
529 * Async I/O can easily starve sync I/O (both sync reads and sync
530 * writes), by consuming all tags. Similarly, storms of sync writes,
531 * such as those that sync(2) may trigger, can starve sync reads.
532 * Limit depths of async I/O and sync writes so as to counter both
533 * problems.
535 static void bfq_limit_depth(unsigned int op, struct blk_mq_alloc_data *data)
537 struct bfq_data *bfqd = data->q->elevator->elevator_data;
539 if (op_is_sync(op) && !op_is_write(op))
540 return;
542 data->shallow_depth =
543 bfqd->word_depths[!!bfqd->wr_busy_queues][op_is_sync(op)];
545 bfq_log(bfqd, "[%s] wr_busy %d sync %d depth %u",
546 __func__, bfqd->wr_busy_queues, op_is_sync(op),
547 data->shallow_depth);
550 static struct bfq_queue *
551 bfq_rq_pos_tree_lookup(struct bfq_data *bfqd, struct rb_root *root,
552 sector_t sector, struct rb_node **ret_parent,
553 struct rb_node ***rb_link)
555 struct rb_node **p, *parent;
556 struct bfq_queue *bfqq = NULL;
558 parent = NULL;
559 p = &root->rb_node;
560 while (*p) {
561 struct rb_node **n;
563 parent = *p;
564 bfqq = rb_entry(parent, struct bfq_queue, pos_node);
567 * Sort strictly based on sector. Smallest to the left,
568 * largest to the right.
570 if (sector > blk_rq_pos(bfqq->next_rq))
571 n = &(*p)->rb_right;
572 else if (sector < blk_rq_pos(bfqq->next_rq))
573 n = &(*p)->rb_left;
574 else
575 break;
576 p = n;
577 bfqq = NULL;
580 *ret_parent = parent;
581 if (rb_link)
582 *rb_link = p;
584 bfq_log(bfqd, "rq_pos_tree_lookup %llu: returning %d",
585 (unsigned long long)sector,
586 bfqq ? bfqq->pid : 0);
588 return bfqq;
591 static bool bfq_too_late_for_merging(struct bfq_queue *bfqq)
593 return bfqq->service_from_backlogged > 0 &&
594 time_is_before_jiffies(bfqq->first_IO_time +
595 bfq_merge_time_limit);
599 * The following function is not marked as __cold because it is
600 * actually cold, but for the same performance goal described in the
601 * comments on the likely() at the beginning of
602 * bfq_setup_cooperator(). Unexpectedly, to reach an even lower
603 * execution time for the case where this function is not invoked, we
604 * had to add an unlikely() in each involved if().
606 void __cold
607 bfq_pos_tree_add_move(struct bfq_data *bfqd, struct bfq_queue *bfqq)
609 struct rb_node **p, *parent;
610 struct bfq_queue *__bfqq;
612 if (bfqq->pos_root) {
613 rb_erase(&bfqq->pos_node, bfqq->pos_root);
614 bfqq->pos_root = NULL;
617 /* oom_bfqq does not participate in queue merging */
618 if (bfqq == &bfqd->oom_bfqq)
619 return;
622 * bfqq cannot be merged any longer (see comments in
623 * bfq_setup_cooperator): no point in adding bfqq into the
624 * position tree.
626 if (bfq_too_late_for_merging(bfqq))
627 return;
629 if (bfq_class_idle(bfqq))
630 return;
631 if (!bfqq->next_rq)
632 return;
634 bfqq->pos_root = &bfq_bfqq_to_bfqg(bfqq)->rq_pos_tree;
635 __bfqq = bfq_rq_pos_tree_lookup(bfqd, bfqq->pos_root,
636 blk_rq_pos(bfqq->next_rq), &parent, &p);
637 if (!__bfqq) {
638 rb_link_node(&bfqq->pos_node, parent, p);
639 rb_insert_color(&bfqq->pos_node, bfqq->pos_root);
640 } else
641 bfqq->pos_root = NULL;
645 * The following function returns false either if every active queue
646 * must receive the same share of the throughput (symmetric scenario),
647 * or, as a special case, if bfqq must receive a share of the
648 * throughput lower than or equal to the share that every other active
649 * queue must receive. If bfqq does sync I/O, then these are the only
650 * two cases where bfqq happens to be guaranteed its share of the
651 * throughput even if I/O dispatching is not plugged when bfqq remains
652 * temporarily empty (for more details, see the comments in the
653 * function bfq_better_to_idle()). For this reason, the return value
654 * of this function is used to check whether I/O-dispatch plugging can
655 * be avoided.
657 * The above first case (symmetric scenario) occurs when:
658 * 1) all active queues have the same weight,
659 * 2) all active queues belong to the same I/O-priority class,
660 * 3) all active groups at the same level in the groups tree have the same
661 * weight,
662 * 4) all active groups at the same level in the groups tree have the same
663 * number of children.
665 * Unfortunately, keeping the necessary state for evaluating exactly
666 * the last two symmetry sub-conditions above would be quite complex
667 * and time consuming. Therefore this function evaluates, instead,
668 * only the following stronger three sub-conditions, for which it is
669 * much easier to maintain the needed state:
670 * 1) all active queues have the same weight,
671 * 2) all active queues belong to the same I/O-priority class,
672 * 3) there are no active groups.
673 * In particular, the last condition is always true if hierarchical
674 * support or the cgroups interface are not enabled, thus no state
675 * needs to be maintained in this case.
677 static bool bfq_asymmetric_scenario(struct bfq_data *bfqd,
678 struct bfq_queue *bfqq)
680 bool smallest_weight = bfqq &&
681 bfqq->weight_counter &&
682 bfqq->weight_counter ==
683 container_of(
684 rb_first_cached(&bfqd->queue_weights_tree),
685 struct bfq_weight_counter,
686 weights_node);
689 * For queue weights to differ, queue_weights_tree must contain
690 * at least two nodes.
692 bool varied_queue_weights = !smallest_weight &&
693 !RB_EMPTY_ROOT(&bfqd->queue_weights_tree.rb_root) &&
694 (bfqd->queue_weights_tree.rb_root.rb_node->rb_left ||
695 bfqd->queue_weights_tree.rb_root.rb_node->rb_right);
697 bool multiple_classes_busy =
698 (bfqd->busy_queues[0] && bfqd->busy_queues[1]) ||
699 (bfqd->busy_queues[0] && bfqd->busy_queues[2]) ||
700 (bfqd->busy_queues[1] && bfqd->busy_queues[2]);
702 return varied_queue_weights || multiple_classes_busy
703 #ifdef CONFIG_BFQ_GROUP_IOSCHED
704 || bfqd->num_groups_with_pending_reqs > 0
705 #endif
710 * If the weight-counter tree passed as input contains no counter for
711 * the weight of the input queue, then add that counter; otherwise just
712 * increment the existing counter.
714 * Note that weight-counter trees contain few nodes in mostly symmetric
715 * scenarios. For example, if all queues have the same weight, then the
716 * weight-counter tree for the queues may contain at most one node.
717 * This holds even if low_latency is on, because weight-raised queues
718 * are not inserted in the tree.
719 * In most scenarios, the rate at which nodes are created/destroyed
720 * should be low too.
722 void bfq_weights_tree_add(struct bfq_data *bfqd, struct bfq_queue *bfqq,
723 struct rb_root_cached *root)
725 struct bfq_entity *entity = &bfqq->entity;
726 struct rb_node **new = &(root->rb_root.rb_node), *parent = NULL;
727 bool leftmost = true;
730 * Do not insert if the queue is already associated with a
731 * counter, which happens if:
732 * 1) a request arrival has caused the queue to become both
733 * non-weight-raised, and hence change its weight, and
734 * backlogged; in this respect, each of the two events
735 * causes an invocation of this function,
736 * 2) this is the invocation of this function caused by the
737 * second event. This second invocation is actually useless,
738 * and we handle this fact by exiting immediately. More
739 * efficient or clearer solutions might possibly be adopted.
741 if (bfqq->weight_counter)
742 return;
744 while (*new) {
745 struct bfq_weight_counter *__counter = container_of(*new,
746 struct bfq_weight_counter,
747 weights_node);
748 parent = *new;
750 if (entity->weight == __counter->weight) {
751 bfqq->weight_counter = __counter;
752 goto inc_counter;
754 if (entity->weight < __counter->weight)
755 new = &((*new)->rb_left);
756 else {
757 new = &((*new)->rb_right);
758 leftmost = false;
762 bfqq->weight_counter = kzalloc(sizeof(struct bfq_weight_counter),
763 GFP_ATOMIC);
766 * In the unlucky event of an allocation failure, we just
767 * exit. This will cause the weight of queue to not be
768 * considered in bfq_asymmetric_scenario, which, in its turn,
769 * causes the scenario to be deemed wrongly symmetric in case
770 * bfqq's weight would have been the only weight making the
771 * scenario asymmetric. On the bright side, no unbalance will
772 * however occur when bfqq becomes inactive again (the
773 * invocation of this function is triggered by an activation
774 * of queue). In fact, bfq_weights_tree_remove does nothing
775 * if !bfqq->weight_counter.
777 if (unlikely(!bfqq->weight_counter))
778 return;
780 bfqq->weight_counter->weight = entity->weight;
781 rb_link_node(&bfqq->weight_counter->weights_node, parent, new);
782 rb_insert_color_cached(&bfqq->weight_counter->weights_node, root,
783 leftmost);
785 inc_counter:
786 bfqq->weight_counter->num_active++;
787 bfqq->ref++;
791 * Decrement the weight counter associated with the queue, and, if the
792 * counter reaches 0, remove the counter from the tree.
793 * See the comments to the function bfq_weights_tree_add() for considerations
794 * about overhead.
796 void __bfq_weights_tree_remove(struct bfq_data *bfqd,
797 struct bfq_queue *bfqq,
798 struct rb_root_cached *root)
800 if (!bfqq->weight_counter)
801 return;
803 bfqq->weight_counter->num_active--;
804 if (bfqq->weight_counter->num_active > 0)
805 goto reset_entity_pointer;
807 rb_erase_cached(&bfqq->weight_counter->weights_node, root);
808 kfree(bfqq->weight_counter);
810 reset_entity_pointer:
811 bfqq->weight_counter = NULL;
812 bfq_put_queue(bfqq);
816 * Invoke __bfq_weights_tree_remove on bfqq and decrement the number
817 * of active groups for each queue's inactive parent entity.
819 void bfq_weights_tree_remove(struct bfq_data *bfqd,
820 struct bfq_queue *bfqq)
822 struct bfq_entity *entity = bfqq->entity.parent;
824 for_each_entity(entity) {
825 struct bfq_sched_data *sd = entity->my_sched_data;
827 if (sd->next_in_service || sd->in_service_entity) {
829 * entity is still active, because either
830 * next_in_service or in_service_entity is not
831 * NULL (see the comments on the definition of
832 * next_in_service for details on why
833 * in_service_entity must be checked too).
835 * As a consequence, its parent entities are
836 * active as well, and thus this loop must
837 * stop here.
839 break;
843 * The decrement of num_groups_with_pending_reqs is
844 * not performed immediately upon the deactivation of
845 * entity, but it is delayed to when it also happens
846 * that the first leaf descendant bfqq of entity gets
847 * all its pending requests completed. The following
848 * instructions perform this delayed decrement, if
849 * needed. See the comments on
850 * num_groups_with_pending_reqs for details.
852 if (entity->in_groups_with_pending_reqs) {
853 entity->in_groups_with_pending_reqs = false;
854 bfqd->num_groups_with_pending_reqs--;
859 * Next function is invoked last, because it causes bfqq to be
860 * freed if the following holds: bfqq is not in service and
861 * has no dispatched request. DO NOT use bfqq after the next
862 * function invocation.
864 __bfq_weights_tree_remove(bfqd, bfqq,
865 &bfqd->queue_weights_tree);
869 * Return expired entry, or NULL to just start from scratch in rbtree.
871 static struct request *bfq_check_fifo(struct bfq_queue *bfqq,
872 struct request *last)
874 struct request *rq;
876 if (bfq_bfqq_fifo_expire(bfqq))
877 return NULL;
879 bfq_mark_bfqq_fifo_expire(bfqq);
881 rq = rq_entry_fifo(bfqq->fifo.next);
883 if (rq == last || ktime_get_ns() < rq->fifo_time)
884 return NULL;
886 bfq_log_bfqq(bfqq->bfqd, bfqq, "check_fifo: returned %p", rq);
887 return rq;
890 static struct request *bfq_find_next_rq(struct bfq_data *bfqd,
891 struct bfq_queue *bfqq,
892 struct request *last)
894 struct rb_node *rbnext = rb_next(&last->rb_node);
895 struct rb_node *rbprev = rb_prev(&last->rb_node);
896 struct request *next, *prev = NULL;
898 /* Follow expired path, else get first next available. */
899 next = bfq_check_fifo(bfqq, last);
900 if (next)
901 return next;
903 if (rbprev)
904 prev = rb_entry_rq(rbprev);
906 if (rbnext)
907 next = rb_entry_rq(rbnext);
908 else {
909 rbnext = rb_first(&bfqq->sort_list);
910 if (rbnext && rbnext != &last->rb_node)
911 next = rb_entry_rq(rbnext);
914 return bfq_choose_req(bfqd, next, prev, blk_rq_pos(last));
917 /* see the definition of bfq_async_charge_factor for details */
918 static unsigned long bfq_serv_to_charge(struct request *rq,
919 struct bfq_queue *bfqq)
921 if (bfq_bfqq_sync(bfqq) || bfqq->wr_coeff > 1 ||
922 bfq_asymmetric_scenario(bfqq->bfqd, bfqq))
923 return blk_rq_sectors(rq);
925 return blk_rq_sectors(rq) * bfq_async_charge_factor;
929 * bfq_updated_next_req - update the queue after a new next_rq selection.
930 * @bfqd: the device data the queue belongs to.
931 * @bfqq: the queue to update.
933 * If the first request of a queue changes we make sure that the queue
934 * has enough budget to serve at least its first request (if the
935 * request has grown). We do this because if the queue has not enough
936 * budget for its first request, it has to go through two dispatch
937 * rounds to actually get it dispatched.
939 static void bfq_updated_next_req(struct bfq_data *bfqd,
940 struct bfq_queue *bfqq)
942 struct bfq_entity *entity = &bfqq->entity;
943 struct request *next_rq = bfqq->next_rq;
944 unsigned long new_budget;
946 if (!next_rq)
947 return;
949 if (bfqq == bfqd->in_service_queue)
951 * In order not to break guarantees, budgets cannot be
952 * changed after an entity has been selected.
954 return;
956 new_budget = max_t(unsigned long,
957 max_t(unsigned long, bfqq->max_budget,
958 bfq_serv_to_charge(next_rq, bfqq)),
959 entity->service);
960 if (entity->budget != new_budget) {
961 entity->budget = new_budget;
962 bfq_log_bfqq(bfqd, bfqq, "updated next rq: new budget %lu",
963 new_budget);
964 bfq_requeue_bfqq(bfqd, bfqq, false);
968 static unsigned int bfq_wr_duration(struct bfq_data *bfqd)
970 u64 dur;
972 if (bfqd->bfq_wr_max_time > 0)
973 return bfqd->bfq_wr_max_time;
975 dur = bfqd->rate_dur_prod;
976 do_div(dur, bfqd->peak_rate);
979 * Limit duration between 3 and 25 seconds. The upper limit
980 * has been conservatively set after the following worst case:
981 * on a QEMU/KVM virtual machine
982 * - running in a slow PC
983 * - with a virtual disk stacked on a slow low-end 5400rpm HDD
984 * - serving a heavy I/O workload, such as the sequential reading
985 * of several files
986 * mplayer took 23 seconds to start, if constantly weight-raised.
988 * As for higher values than that accommodating the above bad
989 * scenario, tests show that higher values would often yield
990 * the opposite of the desired result, i.e., would worsen
991 * responsiveness by allowing non-interactive applications to
992 * preserve weight raising for too long.
994 * On the other end, lower values than 3 seconds make it
995 * difficult for most interactive tasks to complete their jobs
996 * before weight-raising finishes.
998 return clamp_val(dur, msecs_to_jiffies(3000), msecs_to_jiffies(25000));
1001 /* switch back from soft real-time to interactive weight raising */
1002 static void switch_back_to_interactive_wr(struct bfq_queue *bfqq,
1003 struct bfq_data *bfqd)
1005 bfqq->wr_coeff = bfqd->bfq_wr_coeff;
1006 bfqq->wr_cur_max_time = bfq_wr_duration(bfqd);
1007 bfqq->last_wr_start_finish = bfqq->wr_start_at_switch_to_srt;
1010 static void
1011 bfq_bfqq_resume_state(struct bfq_queue *bfqq, struct bfq_data *bfqd,
1012 struct bfq_io_cq *bic, bool bfq_already_existing)
1014 unsigned int old_wr_coeff = bfqq->wr_coeff;
1015 bool busy = bfq_already_existing && bfq_bfqq_busy(bfqq);
1017 if (bic->saved_has_short_ttime)
1018 bfq_mark_bfqq_has_short_ttime(bfqq);
1019 else
1020 bfq_clear_bfqq_has_short_ttime(bfqq);
1022 if (bic->saved_IO_bound)
1023 bfq_mark_bfqq_IO_bound(bfqq);
1024 else
1025 bfq_clear_bfqq_IO_bound(bfqq);
1027 bfqq->entity.new_weight = bic->saved_weight;
1028 bfqq->ttime = bic->saved_ttime;
1029 bfqq->wr_coeff = bic->saved_wr_coeff;
1030 bfqq->wr_start_at_switch_to_srt = bic->saved_wr_start_at_switch_to_srt;
1031 bfqq->last_wr_start_finish = bic->saved_last_wr_start_finish;
1032 bfqq->wr_cur_max_time = bic->saved_wr_cur_max_time;
1034 if (bfqq->wr_coeff > 1 && (bfq_bfqq_in_large_burst(bfqq) ||
1035 time_is_before_jiffies(bfqq->last_wr_start_finish +
1036 bfqq->wr_cur_max_time))) {
1037 if (bfqq->wr_cur_max_time == bfqd->bfq_wr_rt_max_time &&
1038 !bfq_bfqq_in_large_burst(bfqq) &&
1039 time_is_after_eq_jiffies(bfqq->wr_start_at_switch_to_srt +
1040 bfq_wr_duration(bfqd))) {
1041 switch_back_to_interactive_wr(bfqq, bfqd);
1042 } else {
1043 bfqq->wr_coeff = 1;
1044 bfq_log_bfqq(bfqq->bfqd, bfqq,
1045 "resume state: switching off wr");
1049 /* make sure weight will be updated, however we got here */
1050 bfqq->entity.prio_changed = 1;
1052 if (likely(!busy))
1053 return;
1055 if (old_wr_coeff == 1 && bfqq->wr_coeff > 1)
1056 bfqd->wr_busy_queues++;
1057 else if (old_wr_coeff > 1 && bfqq->wr_coeff == 1)
1058 bfqd->wr_busy_queues--;
1061 static int bfqq_process_refs(struct bfq_queue *bfqq)
1063 return bfqq->ref - bfqq->allocated - bfqq->entity.on_st -
1064 (bfqq->weight_counter != NULL);
1067 /* Empty burst list and add just bfqq (see comments on bfq_handle_burst) */
1068 static void bfq_reset_burst_list(struct bfq_data *bfqd, struct bfq_queue *bfqq)
1070 struct bfq_queue *item;
1071 struct hlist_node *n;
1073 hlist_for_each_entry_safe(item, n, &bfqd->burst_list, burst_list_node)
1074 hlist_del_init(&item->burst_list_node);
1077 * Start the creation of a new burst list only if there is no
1078 * active queue. See comments on the conditional invocation of
1079 * bfq_handle_burst().
1081 if (bfq_tot_busy_queues(bfqd) == 0) {
1082 hlist_add_head(&bfqq->burst_list_node, &bfqd->burst_list);
1083 bfqd->burst_size = 1;
1084 } else
1085 bfqd->burst_size = 0;
1087 bfqd->burst_parent_entity = bfqq->entity.parent;
1090 /* Add bfqq to the list of queues in current burst (see bfq_handle_burst) */
1091 static void bfq_add_to_burst(struct bfq_data *bfqd, struct bfq_queue *bfqq)
1093 /* Increment burst size to take into account also bfqq */
1094 bfqd->burst_size++;
1096 if (bfqd->burst_size == bfqd->bfq_large_burst_thresh) {
1097 struct bfq_queue *pos, *bfqq_item;
1098 struct hlist_node *n;
1101 * Enough queues have been activated shortly after each
1102 * other to consider this burst as large.
1104 bfqd->large_burst = true;
1107 * We can now mark all queues in the burst list as
1108 * belonging to a large burst.
1110 hlist_for_each_entry(bfqq_item, &bfqd->burst_list,
1111 burst_list_node)
1112 bfq_mark_bfqq_in_large_burst(bfqq_item);
1113 bfq_mark_bfqq_in_large_burst(bfqq);
1116 * From now on, and until the current burst finishes, any
1117 * new queue being activated shortly after the last queue
1118 * was inserted in the burst can be immediately marked as
1119 * belonging to a large burst. So the burst list is not
1120 * needed any more. Remove it.
1122 hlist_for_each_entry_safe(pos, n, &bfqd->burst_list,
1123 burst_list_node)
1124 hlist_del_init(&pos->burst_list_node);
1125 } else /*
1126 * Burst not yet large: add bfqq to the burst list. Do
1127 * not increment the ref counter for bfqq, because bfqq
1128 * is removed from the burst list before freeing bfqq
1129 * in put_queue.
1131 hlist_add_head(&bfqq->burst_list_node, &bfqd->burst_list);
1135 * If many queues belonging to the same group happen to be created
1136 * shortly after each other, then the processes associated with these
1137 * queues have typically a common goal. In particular, bursts of queue
1138 * creations are usually caused by services or applications that spawn
1139 * many parallel threads/processes. Examples are systemd during boot,
1140 * or git grep. To help these processes get their job done as soon as
1141 * possible, it is usually better to not grant either weight-raising
1142 * or device idling to their queues, unless these queues must be
1143 * protected from the I/O flowing through other active queues.
1145 * In this comment we describe, firstly, the reasons why this fact
1146 * holds, and, secondly, the next function, which implements the main
1147 * steps needed to properly mark these queues so that they can then be
1148 * treated in a different way.
1150 * The above services or applications benefit mostly from a high
1151 * throughput: the quicker the requests of the activated queues are
1152 * cumulatively served, the sooner the target job of these queues gets
1153 * completed. As a consequence, weight-raising any of these queues,
1154 * which also implies idling the device for it, is almost always
1155 * counterproductive, unless there are other active queues to isolate
1156 * these new queues from. If there no other active queues, then
1157 * weight-raising these new queues just lowers throughput in most
1158 * cases.
1160 * On the other hand, a burst of queue creations may be caused also by
1161 * the start of an application that does not consist of a lot of
1162 * parallel I/O-bound threads. In fact, with a complex application,
1163 * several short processes may need to be executed to start-up the
1164 * application. In this respect, to start an application as quickly as
1165 * possible, the best thing to do is in any case to privilege the I/O
1166 * related to the application with respect to all other
1167 * I/O. Therefore, the best strategy to start as quickly as possible
1168 * an application that causes a burst of queue creations is to
1169 * weight-raise all the queues created during the burst. This is the
1170 * exact opposite of the best strategy for the other type of bursts.
1172 * In the end, to take the best action for each of the two cases, the
1173 * two types of bursts need to be distinguished. Fortunately, this
1174 * seems relatively easy, by looking at the sizes of the bursts. In
1175 * particular, we found a threshold such that only bursts with a
1176 * larger size than that threshold are apparently caused by
1177 * services or commands such as systemd or git grep. For brevity,
1178 * hereafter we call just 'large' these bursts. BFQ *does not*
1179 * weight-raise queues whose creation occurs in a large burst. In
1180 * addition, for each of these queues BFQ performs or does not perform
1181 * idling depending on which choice boosts the throughput more. The
1182 * exact choice depends on the device and request pattern at
1183 * hand.
1185 * Unfortunately, false positives may occur while an interactive task
1186 * is starting (e.g., an application is being started). The
1187 * consequence is that the queues associated with the task do not
1188 * enjoy weight raising as expected. Fortunately these false positives
1189 * are very rare. They typically occur if some service happens to
1190 * start doing I/O exactly when the interactive task starts.
1192 * Turning back to the next function, it is invoked only if there are
1193 * no active queues (apart from active queues that would belong to the
1194 * same, possible burst bfqq would belong to), and it implements all
1195 * the steps needed to detect the occurrence of a large burst and to
1196 * properly mark all the queues belonging to it (so that they can then
1197 * be treated in a different way). This goal is achieved by
1198 * maintaining a "burst list" that holds, temporarily, the queues that
1199 * belong to the burst in progress. The list is then used to mark
1200 * these queues as belonging to a large burst if the burst does become
1201 * large. The main steps are the following.
1203 * . when the very first queue is created, the queue is inserted into the
1204 * list (as it could be the first queue in a possible burst)
1206 * . if the current burst has not yet become large, and a queue Q that does
1207 * not yet belong to the burst is activated shortly after the last time
1208 * at which a new queue entered the burst list, then the function appends
1209 * Q to the burst list
1211 * . if, as a consequence of the previous step, the burst size reaches
1212 * the large-burst threshold, then
1214 * . all the queues in the burst list are marked as belonging to a
1215 * large burst
1217 * . the burst list is deleted; in fact, the burst list already served
1218 * its purpose (keeping temporarily track of the queues in a burst,
1219 * so as to be able to mark them as belonging to a large burst in the
1220 * previous sub-step), and now is not needed any more
1222 * . the device enters a large-burst mode
1224 * . if a queue Q that does not belong to the burst is created while
1225 * the device is in large-burst mode and shortly after the last time
1226 * at which a queue either entered the burst list or was marked as
1227 * belonging to the current large burst, then Q is immediately marked
1228 * as belonging to a large burst.
1230 * . if a queue Q that does not belong to the burst is created a while
1231 * later, i.e., not shortly after, than the last time at which a queue
1232 * either entered the burst list or was marked as belonging to the
1233 * current large burst, then the current burst is deemed as finished and:
1235 * . the large-burst mode is reset if set
1237 * . the burst list is emptied
1239 * . Q is inserted in the burst list, as Q may be the first queue
1240 * in a possible new burst (then the burst list contains just Q
1241 * after this step).
1243 static void bfq_handle_burst(struct bfq_data *bfqd, struct bfq_queue *bfqq)
1246 * If bfqq is already in the burst list or is part of a large
1247 * burst, or finally has just been split, then there is
1248 * nothing else to do.
1250 if (!hlist_unhashed(&bfqq->burst_list_node) ||
1251 bfq_bfqq_in_large_burst(bfqq) ||
1252 time_is_after_eq_jiffies(bfqq->split_time +
1253 msecs_to_jiffies(10)))
1254 return;
1257 * If bfqq's creation happens late enough, or bfqq belongs to
1258 * a different group than the burst group, then the current
1259 * burst is finished, and related data structures must be
1260 * reset.
1262 * In this respect, consider the special case where bfqq is
1263 * the very first queue created after BFQ is selected for this
1264 * device. In this case, last_ins_in_burst and
1265 * burst_parent_entity are not yet significant when we get
1266 * here. But it is easy to verify that, whether or not the
1267 * following condition is true, bfqq will end up being
1268 * inserted into the burst list. In particular the list will
1269 * happen to contain only bfqq. And this is exactly what has
1270 * to happen, as bfqq may be the first queue of the first
1271 * burst.
1273 if (time_is_before_jiffies(bfqd->last_ins_in_burst +
1274 bfqd->bfq_burst_interval) ||
1275 bfqq->entity.parent != bfqd->burst_parent_entity) {
1276 bfqd->large_burst = false;
1277 bfq_reset_burst_list(bfqd, bfqq);
1278 goto end;
1282 * If we get here, then bfqq is being activated shortly after the
1283 * last queue. So, if the current burst is also large, we can mark
1284 * bfqq as belonging to this large burst immediately.
1286 if (bfqd->large_burst) {
1287 bfq_mark_bfqq_in_large_burst(bfqq);
1288 goto end;
1292 * If we get here, then a large-burst state has not yet been
1293 * reached, but bfqq is being activated shortly after the last
1294 * queue. Then we add bfqq to the burst.
1296 bfq_add_to_burst(bfqd, bfqq);
1297 end:
1299 * At this point, bfqq either has been added to the current
1300 * burst or has caused the current burst to terminate and a
1301 * possible new burst to start. In particular, in the second
1302 * case, bfqq has become the first queue in the possible new
1303 * burst. In both cases last_ins_in_burst needs to be moved
1304 * forward.
1306 bfqd->last_ins_in_burst = jiffies;
1309 static int bfq_bfqq_budget_left(struct bfq_queue *bfqq)
1311 struct bfq_entity *entity = &bfqq->entity;
1313 return entity->budget - entity->service;
1317 * If enough samples have been computed, return the current max budget
1318 * stored in bfqd, which is dynamically updated according to the
1319 * estimated disk peak rate; otherwise return the default max budget
1321 static int bfq_max_budget(struct bfq_data *bfqd)
1323 if (bfqd->budgets_assigned < bfq_stats_min_budgets)
1324 return bfq_default_max_budget;
1325 else
1326 return bfqd->bfq_max_budget;
1330 * Return min budget, which is a fraction of the current or default
1331 * max budget (trying with 1/32)
1333 static int bfq_min_budget(struct bfq_data *bfqd)
1335 if (bfqd->budgets_assigned < bfq_stats_min_budgets)
1336 return bfq_default_max_budget / 32;
1337 else
1338 return bfqd->bfq_max_budget / 32;
1342 * The next function, invoked after the input queue bfqq switches from
1343 * idle to busy, updates the budget of bfqq. The function also tells
1344 * whether the in-service queue should be expired, by returning
1345 * true. The purpose of expiring the in-service queue is to give bfqq
1346 * the chance to possibly preempt the in-service queue, and the reason
1347 * for preempting the in-service queue is to achieve one of the two
1348 * goals below.
1350 * 1. Guarantee to bfqq its reserved bandwidth even if bfqq has
1351 * expired because it has remained idle. In particular, bfqq may have
1352 * expired for one of the following two reasons:
1354 * - BFQQE_NO_MORE_REQUESTS bfqq did not enjoy any device idling
1355 * and did not make it to issue a new request before its last
1356 * request was served;
1358 * - BFQQE_TOO_IDLE bfqq did enjoy device idling, but did not issue
1359 * a new request before the expiration of the idling-time.
1361 * Even if bfqq has expired for one of the above reasons, the process
1362 * associated with the queue may be however issuing requests greedily,
1363 * and thus be sensitive to the bandwidth it receives (bfqq may have
1364 * remained idle for other reasons: CPU high load, bfqq not enjoying
1365 * idling, I/O throttling somewhere in the path from the process to
1366 * the I/O scheduler, ...). But if, after every expiration for one of
1367 * the above two reasons, bfqq has to wait for the service of at least
1368 * one full budget of another queue before being served again, then
1369 * bfqq is likely to get a much lower bandwidth or resource time than
1370 * its reserved ones. To address this issue, two countermeasures need
1371 * to be taken.
1373 * First, the budget and the timestamps of bfqq need to be updated in
1374 * a special way on bfqq reactivation: they need to be updated as if
1375 * bfqq did not remain idle and did not expire. In fact, if they are
1376 * computed as if bfqq expired and remained idle until reactivation,
1377 * then the process associated with bfqq is treated as if, instead of
1378 * being greedy, it stopped issuing requests when bfqq remained idle,
1379 * and restarts issuing requests only on this reactivation. In other
1380 * words, the scheduler does not help the process recover the "service
1381 * hole" between bfqq expiration and reactivation. As a consequence,
1382 * the process receives a lower bandwidth than its reserved one. In
1383 * contrast, to recover this hole, the budget must be updated as if
1384 * bfqq was not expired at all before this reactivation, i.e., it must
1385 * be set to the value of the remaining budget when bfqq was
1386 * expired. Along the same line, timestamps need to be assigned the
1387 * value they had the last time bfqq was selected for service, i.e.,
1388 * before last expiration. Thus timestamps need to be back-shifted
1389 * with respect to their normal computation (see [1] for more details
1390 * on this tricky aspect).
1392 * Secondly, to allow the process to recover the hole, the in-service
1393 * queue must be expired too, to give bfqq the chance to preempt it
1394 * immediately. In fact, if bfqq has to wait for a full budget of the
1395 * in-service queue to be completed, then it may become impossible to
1396 * let the process recover the hole, even if the back-shifted
1397 * timestamps of bfqq are lower than those of the in-service queue. If
1398 * this happens for most or all of the holes, then the process may not
1399 * receive its reserved bandwidth. In this respect, it is worth noting
1400 * that, being the service of outstanding requests unpreemptible, a
1401 * little fraction of the holes may however be unrecoverable, thereby
1402 * causing a little loss of bandwidth.
1404 * The last important point is detecting whether bfqq does need this
1405 * bandwidth recovery. In this respect, the next function deems the
1406 * process associated with bfqq greedy, and thus allows it to recover
1407 * the hole, if: 1) the process is waiting for the arrival of a new
1408 * request (which implies that bfqq expired for one of the above two
1409 * reasons), and 2) such a request has arrived soon. The first
1410 * condition is controlled through the flag non_blocking_wait_rq,
1411 * while the second through the flag arrived_in_time. If both
1412 * conditions hold, then the function computes the budget in the
1413 * above-described special way, and signals that the in-service queue
1414 * should be expired. Timestamp back-shifting is done later in
1415 * __bfq_activate_entity.
1417 * 2. Reduce latency. Even if timestamps are not backshifted to let
1418 * the process associated with bfqq recover a service hole, bfqq may
1419 * however happen to have, after being (re)activated, a lower finish
1420 * timestamp than the in-service queue. That is, the next budget of
1421 * bfqq may have to be completed before the one of the in-service
1422 * queue. If this is the case, then preempting the in-service queue
1423 * allows this goal to be achieved, apart from the unpreemptible,
1424 * outstanding requests mentioned above.
1426 * Unfortunately, regardless of which of the above two goals one wants
1427 * to achieve, service trees need first to be updated to know whether
1428 * the in-service queue must be preempted. To have service trees
1429 * correctly updated, the in-service queue must be expired and
1430 * rescheduled, and bfqq must be scheduled too. This is one of the
1431 * most costly operations (in future versions, the scheduling
1432 * mechanism may be re-designed in such a way to make it possible to
1433 * know whether preemption is needed without needing to update service
1434 * trees). In addition, queue preemptions almost always cause random
1435 * I/O, which may in turn cause loss of throughput. Finally, there may
1436 * even be no in-service queue when the next function is invoked (so,
1437 * no queue to compare timestamps with). Because of these facts, the
1438 * next function adopts the following simple scheme to avoid costly
1439 * operations, too frequent preemptions and too many dependencies on
1440 * the state of the scheduler: it requests the expiration of the
1441 * in-service queue (unconditionally) only for queues that need to
1442 * recover a hole. Then it delegates to other parts of the code the
1443 * responsibility of handling the above case 2.
1445 static bool bfq_bfqq_update_budg_for_activation(struct bfq_data *bfqd,
1446 struct bfq_queue *bfqq,
1447 bool arrived_in_time)
1449 struct bfq_entity *entity = &bfqq->entity;
1452 * In the next compound condition, we check also whether there
1453 * is some budget left, because otherwise there is no point in
1454 * trying to go on serving bfqq with this same budget: bfqq
1455 * would be expired immediately after being selected for
1456 * service. This would only cause useless overhead.
1458 if (bfq_bfqq_non_blocking_wait_rq(bfqq) && arrived_in_time &&
1459 bfq_bfqq_budget_left(bfqq) > 0) {
1461 * We do not clear the flag non_blocking_wait_rq here, as
1462 * the latter is used in bfq_activate_bfqq to signal
1463 * that timestamps need to be back-shifted (and is
1464 * cleared right after).
1468 * In next assignment we rely on that either
1469 * entity->service or entity->budget are not updated
1470 * on expiration if bfqq is empty (see
1471 * __bfq_bfqq_recalc_budget). Thus both quantities
1472 * remain unchanged after such an expiration, and the
1473 * following statement therefore assigns to
1474 * entity->budget the remaining budget on such an
1475 * expiration.
1477 entity->budget = min_t(unsigned long,
1478 bfq_bfqq_budget_left(bfqq),
1479 bfqq->max_budget);
1482 * At this point, we have used entity->service to get
1483 * the budget left (needed for updating
1484 * entity->budget). Thus we finally can, and have to,
1485 * reset entity->service. The latter must be reset
1486 * because bfqq would otherwise be charged again for
1487 * the service it has received during its previous
1488 * service slot(s).
1490 entity->service = 0;
1492 return true;
1496 * We can finally complete expiration, by setting service to 0.
1498 entity->service = 0;
1499 entity->budget = max_t(unsigned long, bfqq->max_budget,
1500 bfq_serv_to_charge(bfqq->next_rq, bfqq));
1501 bfq_clear_bfqq_non_blocking_wait_rq(bfqq);
1502 return false;
1506 * Return the farthest past time instant according to jiffies
1507 * macros.
1509 static unsigned long bfq_smallest_from_now(void)
1511 return jiffies - MAX_JIFFY_OFFSET;
1514 static void bfq_update_bfqq_wr_on_rq_arrival(struct bfq_data *bfqd,
1515 struct bfq_queue *bfqq,
1516 unsigned int old_wr_coeff,
1517 bool wr_or_deserves_wr,
1518 bool interactive,
1519 bool in_burst,
1520 bool soft_rt)
1522 if (old_wr_coeff == 1 && wr_or_deserves_wr) {
1523 /* start a weight-raising period */
1524 if (interactive) {
1525 bfqq->service_from_wr = 0;
1526 bfqq->wr_coeff = bfqd->bfq_wr_coeff;
1527 bfqq->wr_cur_max_time = bfq_wr_duration(bfqd);
1528 } else {
1530 * No interactive weight raising in progress
1531 * here: assign minus infinity to
1532 * wr_start_at_switch_to_srt, to make sure
1533 * that, at the end of the soft-real-time
1534 * weight raising periods that is starting
1535 * now, no interactive weight-raising period
1536 * may be wrongly considered as still in
1537 * progress (and thus actually started by
1538 * mistake).
1540 bfqq->wr_start_at_switch_to_srt =
1541 bfq_smallest_from_now();
1542 bfqq->wr_coeff = bfqd->bfq_wr_coeff *
1543 BFQ_SOFTRT_WEIGHT_FACTOR;
1544 bfqq->wr_cur_max_time =
1545 bfqd->bfq_wr_rt_max_time;
1549 * If needed, further reduce budget to make sure it is
1550 * close to bfqq's backlog, so as to reduce the
1551 * scheduling-error component due to a too large
1552 * budget. Do not care about throughput consequences,
1553 * but only about latency. Finally, do not assign a
1554 * too small budget either, to avoid increasing
1555 * latency by causing too frequent expirations.
1557 bfqq->entity.budget = min_t(unsigned long,
1558 bfqq->entity.budget,
1559 2 * bfq_min_budget(bfqd));
1560 } else if (old_wr_coeff > 1) {
1561 if (interactive) { /* update wr coeff and duration */
1562 bfqq->wr_coeff = bfqd->bfq_wr_coeff;
1563 bfqq->wr_cur_max_time = bfq_wr_duration(bfqd);
1564 } else if (in_burst)
1565 bfqq->wr_coeff = 1;
1566 else if (soft_rt) {
1568 * The application is now or still meeting the
1569 * requirements for being deemed soft rt. We
1570 * can then correctly and safely (re)charge
1571 * the weight-raising duration for the
1572 * application with the weight-raising
1573 * duration for soft rt applications.
1575 * In particular, doing this recharge now, i.e.,
1576 * before the weight-raising period for the
1577 * application finishes, reduces the probability
1578 * of the following negative scenario:
1579 * 1) the weight of a soft rt application is
1580 * raised at startup (as for any newly
1581 * created application),
1582 * 2) since the application is not interactive,
1583 * at a certain time weight-raising is
1584 * stopped for the application,
1585 * 3) at that time the application happens to
1586 * still have pending requests, and hence
1587 * is destined to not have a chance to be
1588 * deemed soft rt before these requests are
1589 * completed (see the comments to the
1590 * function bfq_bfqq_softrt_next_start()
1591 * for details on soft rt detection),
1592 * 4) these pending requests experience a high
1593 * latency because the application is not
1594 * weight-raised while they are pending.
1596 if (bfqq->wr_cur_max_time !=
1597 bfqd->bfq_wr_rt_max_time) {
1598 bfqq->wr_start_at_switch_to_srt =
1599 bfqq->last_wr_start_finish;
1601 bfqq->wr_cur_max_time =
1602 bfqd->bfq_wr_rt_max_time;
1603 bfqq->wr_coeff = bfqd->bfq_wr_coeff *
1604 BFQ_SOFTRT_WEIGHT_FACTOR;
1606 bfqq->last_wr_start_finish = jiffies;
1611 static bool bfq_bfqq_idle_for_long_time(struct bfq_data *bfqd,
1612 struct bfq_queue *bfqq)
1614 return bfqq->dispatched == 0 &&
1615 time_is_before_jiffies(
1616 bfqq->budget_timeout +
1617 bfqd->bfq_wr_min_idle_time);
1622 * Return true if bfqq is in a higher priority class, or has a higher
1623 * weight than the in-service queue.
1625 static bool bfq_bfqq_higher_class_or_weight(struct bfq_queue *bfqq,
1626 struct bfq_queue *in_serv_bfqq)
1628 int bfqq_weight, in_serv_weight;
1630 if (bfqq->ioprio_class < in_serv_bfqq->ioprio_class)
1631 return true;
1633 if (in_serv_bfqq->entity.parent == bfqq->entity.parent) {
1634 bfqq_weight = bfqq->entity.weight;
1635 in_serv_weight = in_serv_bfqq->entity.weight;
1636 } else {
1637 if (bfqq->entity.parent)
1638 bfqq_weight = bfqq->entity.parent->weight;
1639 else
1640 bfqq_weight = bfqq->entity.weight;
1641 if (in_serv_bfqq->entity.parent)
1642 in_serv_weight = in_serv_bfqq->entity.parent->weight;
1643 else
1644 in_serv_weight = in_serv_bfqq->entity.weight;
1647 return bfqq_weight > in_serv_weight;
1650 static void bfq_bfqq_handle_idle_busy_switch(struct bfq_data *bfqd,
1651 struct bfq_queue *bfqq,
1652 int old_wr_coeff,
1653 struct request *rq,
1654 bool *interactive)
1656 bool soft_rt, in_burst, wr_or_deserves_wr,
1657 bfqq_wants_to_preempt,
1658 idle_for_long_time = bfq_bfqq_idle_for_long_time(bfqd, bfqq),
1660 * See the comments on
1661 * bfq_bfqq_update_budg_for_activation for
1662 * details on the usage of the next variable.
1664 arrived_in_time = ktime_get_ns() <=
1665 bfqq->ttime.last_end_request +
1666 bfqd->bfq_slice_idle * 3;
1670 * bfqq deserves to be weight-raised if:
1671 * - it is sync,
1672 * - it does not belong to a large burst,
1673 * - it has been idle for enough time or is soft real-time,
1674 * - is linked to a bfq_io_cq (it is not shared in any sense).
1676 in_burst = bfq_bfqq_in_large_burst(bfqq);
1677 soft_rt = bfqd->bfq_wr_max_softrt_rate > 0 &&
1678 !BFQQ_TOTALLY_SEEKY(bfqq) &&
1679 !in_burst &&
1680 time_is_before_jiffies(bfqq->soft_rt_next_start) &&
1681 bfqq->dispatched == 0;
1682 *interactive = !in_burst && idle_for_long_time;
1683 wr_or_deserves_wr = bfqd->low_latency &&
1684 (bfqq->wr_coeff > 1 ||
1685 (bfq_bfqq_sync(bfqq) &&
1686 bfqq->bic && (*interactive || soft_rt)));
1689 * Using the last flag, update budget and check whether bfqq
1690 * may want to preempt the in-service queue.
1692 bfqq_wants_to_preempt =
1693 bfq_bfqq_update_budg_for_activation(bfqd, bfqq,
1694 arrived_in_time);
1697 * If bfqq happened to be activated in a burst, but has been
1698 * idle for much more than an interactive queue, then we
1699 * assume that, in the overall I/O initiated in the burst, the
1700 * I/O associated with bfqq is finished. So bfqq does not need
1701 * to be treated as a queue belonging to a burst
1702 * anymore. Accordingly, we reset bfqq's in_large_burst flag
1703 * if set, and remove bfqq from the burst list if it's
1704 * there. We do not decrement burst_size, because the fact
1705 * that bfqq does not need to belong to the burst list any
1706 * more does not invalidate the fact that bfqq was created in
1707 * a burst.
1709 if (likely(!bfq_bfqq_just_created(bfqq)) &&
1710 idle_for_long_time &&
1711 time_is_before_jiffies(
1712 bfqq->budget_timeout +
1713 msecs_to_jiffies(10000))) {
1714 hlist_del_init(&bfqq->burst_list_node);
1715 bfq_clear_bfqq_in_large_burst(bfqq);
1718 bfq_clear_bfqq_just_created(bfqq);
1721 if (!bfq_bfqq_IO_bound(bfqq)) {
1722 if (arrived_in_time) {
1723 bfqq->requests_within_timer++;
1724 if (bfqq->requests_within_timer >=
1725 bfqd->bfq_requests_within_timer)
1726 bfq_mark_bfqq_IO_bound(bfqq);
1727 } else
1728 bfqq->requests_within_timer = 0;
1731 if (bfqd->low_latency) {
1732 if (unlikely(time_is_after_jiffies(bfqq->split_time)))
1733 /* wraparound */
1734 bfqq->split_time =
1735 jiffies - bfqd->bfq_wr_min_idle_time - 1;
1737 if (time_is_before_jiffies(bfqq->split_time +
1738 bfqd->bfq_wr_min_idle_time)) {
1739 bfq_update_bfqq_wr_on_rq_arrival(bfqd, bfqq,
1740 old_wr_coeff,
1741 wr_or_deserves_wr,
1742 *interactive,
1743 in_burst,
1744 soft_rt);
1746 if (old_wr_coeff != bfqq->wr_coeff)
1747 bfqq->entity.prio_changed = 1;
1751 bfqq->last_idle_bklogged = jiffies;
1752 bfqq->service_from_backlogged = 0;
1753 bfq_clear_bfqq_softrt_update(bfqq);
1755 bfq_add_bfqq_busy(bfqd, bfqq);
1758 * Expire in-service queue only if preemption may be needed
1759 * for guarantees. In particular, we care only about two
1760 * cases. The first is that bfqq has to recover a service
1761 * hole, as explained in the comments on
1762 * bfq_bfqq_update_budg_for_activation(), i.e., that
1763 * bfqq_wants_to_preempt is true. However, if bfqq does not
1764 * carry time-critical I/O, then bfqq's bandwidth is less
1765 * important than that of queues that carry time-critical I/O.
1766 * So, as a further constraint, we consider this case only if
1767 * bfqq is at least as weight-raised, i.e., at least as time
1768 * critical, as the in-service queue.
1770 * The second case is that bfqq is in a higher priority class,
1771 * or has a higher weight than the in-service queue. If this
1772 * condition does not hold, we don't care because, even if
1773 * bfqq does not start to be served immediately, the resulting
1774 * delay for bfqq's I/O is however lower or much lower than
1775 * the ideal completion time to be guaranteed to bfqq's I/O.
1777 * In both cases, preemption is needed only if, according to
1778 * the timestamps of both bfqq and of the in-service queue,
1779 * bfqq actually is the next queue to serve. So, to reduce
1780 * useless preemptions, the return value of
1781 * next_queue_may_preempt() is considered in the next compound
1782 * condition too. Yet next_queue_may_preempt() just checks a
1783 * simple, necessary condition for bfqq to be the next queue
1784 * to serve. In fact, to evaluate a sufficient condition, the
1785 * timestamps of the in-service queue would need to be
1786 * updated, and this operation is quite costly (see the
1787 * comments on bfq_bfqq_update_budg_for_activation()).
1789 if (bfqd->in_service_queue &&
1790 ((bfqq_wants_to_preempt &&
1791 bfqq->wr_coeff >= bfqd->in_service_queue->wr_coeff) ||
1792 bfq_bfqq_higher_class_or_weight(bfqq, bfqd->in_service_queue)) &&
1793 next_queue_may_preempt(bfqd))
1794 bfq_bfqq_expire(bfqd, bfqd->in_service_queue,
1795 false, BFQQE_PREEMPTED);
1798 static void bfq_reset_inject_limit(struct bfq_data *bfqd,
1799 struct bfq_queue *bfqq)
1801 /* invalidate baseline total service time */
1802 bfqq->last_serv_time_ns = 0;
1805 * Reset pointer in case we are waiting for
1806 * some request completion.
1808 bfqd->waited_rq = NULL;
1811 * If bfqq has a short think time, then start by setting the
1812 * inject limit to 0 prudentially, because the service time of
1813 * an injected I/O request may be higher than the think time
1814 * of bfqq, and therefore, if one request was injected when
1815 * bfqq remains empty, this injected request might delay the
1816 * service of the next I/O request for bfqq significantly. In
1817 * case bfqq can actually tolerate some injection, then the
1818 * adaptive update will however raise the limit soon. This
1819 * lucky circumstance holds exactly because bfqq has a short
1820 * think time, and thus, after remaining empty, is likely to
1821 * get new I/O enqueued---and then completed---before being
1822 * expired. This is the very pattern that gives the
1823 * limit-update algorithm the chance to measure the effect of
1824 * injection on request service times, and then to update the
1825 * limit accordingly.
1827 * However, in the following special case, the inject limit is
1828 * left to 1 even if the think time is short: bfqq's I/O is
1829 * synchronized with that of some other queue, i.e., bfqq may
1830 * receive new I/O only after the I/O of the other queue is
1831 * completed. Keeping the inject limit to 1 allows the
1832 * blocking I/O to be served while bfqq is in service. And
1833 * this is very convenient both for bfqq and for overall
1834 * throughput, as explained in detail in the comments in
1835 * bfq_update_has_short_ttime().
1837 * On the opposite end, if bfqq has a long think time, then
1838 * start directly by 1, because:
1839 * a) on the bright side, keeping at most one request in
1840 * service in the drive is unlikely to cause any harm to the
1841 * latency of bfqq's requests, as the service time of a single
1842 * request is likely to be lower than the think time of bfqq;
1843 * b) on the downside, after becoming empty, bfqq is likely to
1844 * expire before getting its next request. With this request
1845 * arrival pattern, it is very hard to sample total service
1846 * times and update the inject limit accordingly (see comments
1847 * on bfq_update_inject_limit()). So the limit is likely to be
1848 * never, or at least seldom, updated. As a consequence, by
1849 * setting the limit to 1, we avoid that no injection ever
1850 * occurs with bfqq. On the downside, this proactive step
1851 * further reduces chances to actually compute the baseline
1852 * total service time. Thus it reduces chances to execute the
1853 * limit-update algorithm and possibly raise the limit to more
1854 * than 1.
1856 if (bfq_bfqq_has_short_ttime(bfqq))
1857 bfqq->inject_limit = 0;
1858 else
1859 bfqq->inject_limit = 1;
1861 bfqq->decrease_time_jif = jiffies;
1864 static void bfq_add_request(struct request *rq)
1866 struct bfq_queue *bfqq = RQ_BFQQ(rq);
1867 struct bfq_data *bfqd = bfqq->bfqd;
1868 struct request *next_rq, *prev;
1869 unsigned int old_wr_coeff = bfqq->wr_coeff;
1870 bool interactive = false;
1872 bfq_log_bfqq(bfqd, bfqq, "add_request %d", rq_is_sync(rq));
1873 bfqq->queued[rq_is_sync(rq)]++;
1874 bfqd->queued++;
1876 if (RB_EMPTY_ROOT(&bfqq->sort_list) && bfq_bfqq_sync(bfqq)) {
1878 * Detect whether bfqq's I/O seems synchronized with
1879 * that of some other queue, i.e., whether bfqq, after
1880 * remaining empty, happens to receive new I/O only
1881 * right after some I/O request of the other queue has
1882 * been completed. We call waker queue the other
1883 * queue, and we assume, for simplicity, that bfqq may
1884 * have at most one waker queue.
1886 * A remarkable throughput boost can be reached by
1887 * unconditionally injecting the I/O of the waker
1888 * queue, every time a new bfq_dispatch_request
1889 * happens to be invoked while I/O is being plugged
1890 * for bfqq. In addition to boosting throughput, this
1891 * unblocks bfqq's I/O, thereby improving bandwidth
1892 * and latency for bfqq. Note that these same results
1893 * may be achieved with the general injection
1894 * mechanism, but less effectively. For details on
1895 * this aspect, see the comments on the choice of the
1896 * queue for injection in bfq_select_queue().
1898 * Turning back to the detection of a waker queue, a
1899 * queue Q is deemed as a waker queue for bfqq if, for
1900 * two consecutive times, bfqq happens to become non
1901 * empty right after a request of Q has been
1902 * completed. In particular, on the first time, Q is
1903 * tentatively set as a candidate waker queue, while
1904 * on the second time, the flag
1905 * bfq_bfqq_has_waker(bfqq) is set to confirm that Q
1906 * is a waker queue for bfqq. These detection steps
1907 * are performed only if bfqq has a long think time,
1908 * so as to make it more likely that bfqq's I/O is
1909 * actually being blocked by a synchronization. This
1910 * last filter, plus the above two-times requirement,
1911 * make false positives less likely.
1913 * NOTE
1915 * The sooner a waker queue is detected, the sooner
1916 * throughput can be boosted by injecting I/O from the
1917 * waker queue. Fortunately, detection is likely to be
1918 * actually fast, for the following reasons. While
1919 * blocked by synchronization, bfqq has a long think
1920 * time. This implies that bfqq's inject limit is at
1921 * least equal to 1 (see the comments in
1922 * bfq_update_inject_limit()). So, thanks to
1923 * injection, the waker queue is likely to be served
1924 * during the very first I/O-plugging time interval
1925 * for bfqq. This triggers the first step of the
1926 * detection mechanism. Thanks again to injection, the
1927 * candidate waker queue is then likely to be
1928 * confirmed no later than during the next
1929 * I/O-plugging interval for bfqq.
1931 if (bfqd->last_completed_rq_bfqq &&
1932 !bfq_bfqq_has_short_ttime(bfqq) &&
1933 ktime_get_ns() - bfqd->last_completion <
1934 200 * NSEC_PER_USEC) {
1935 if (bfqd->last_completed_rq_bfqq != bfqq &&
1936 bfqd->last_completed_rq_bfqq !=
1937 bfqq->waker_bfqq) {
1939 * First synchronization detected with
1940 * a candidate waker queue, or with a
1941 * different candidate waker queue
1942 * from the current one.
1944 bfqq->waker_bfqq = bfqd->last_completed_rq_bfqq;
1947 * If the waker queue disappears, then
1948 * bfqq->waker_bfqq must be reset. To
1949 * this goal, we maintain in each
1950 * waker queue a list, woken_list, of
1951 * all the queues that reference the
1952 * waker queue through their
1953 * waker_bfqq pointer. When the waker
1954 * queue exits, the waker_bfqq pointer
1955 * of all the queues in the woken_list
1956 * is reset.
1958 * In addition, if bfqq is already in
1959 * the woken_list of a waker queue,
1960 * then, before being inserted into
1961 * the woken_list of a new waker
1962 * queue, bfqq must be removed from
1963 * the woken_list of the old waker
1964 * queue.
1966 if (!hlist_unhashed(&bfqq->woken_list_node))
1967 hlist_del_init(&bfqq->woken_list_node);
1968 hlist_add_head(&bfqq->woken_list_node,
1969 &bfqd->last_completed_rq_bfqq->woken_list);
1971 bfq_clear_bfqq_has_waker(bfqq);
1972 } else if (bfqd->last_completed_rq_bfqq ==
1973 bfqq->waker_bfqq &&
1974 !bfq_bfqq_has_waker(bfqq)) {
1976 * synchronization with waker_bfqq
1977 * seen for the second time
1979 bfq_mark_bfqq_has_waker(bfqq);
1984 * Periodically reset inject limit, to make sure that
1985 * the latter eventually drops in case workload
1986 * changes, see step (3) in the comments on
1987 * bfq_update_inject_limit().
1989 if (time_is_before_eq_jiffies(bfqq->decrease_time_jif +
1990 msecs_to_jiffies(1000)))
1991 bfq_reset_inject_limit(bfqd, bfqq);
1994 * The following conditions must hold to setup a new
1995 * sampling of total service time, and then a new
1996 * update of the inject limit:
1997 * - bfqq is in service, because the total service
1998 * time is evaluated only for the I/O requests of
1999 * the queues in service;
2000 * - this is the right occasion to compute or to
2001 * lower the baseline total service time, because
2002 * there are actually no requests in the drive,
2003 * or
2004 * the baseline total service time is available, and
2005 * this is the right occasion to compute the other
2006 * quantity needed to update the inject limit, i.e.,
2007 * the total service time caused by the amount of
2008 * injection allowed by the current value of the
2009 * limit. It is the right occasion because injection
2010 * has actually been performed during the service
2011 * hole, and there are still in-flight requests,
2012 * which are very likely to be exactly the injected
2013 * requests, or part of them;
2014 * - the minimum interval for sampling the total
2015 * service time and updating the inject limit has
2016 * elapsed.
2018 if (bfqq == bfqd->in_service_queue &&
2019 (bfqd->rq_in_driver == 0 ||
2020 (bfqq->last_serv_time_ns > 0 &&
2021 bfqd->rqs_injected && bfqd->rq_in_driver > 0)) &&
2022 time_is_before_eq_jiffies(bfqq->decrease_time_jif +
2023 msecs_to_jiffies(10))) {
2024 bfqd->last_empty_occupied_ns = ktime_get_ns();
2026 * Start the state machine for measuring the
2027 * total service time of rq: setting
2028 * wait_dispatch will cause bfqd->waited_rq to
2029 * be set when rq will be dispatched.
2031 bfqd->wait_dispatch = true;
2033 * If there is no I/O in service in the drive,
2034 * then possible injection occurred before the
2035 * arrival of rq will not affect the total
2036 * service time of rq. So the injection limit
2037 * must not be updated as a function of such
2038 * total service time, unless new injection
2039 * occurs before rq is completed. To have the
2040 * injection limit updated only in the latter
2041 * case, reset rqs_injected here (rqs_injected
2042 * will be set in case injection is performed
2043 * on bfqq before rq is completed).
2045 if (bfqd->rq_in_driver == 0)
2046 bfqd->rqs_injected = false;
2050 elv_rb_add(&bfqq->sort_list, rq);
2053 * Check if this request is a better next-serve candidate.
2055 prev = bfqq->next_rq;
2056 next_rq = bfq_choose_req(bfqd, bfqq->next_rq, rq, bfqd->last_position);
2057 bfqq->next_rq = next_rq;
2060 * Adjust priority tree position, if next_rq changes.
2061 * See comments on bfq_pos_tree_add_move() for the unlikely().
2063 if (unlikely(!bfqd->nonrot_with_queueing && prev != bfqq->next_rq))
2064 bfq_pos_tree_add_move(bfqd, bfqq);
2066 if (!bfq_bfqq_busy(bfqq)) /* switching to busy ... */
2067 bfq_bfqq_handle_idle_busy_switch(bfqd, bfqq, old_wr_coeff,
2068 rq, &interactive);
2069 else {
2070 if (bfqd->low_latency && old_wr_coeff == 1 && !rq_is_sync(rq) &&
2071 time_is_before_jiffies(
2072 bfqq->last_wr_start_finish +
2073 bfqd->bfq_wr_min_inter_arr_async)) {
2074 bfqq->wr_coeff = bfqd->bfq_wr_coeff;
2075 bfqq->wr_cur_max_time = bfq_wr_duration(bfqd);
2077 bfqd->wr_busy_queues++;
2078 bfqq->entity.prio_changed = 1;
2080 if (prev != bfqq->next_rq)
2081 bfq_updated_next_req(bfqd, bfqq);
2085 * Assign jiffies to last_wr_start_finish in the following
2086 * cases:
2088 * . if bfqq is not going to be weight-raised, because, for
2089 * non weight-raised queues, last_wr_start_finish stores the
2090 * arrival time of the last request; as of now, this piece
2091 * of information is used only for deciding whether to
2092 * weight-raise async queues
2094 * . if bfqq is not weight-raised, because, if bfqq is now
2095 * switching to weight-raised, then last_wr_start_finish
2096 * stores the time when weight-raising starts
2098 * . if bfqq is interactive, because, regardless of whether
2099 * bfqq is currently weight-raised, the weight-raising
2100 * period must start or restart (this case is considered
2101 * separately because it is not detected by the above
2102 * conditions, if bfqq is already weight-raised)
2104 * last_wr_start_finish has to be updated also if bfqq is soft
2105 * real-time, because the weight-raising period is constantly
2106 * restarted on idle-to-busy transitions for these queues, but
2107 * this is already done in bfq_bfqq_handle_idle_busy_switch if
2108 * needed.
2110 if (bfqd->low_latency &&
2111 (old_wr_coeff == 1 || bfqq->wr_coeff == 1 || interactive))
2112 bfqq->last_wr_start_finish = jiffies;
2115 static struct request *bfq_find_rq_fmerge(struct bfq_data *bfqd,
2116 struct bio *bio,
2117 struct request_queue *q)
2119 struct bfq_queue *bfqq = bfqd->bio_bfqq;
2122 if (bfqq)
2123 return elv_rb_find(&bfqq->sort_list, bio_end_sector(bio));
2125 return NULL;
2128 static sector_t get_sdist(sector_t last_pos, struct request *rq)
2130 if (last_pos)
2131 return abs(blk_rq_pos(rq) - last_pos);
2133 return 0;
2136 #if 0 /* Still not clear if we can do without next two functions */
2137 static void bfq_activate_request(struct request_queue *q, struct request *rq)
2139 struct bfq_data *bfqd = q->elevator->elevator_data;
2141 bfqd->rq_in_driver++;
2144 static void bfq_deactivate_request(struct request_queue *q, struct request *rq)
2146 struct bfq_data *bfqd = q->elevator->elevator_data;
2148 bfqd->rq_in_driver--;
2150 #endif
2152 static void bfq_remove_request(struct request_queue *q,
2153 struct request *rq)
2155 struct bfq_queue *bfqq = RQ_BFQQ(rq);
2156 struct bfq_data *bfqd = bfqq->bfqd;
2157 const int sync = rq_is_sync(rq);
2159 if (bfqq->next_rq == rq) {
2160 bfqq->next_rq = bfq_find_next_rq(bfqd, bfqq, rq);
2161 bfq_updated_next_req(bfqd, bfqq);
2164 if (rq->queuelist.prev != &rq->queuelist)
2165 list_del_init(&rq->queuelist);
2166 bfqq->queued[sync]--;
2167 bfqd->queued--;
2168 elv_rb_del(&bfqq->sort_list, rq);
2170 elv_rqhash_del(q, rq);
2171 if (q->last_merge == rq)
2172 q->last_merge = NULL;
2174 if (RB_EMPTY_ROOT(&bfqq->sort_list)) {
2175 bfqq->next_rq = NULL;
2177 if (bfq_bfqq_busy(bfqq) && bfqq != bfqd->in_service_queue) {
2178 bfq_del_bfqq_busy(bfqd, bfqq, false);
2180 * bfqq emptied. In normal operation, when
2181 * bfqq is empty, bfqq->entity.service and
2182 * bfqq->entity.budget must contain,
2183 * respectively, the service received and the
2184 * budget used last time bfqq emptied. These
2185 * facts do not hold in this case, as at least
2186 * this last removal occurred while bfqq is
2187 * not in service. To avoid inconsistencies,
2188 * reset both bfqq->entity.service and
2189 * bfqq->entity.budget, if bfqq has still a
2190 * process that may issue I/O requests to it.
2192 bfqq->entity.budget = bfqq->entity.service = 0;
2196 * Remove queue from request-position tree as it is empty.
2198 if (bfqq->pos_root) {
2199 rb_erase(&bfqq->pos_node, bfqq->pos_root);
2200 bfqq->pos_root = NULL;
2202 } else {
2203 /* see comments on bfq_pos_tree_add_move() for the unlikely() */
2204 if (unlikely(!bfqd->nonrot_with_queueing))
2205 bfq_pos_tree_add_move(bfqd, bfqq);
2208 if (rq->cmd_flags & REQ_META)
2209 bfqq->meta_pending--;
2213 static bool bfq_bio_merge(struct blk_mq_hw_ctx *hctx, struct bio *bio,
2214 unsigned int nr_segs)
2216 struct request_queue *q = hctx->queue;
2217 struct bfq_data *bfqd = q->elevator->elevator_data;
2218 struct request *free = NULL;
2220 * bfq_bic_lookup grabs the queue_lock: invoke it now and
2221 * store its return value for later use, to avoid nesting
2222 * queue_lock inside the bfqd->lock. We assume that the bic
2223 * returned by bfq_bic_lookup does not go away before
2224 * bfqd->lock is taken.
2226 struct bfq_io_cq *bic = bfq_bic_lookup(bfqd, current->io_context, q);
2227 bool ret;
2229 spin_lock_irq(&bfqd->lock);
2231 if (bic)
2232 bfqd->bio_bfqq = bic_to_bfqq(bic, op_is_sync(bio->bi_opf));
2233 else
2234 bfqd->bio_bfqq = NULL;
2235 bfqd->bio_bic = bic;
2237 ret = blk_mq_sched_try_merge(q, bio, nr_segs, &free);
2239 if (free)
2240 blk_mq_free_request(free);
2241 spin_unlock_irq(&bfqd->lock);
2243 return ret;
2246 static int bfq_request_merge(struct request_queue *q, struct request **req,
2247 struct bio *bio)
2249 struct bfq_data *bfqd = q->elevator->elevator_data;
2250 struct request *__rq;
2252 __rq = bfq_find_rq_fmerge(bfqd, bio, q);
2253 if (__rq && elv_bio_merge_ok(__rq, bio)) {
2254 *req = __rq;
2255 return ELEVATOR_FRONT_MERGE;
2258 return ELEVATOR_NO_MERGE;
2261 static struct bfq_queue *bfq_init_rq(struct request *rq);
2263 static void bfq_request_merged(struct request_queue *q, struct request *req,
2264 enum elv_merge type)
2266 if (type == ELEVATOR_FRONT_MERGE &&
2267 rb_prev(&req->rb_node) &&
2268 blk_rq_pos(req) <
2269 blk_rq_pos(container_of(rb_prev(&req->rb_node),
2270 struct request, rb_node))) {
2271 struct bfq_queue *bfqq = bfq_init_rq(req);
2272 struct bfq_data *bfqd;
2273 struct request *prev, *next_rq;
2275 if (!bfqq)
2276 return;
2278 bfqd = bfqq->bfqd;
2280 /* Reposition request in its sort_list */
2281 elv_rb_del(&bfqq->sort_list, req);
2282 elv_rb_add(&bfqq->sort_list, req);
2284 /* Choose next request to be served for bfqq */
2285 prev = bfqq->next_rq;
2286 next_rq = bfq_choose_req(bfqd, bfqq->next_rq, req,
2287 bfqd->last_position);
2288 bfqq->next_rq = next_rq;
2290 * If next_rq changes, update both the queue's budget to
2291 * fit the new request and the queue's position in its
2292 * rq_pos_tree.
2294 if (prev != bfqq->next_rq) {
2295 bfq_updated_next_req(bfqd, bfqq);
2297 * See comments on bfq_pos_tree_add_move() for
2298 * the unlikely().
2300 if (unlikely(!bfqd->nonrot_with_queueing))
2301 bfq_pos_tree_add_move(bfqd, bfqq);
2307 * This function is called to notify the scheduler that the requests
2308 * rq and 'next' have been merged, with 'next' going away. BFQ
2309 * exploits this hook to address the following issue: if 'next' has a
2310 * fifo_time lower that rq, then the fifo_time of rq must be set to
2311 * the value of 'next', to not forget the greater age of 'next'.
2313 * NOTE: in this function we assume that rq is in a bfq_queue, basing
2314 * on that rq is picked from the hash table q->elevator->hash, which,
2315 * in its turn, is filled only with I/O requests present in
2316 * bfq_queues, while BFQ is in use for the request queue q. In fact,
2317 * the function that fills this hash table (elv_rqhash_add) is called
2318 * only by bfq_insert_request.
2320 static void bfq_requests_merged(struct request_queue *q, struct request *rq,
2321 struct request *next)
2323 struct bfq_queue *bfqq = bfq_init_rq(rq),
2324 *next_bfqq = bfq_init_rq(next);
2326 if (!bfqq)
2327 return;
2330 * If next and rq belong to the same bfq_queue and next is older
2331 * than rq, then reposition rq in the fifo (by substituting next
2332 * with rq). Otherwise, if next and rq belong to different
2333 * bfq_queues, never reposition rq: in fact, we would have to
2334 * reposition it with respect to next's position in its own fifo,
2335 * which would most certainly be too expensive with respect to
2336 * the benefits.
2338 if (bfqq == next_bfqq &&
2339 !list_empty(&rq->queuelist) && !list_empty(&next->queuelist) &&
2340 next->fifo_time < rq->fifo_time) {
2341 list_del_init(&rq->queuelist);
2342 list_replace_init(&next->queuelist, &rq->queuelist);
2343 rq->fifo_time = next->fifo_time;
2346 if (bfqq->next_rq == next)
2347 bfqq->next_rq = rq;
2349 bfqg_stats_update_io_merged(bfqq_group(bfqq), next->cmd_flags);
2352 /* Must be called with bfqq != NULL */
2353 static void bfq_bfqq_end_wr(struct bfq_queue *bfqq)
2355 if (bfq_bfqq_busy(bfqq))
2356 bfqq->bfqd->wr_busy_queues--;
2357 bfqq->wr_coeff = 1;
2358 bfqq->wr_cur_max_time = 0;
2359 bfqq->last_wr_start_finish = jiffies;
2361 * Trigger a weight change on the next invocation of
2362 * __bfq_entity_update_weight_prio.
2364 bfqq->entity.prio_changed = 1;
2367 void bfq_end_wr_async_queues(struct bfq_data *bfqd,
2368 struct bfq_group *bfqg)
2370 int i, j;
2372 for (i = 0; i < 2; i++)
2373 for (j = 0; j < IOPRIO_BE_NR; j++)
2374 if (bfqg->async_bfqq[i][j])
2375 bfq_bfqq_end_wr(bfqg->async_bfqq[i][j]);
2376 if (bfqg->async_idle_bfqq)
2377 bfq_bfqq_end_wr(bfqg->async_idle_bfqq);
2380 static void bfq_end_wr(struct bfq_data *bfqd)
2382 struct bfq_queue *bfqq;
2384 spin_lock_irq(&bfqd->lock);
2386 list_for_each_entry(bfqq, &bfqd->active_list, bfqq_list)
2387 bfq_bfqq_end_wr(bfqq);
2388 list_for_each_entry(bfqq, &bfqd->idle_list, bfqq_list)
2389 bfq_bfqq_end_wr(bfqq);
2390 bfq_end_wr_async(bfqd);
2392 spin_unlock_irq(&bfqd->lock);
2395 static sector_t bfq_io_struct_pos(void *io_struct, bool request)
2397 if (request)
2398 return blk_rq_pos(io_struct);
2399 else
2400 return ((struct bio *)io_struct)->bi_iter.bi_sector;
2403 static int bfq_rq_close_to_sector(void *io_struct, bool request,
2404 sector_t sector)
2406 return abs(bfq_io_struct_pos(io_struct, request) - sector) <=
2407 BFQQ_CLOSE_THR;
2410 static struct bfq_queue *bfqq_find_close(struct bfq_data *bfqd,
2411 struct bfq_queue *bfqq,
2412 sector_t sector)
2414 struct rb_root *root = &bfq_bfqq_to_bfqg(bfqq)->rq_pos_tree;
2415 struct rb_node *parent, *node;
2416 struct bfq_queue *__bfqq;
2418 if (RB_EMPTY_ROOT(root))
2419 return NULL;
2422 * First, if we find a request starting at the end of the last
2423 * request, choose it.
2425 __bfqq = bfq_rq_pos_tree_lookup(bfqd, root, sector, &parent, NULL);
2426 if (__bfqq)
2427 return __bfqq;
2430 * If the exact sector wasn't found, the parent of the NULL leaf
2431 * will contain the closest sector (rq_pos_tree sorted by
2432 * next_request position).
2434 __bfqq = rb_entry(parent, struct bfq_queue, pos_node);
2435 if (bfq_rq_close_to_sector(__bfqq->next_rq, true, sector))
2436 return __bfqq;
2438 if (blk_rq_pos(__bfqq->next_rq) < sector)
2439 node = rb_next(&__bfqq->pos_node);
2440 else
2441 node = rb_prev(&__bfqq->pos_node);
2442 if (!node)
2443 return NULL;
2445 __bfqq = rb_entry(node, struct bfq_queue, pos_node);
2446 if (bfq_rq_close_to_sector(__bfqq->next_rq, true, sector))
2447 return __bfqq;
2449 return NULL;
2452 static struct bfq_queue *bfq_find_close_cooperator(struct bfq_data *bfqd,
2453 struct bfq_queue *cur_bfqq,
2454 sector_t sector)
2456 struct bfq_queue *bfqq;
2459 * We shall notice if some of the queues are cooperating,
2460 * e.g., working closely on the same area of the device. In
2461 * that case, we can group them together and: 1) don't waste
2462 * time idling, and 2) serve the union of their requests in
2463 * the best possible order for throughput.
2465 bfqq = bfqq_find_close(bfqd, cur_bfqq, sector);
2466 if (!bfqq || bfqq == cur_bfqq)
2467 return NULL;
2469 return bfqq;
2472 static struct bfq_queue *
2473 bfq_setup_merge(struct bfq_queue *bfqq, struct bfq_queue *new_bfqq)
2475 int process_refs, new_process_refs;
2476 struct bfq_queue *__bfqq;
2479 * If there are no process references on the new_bfqq, then it is
2480 * unsafe to follow the ->new_bfqq chain as other bfqq's in the chain
2481 * may have dropped their last reference (not just their last process
2482 * reference).
2484 if (!bfqq_process_refs(new_bfqq))
2485 return NULL;
2487 /* Avoid a circular list and skip interim queue merges. */
2488 while ((__bfqq = new_bfqq->new_bfqq)) {
2489 if (__bfqq == bfqq)
2490 return NULL;
2491 new_bfqq = __bfqq;
2494 process_refs = bfqq_process_refs(bfqq);
2495 new_process_refs = bfqq_process_refs(new_bfqq);
2497 * If the process for the bfqq has gone away, there is no
2498 * sense in merging the queues.
2500 if (process_refs == 0 || new_process_refs == 0)
2501 return NULL;
2503 bfq_log_bfqq(bfqq->bfqd, bfqq, "scheduling merge with queue %d",
2504 new_bfqq->pid);
2507 * Merging is just a redirection: the requests of the process
2508 * owning one of the two queues are redirected to the other queue.
2509 * The latter queue, in its turn, is set as shared if this is the
2510 * first time that the requests of some process are redirected to
2511 * it.
2513 * We redirect bfqq to new_bfqq and not the opposite, because
2514 * we are in the context of the process owning bfqq, thus we
2515 * have the io_cq of this process. So we can immediately
2516 * configure this io_cq to redirect the requests of the
2517 * process to new_bfqq. In contrast, the io_cq of new_bfqq is
2518 * not available any more (new_bfqq->bic == NULL).
2520 * Anyway, even in case new_bfqq coincides with the in-service
2521 * queue, redirecting requests the in-service queue is the
2522 * best option, as we feed the in-service queue with new
2523 * requests close to the last request served and, by doing so,
2524 * are likely to increase the throughput.
2526 bfqq->new_bfqq = new_bfqq;
2527 new_bfqq->ref += process_refs;
2528 return new_bfqq;
2531 static bool bfq_may_be_close_cooperator(struct bfq_queue *bfqq,
2532 struct bfq_queue *new_bfqq)
2534 if (bfq_too_late_for_merging(new_bfqq))
2535 return false;
2537 if (bfq_class_idle(bfqq) || bfq_class_idle(new_bfqq) ||
2538 (bfqq->ioprio_class != new_bfqq->ioprio_class))
2539 return false;
2542 * If either of the queues has already been detected as seeky,
2543 * then merging it with the other queue is unlikely to lead to
2544 * sequential I/O.
2546 if (BFQQ_SEEKY(bfqq) || BFQQ_SEEKY(new_bfqq))
2547 return false;
2550 * Interleaved I/O is known to be done by (some) applications
2551 * only for reads, so it does not make sense to merge async
2552 * queues.
2554 if (!bfq_bfqq_sync(bfqq) || !bfq_bfqq_sync(new_bfqq))
2555 return false;
2557 return true;
2561 * Attempt to schedule a merge of bfqq with the currently in-service
2562 * queue or with a close queue among the scheduled queues. Return
2563 * NULL if no merge was scheduled, a pointer to the shared bfq_queue
2564 * structure otherwise.
2566 * The OOM queue is not allowed to participate to cooperation: in fact, since
2567 * the requests temporarily redirected to the OOM queue could be redirected
2568 * again to dedicated queues at any time, the state needed to correctly
2569 * handle merging with the OOM queue would be quite complex and expensive
2570 * to maintain. Besides, in such a critical condition as an out of memory,
2571 * the benefits of queue merging may be little relevant, or even negligible.
2573 * WARNING: queue merging may impair fairness among non-weight raised
2574 * queues, for at least two reasons: 1) the original weight of a
2575 * merged queue may change during the merged state, 2) even being the
2576 * weight the same, a merged queue may be bloated with many more
2577 * requests than the ones produced by its originally-associated
2578 * process.
2580 static struct bfq_queue *
2581 bfq_setup_cooperator(struct bfq_data *bfqd, struct bfq_queue *bfqq,
2582 void *io_struct, bool request)
2584 struct bfq_queue *in_service_bfqq, *new_bfqq;
2587 * Do not perform queue merging if the device is non
2588 * rotational and performs internal queueing. In fact, such a
2589 * device reaches a high speed through internal parallelism
2590 * and pipelining. This means that, to reach a high
2591 * throughput, it must have many requests enqueued at the same
2592 * time. But, in this configuration, the internal scheduling
2593 * algorithm of the device does exactly the job of queue
2594 * merging: it reorders requests so as to obtain as much as
2595 * possible a sequential I/O pattern. As a consequence, with
2596 * the workload generated by processes doing interleaved I/O,
2597 * the throughput reached by the device is likely to be the
2598 * same, with and without queue merging.
2600 * Disabling merging also provides a remarkable benefit in
2601 * terms of throughput. Merging tends to make many workloads
2602 * artificially more uneven, because of shared queues
2603 * remaining non empty for incomparably more time than
2604 * non-merged queues. This may accentuate workload
2605 * asymmetries. For example, if one of the queues in a set of
2606 * merged queues has a higher weight than a normal queue, then
2607 * the shared queue may inherit such a high weight and, by
2608 * staying almost always active, may force BFQ to perform I/O
2609 * plugging most of the time. This evidently makes it harder
2610 * for BFQ to let the device reach a high throughput.
2612 * Finally, the likely() macro below is not used because one
2613 * of the two branches is more likely than the other, but to
2614 * have the code path after the following if() executed as
2615 * fast as possible for the case of a non rotational device
2616 * with queueing. We want it because this is the fastest kind
2617 * of device. On the opposite end, the likely() may lengthen
2618 * the execution time of BFQ for the case of slower devices
2619 * (rotational or at least without queueing). But in this case
2620 * the execution time of BFQ matters very little, if not at
2621 * all.
2623 if (likely(bfqd->nonrot_with_queueing))
2624 return NULL;
2627 * Prevent bfqq from being merged if it has been created too
2628 * long ago. The idea is that true cooperating processes, and
2629 * thus their associated bfq_queues, are supposed to be
2630 * created shortly after each other. This is the case, e.g.,
2631 * for KVM/QEMU and dump I/O threads. Basing on this
2632 * assumption, the following filtering greatly reduces the
2633 * probability that two non-cooperating processes, which just
2634 * happen to do close I/O for some short time interval, have
2635 * their queues merged by mistake.
2637 if (bfq_too_late_for_merging(bfqq))
2638 return NULL;
2640 if (bfqq->new_bfqq)
2641 return bfqq->new_bfqq;
2643 if (!io_struct || unlikely(bfqq == &bfqd->oom_bfqq))
2644 return NULL;
2646 /* If there is only one backlogged queue, don't search. */
2647 if (bfq_tot_busy_queues(bfqd) == 1)
2648 return NULL;
2650 in_service_bfqq = bfqd->in_service_queue;
2652 if (in_service_bfqq && in_service_bfqq != bfqq &&
2653 likely(in_service_bfqq != &bfqd->oom_bfqq) &&
2654 bfq_rq_close_to_sector(io_struct, request,
2655 bfqd->in_serv_last_pos) &&
2656 bfqq->entity.parent == in_service_bfqq->entity.parent &&
2657 bfq_may_be_close_cooperator(bfqq, in_service_bfqq)) {
2658 new_bfqq = bfq_setup_merge(bfqq, in_service_bfqq);
2659 if (new_bfqq)
2660 return new_bfqq;
2663 * Check whether there is a cooperator among currently scheduled
2664 * queues. The only thing we need is that the bio/request is not
2665 * NULL, as we need it to establish whether a cooperator exists.
2667 new_bfqq = bfq_find_close_cooperator(bfqd, bfqq,
2668 bfq_io_struct_pos(io_struct, request));
2670 if (new_bfqq && likely(new_bfqq != &bfqd->oom_bfqq) &&
2671 bfq_may_be_close_cooperator(bfqq, new_bfqq))
2672 return bfq_setup_merge(bfqq, new_bfqq);
2674 return NULL;
2677 static void bfq_bfqq_save_state(struct bfq_queue *bfqq)
2679 struct bfq_io_cq *bic = bfqq->bic;
2682 * If !bfqq->bic, the queue is already shared or its requests
2683 * have already been redirected to a shared queue; both idle window
2684 * and weight raising state have already been saved. Do nothing.
2686 if (!bic)
2687 return;
2689 bic->saved_weight = bfqq->entity.orig_weight;
2690 bic->saved_ttime = bfqq->ttime;
2691 bic->saved_has_short_ttime = bfq_bfqq_has_short_ttime(bfqq);
2692 bic->saved_IO_bound = bfq_bfqq_IO_bound(bfqq);
2693 bic->saved_in_large_burst = bfq_bfqq_in_large_burst(bfqq);
2694 bic->was_in_burst_list = !hlist_unhashed(&bfqq->burst_list_node);
2695 if (unlikely(bfq_bfqq_just_created(bfqq) &&
2696 !bfq_bfqq_in_large_burst(bfqq) &&
2697 bfqq->bfqd->low_latency)) {
2699 * bfqq being merged right after being created: bfqq
2700 * would have deserved interactive weight raising, but
2701 * did not make it to be set in a weight-raised state,
2702 * because of this early merge. Store directly the
2703 * weight-raising state that would have been assigned
2704 * to bfqq, so that to avoid that bfqq unjustly fails
2705 * to enjoy weight raising if split soon.
2707 bic->saved_wr_coeff = bfqq->bfqd->bfq_wr_coeff;
2708 bic->saved_wr_start_at_switch_to_srt = bfq_smallest_from_now();
2709 bic->saved_wr_cur_max_time = bfq_wr_duration(bfqq->bfqd);
2710 bic->saved_last_wr_start_finish = jiffies;
2711 } else {
2712 bic->saved_wr_coeff = bfqq->wr_coeff;
2713 bic->saved_wr_start_at_switch_to_srt =
2714 bfqq->wr_start_at_switch_to_srt;
2715 bic->saved_last_wr_start_finish = bfqq->last_wr_start_finish;
2716 bic->saved_wr_cur_max_time = bfqq->wr_cur_max_time;
2721 static
2722 void bfq_release_process_ref(struct bfq_data *bfqd, struct bfq_queue *bfqq)
2725 * To prevent bfqq's service guarantees from being violated,
2726 * bfqq may be left busy, i.e., queued for service, even if
2727 * empty (see comments in __bfq_bfqq_expire() for
2728 * details). But, if no process will send requests to bfqq any
2729 * longer, then there is no point in keeping bfqq queued for
2730 * service. In addition, keeping bfqq queued for service, but
2731 * with no process ref any longer, may have caused bfqq to be
2732 * freed when dequeued from service. But this is assumed to
2733 * never happen.
2735 if (bfq_bfqq_busy(bfqq) && RB_EMPTY_ROOT(&bfqq->sort_list) &&
2736 bfqq != bfqd->in_service_queue)
2737 bfq_del_bfqq_busy(bfqd, bfqq, false);
2739 bfq_put_queue(bfqq);
2742 static void
2743 bfq_merge_bfqqs(struct bfq_data *bfqd, struct bfq_io_cq *bic,
2744 struct bfq_queue *bfqq, struct bfq_queue *new_bfqq)
2746 bfq_log_bfqq(bfqd, bfqq, "merging with queue %lu",
2747 (unsigned long)new_bfqq->pid);
2748 /* Save weight raising and idle window of the merged queues */
2749 bfq_bfqq_save_state(bfqq);
2750 bfq_bfqq_save_state(new_bfqq);
2751 if (bfq_bfqq_IO_bound(bfqq))
2752 bfq_mark_bfqq_IO_bound(new_bfqq);
2753 bfq_clear_bfqq_IO_bound(bfqq);
2756 * If bfqq is weight-raised, then let new_bfqq inherit
2757 * weight-raising. To reduce false positives, neglect the case
2758 * where bfqq has just been created, but has not yet made it
2759 * to be weight-raised (which may happen because EQM may merge
2760 * bfqq even before bfq_add_request is executed for the first
2761 * time for bfqq). Handling this case would however be very
2762 * easy, thanks to the flag just_created.
2764 if (new_bfqq->wr_coeff == 1 && bfqq->wr_coeff > 1) {
2765 new_bfqq->wr_coeff = bfqq->wr_coeff;
2766 new_bfqq->wr_cur_max_time = bfqq->wr_cur_max_time;
2767 new_bfqq->last_wr_start_finish = bfqq->last_wr_start_finish;
2768 new_bfqq->wr_start_at_switch_to_srt =
2769 bfqq->wr_start_at_switch_to_srt;
2770 if (bfq_bfqq_busy(new_bfqq))
2771 bfqd->wr_busy_queues++;
2772 new_bfqq->entity.prio_changed = 1;
2775 if (bfqq->wr_coeff > 1) { /* bfqq has given its wr to new_bfqq */
2776 bfqq->wr_coeff = 1;
2777 bfqq->entity.prio_changed = 1;
2778 if (bfq_bfqq_busy(bfqq))
2779 bfqd->wr_busy_queues--;
2782 bfq_log_bfqq(bfqd, new_bfqq, "merge_bfqqs: wr_busy %d",
2783 bfqd->wr_busy_queues);
2786 * Merge queues (that is, let bic redirect its requests to new_bfqq)
2788 bic_set_bfqq(bic, new_bfqq, 1);
2789 bfq_mark_bfqq_coop(new_bfqq);
2791 * new_bfqq now belongs to at least two bics (it is a shared queue):
2792 * set new_bfqq->bic to NULL. bfqq either:
2793 * - does not belong to any bic any more, and hence bfqq->bic must
2794 * be set to NULL, or
2795 * - is a queue whose owning bics have already been redirected to a
2796 * different queue, hence the queue is destined to not belong to
2797 * any bic soon and bfqq->bic is already NULL (therefore the next
2798 * assignment causes no harm).
2800 new_bfqq->bic = NULL;
2802 * If the queue is shared, the pid is the pid of one of the associated
2803 * processes. Which pid depends on the exact sequence of merge events
2804 * the queue underwent. So printing such a pid is useless and confusing
2805 * because it reports a random pid between those of the associated
2806 * processes.
2807 * We mark such a queue with a pid -1, and then print SHARED instead of
2808 * a pid in logging messages.
2810 new_bfqq->pid = -1;
2811 bfqq->bic = NULL;
2812 bfq_release_process_ref(bfqd, bfqq);
2815 static bool bfq_allow_bio_merge(struct request_queue *q, struct request *rq,
2816 struct bio *bio)
2818 struct bfq_data *bfqd = q->elevator->elevator_data;
2819 bool is_sync = op_is_sync(bio->bi_opf);
2820 struct bfq_queue *bfqq = bfqd->bio_bfqq, *new_bfqq;
2823 * Disallow merge of a sync bio into an async request.
2825 if (is_sync && !rq_is_sync(rq))
2826 return false;
2829 * Lookup the bfqq that this bio will be queued with. Allow
2830 * merge only if rq is queued there.
2832 if (!bfqq)
2833 return false;
2836 * We take advantage of this function to perform an early merge
2837 * of the queues of possible cooperating processes.
2839 new_bfqq = bfq_setup_cooperator(bfqd, bfqq, bio, false);
2840 if (new_bfqq) {
2842 * bic still points to bfqq, then it has not yet been
2843 * redirected to some other bfq_queue, and a queue
2844 * merge between bfqq and new_bfqq can be safely
2845 * fulfilled, i.e., bic can be redirected to new_bfqq
2846 * and bfqq can be put.
2848 bfq_merge_bfqqs(bfqd, bfqd->bio_bic, bfqq,
2849 new_bfqq);
2851 * If we get here, bio will be queued into new_queue,
2852 * so use new_bfqq to decide whether bio and rq can be
2853 * merged.
2855 bfqq = new_bfqq;
2858 * Change also bqfd->bio_bfqq, as
2859 * bfqd->bio_bic now points to new_bfqq, and
2860 * this function may be invoked again (and then may
2861 * use again bqfd->bio_bfqq).
2863 bfqd->bio_bfqq = bfqq;
2866 return bfqq == RQ_BFQQ(rq);
2870 * Set the maximum time for the in-service queue to consume its
2871 * budget. This prevents seeky processes from lowering the throughput.
2872 * In practice, a time-slice service scheme is used with seeky
2873 * processes.
2875 static void bfq_set_budget_timeout(struct bfq_data *bfqd,
2876 struct bfq_queue *bfqq)
2878 unsigned int timeout_coeff;
2880 if (bfqq->wr_cur_max_time == bfqd->bfq_wr_rt_max_time)
2881 timeout_coeff = 1;
2882 else
2883 timeout_coeff = bfqq->entity.weight / bfqq->entity.orig_weight;
2885 bfqd->last_budget_start = ktime_get();
2887 bfqq->budget_timeout = jiffies +
2888 bfqd->bfq_timeout * timeout_coeff;
2891 static void __bfq_set_in_service_queue(struct bfq_data *bfqd,
2892 struct bfq_queue *bfqq)
2894 if (bfqq) {
2895 bfq_clear_bfqq_fifo_expire(bfqq);
2897 bfqd->budgets_assigned = (bfqd->budgets_assigned * 7 + 256) / 8;
2899 if (time_is_before_jiffies(bfqq->last_wr_start_finish) &&
2900 bfqq->wr_coeff > 1 &&
2901 bfqq->wr_cur_max_time == bfqd->bfq_wr_rt_max_time &&
2902 time_is_before_jiffies(bfqq->budget_timeout)) {
2904 * For soft real-time queues, move the start
2905 * of the weight-raising period forward by the
2906 * time the queue has not received any
2907 * service. Otherwise, a relatively long
2908 * service delay is likely to cause the
2909 * weight-raising period of the queue to end,
2910 * because of the short duration of the
2911 * weight-raising period of a soft real-time
2912 * queue. It is worth noting that this move
2913 * is not so dangerous for the other queues,
2914 * because soft real-time queues are not
2915 * greedy.
2917 * To not add a further variable, we use the
2918 * overloaded field budget_timeout to
2919 * determine for how long the queue has not
2920 * received service, i.e., how much time has
2921 * elapsed since the queue expired. However,
2922 * this is a little imprecise, because
2923 * budget_timeout is set to jiffies if bfqq
2924 * not only expires, but also remains with no
2925 * request.
2927 if (time_after(bfqq->budget_timeout,
2928 bfqq->last_wr_start_finish))
2929 bfqq->last_wr_start_finish +=
2930 jiffies - bfqq->budget_timeout;
2931 else
2932 bfqq->last_wr_start_finish = jiffies;
2935 bfq_set_budget_timeout(bfqd, bfqq);
2936 bfq_log_bfqq(bfqd, bfqq,
2937 "set_in_service_queue, cur-budget = %d",
2938 bfqq->entity.budget);
2941 bfqd->in_service_queue = bfqq;
2945 * Get and set a new queue for service.
2947 static struct bfq_queue *bfq_set_in_service_queue(struct bfq_data *bfqd)
2949 struct bfq_queue *bfqq = bfq_get_next_queue(bfqd);
2951 __bfq_set_in_service_queue(bfqd, bfqq);
2952 return bfqq;
2955 static void bfq_arm_slice_timer(struct bfq_data *bfqd)
2957 struct bfq_queue *bfqq = bfqd->in_service_queue;
2958 u32 sl;
2960 bfq_mark_bfqq_wait_request(bfqq);
2963 * We don't want to idle for seeks, but we do want to allow
2964 * fair distribution of slice time for a process doing back-to-back
2965 * seeks. So allow a little bit of time for him to submit a new rq.
2967 sl = bfqd->bfq_slice_idle;
2969 * Unless the queue is being weight-raised or the scenario is
2970 * asymmetric, grant only minimum idle time if the queue
2971 * is seeky. A long idling is preserved for a weight-raised
2972 * queue, or, more in general, in an asymmetric scenario,
2973 * because a long idling is needed for guaranteeing to a queue
2974 * its reserved share of the throughput (in particular, it is
2975 * needed if the queue has a higher weight than some other
2976 * queue).
2978 if (BFQQ_SEEKY(bfqq) && bfqq->wr_coeff == 1 &&
2979 !bfq_asymmetric_scenario(bfqd, bfqq))
2980 sl = min_t(u64, sl, BFQ_MIN_TT);
2981 else if (bfqq->wr_coeff > 1)
2982 sl = max_t(u32, sl, 20ULL * NSEC_PER_MSEC);
2984 bfqd->last_idling_start = ktime_get();
2985 bfqd->last_idling_start_jiffies = jiffies;
2987 hrtimer_start(&bfqd->idle_slice_timer, ns_to_ktime(sl),
2988 HRTIMER_MODE_REL);
2989 bfqg_stats_set_start_idle_time(bfqq_group(bfqq));
2993 * In autotuning mode, max_budget is dynamically recomputed as the
2994 * amount of sectors transferred in timeout at the estimated peak
2995 * rate. This enables BFQ to utilize a full timeslice with a full
2996 * budget, even if the in-service queue is served at peak rate. And
2997 * this maximises throughput with sequential workloads.
2999 static unsigned long bfq_calc_max_budget(struct bfq_data *bfqd)
3001 return (u64)bfqd->peak_rate * USEC_PER_MSEC *
3002 jiffies_to_msecs(bfqd->bfq_timeout)>>BFQ_RATE_SHIFT;
3006 * Update parameters related to throughput and responsiveness, as a
3007 * function of the estimated peak rate. See comments on
3008 * bfq_calc_max_budget(), and on the ref_wr_duration array.
3010 static void update_thr_responsiveness_params(struct bfq_data *bfqd)
3012 if (bfqd->bfq_user_max_budget == 0) {
3013 bfqd->bfq_max_budget =
3014 bfq_calc_max_budget(bfqd);
3015 bfq_log(bfqd, "new max_budget = %d", bfqd->bfq_max_budget);
3019 static void bfq_reset_rate_computation(struct bfq_data *bfqd,
3020 struct request *rq)
3022 if (rq != NULL) { /* new rq dispatch now, reset accordingly */
3023 bfqd->last_dispatch = bfqd->first_dispatch = ktime_get_ns();
3024 bfqd->peak_rate_samples = 1;
3025 bfqd->sequential_samples = 0;
3026 bfqd->tot_sectors_dispatched = bfqd->last_rq_max_size =
3027 blk_rq_sectors(rq);
3028 } else /* no new rq dispatched, just reset the number of samples */
3029 bfqd->peak_rate_samples = 0; /* full re-init on next disp. */
3031 bfq_log(bfqd,
3032 "reset_rate_computation at end, sample %u/%u tot_sects %llu",
3033 bfqd->peak_rate_samples, bfqd->sequential_samples,
3034 bfqd->tot_sectors_dispatched);
3037 static void bfq_update_rate_reset(struct bfq_data *bfqd, struct request *rq)
3039 u32 rate, weight, divisor;
3042 * For the convergence property to hold (see comments on
3043 * bfq_update_peak_rate()) and for the assessment to be
3044 * reliable, a minimum number of samples must be present, and
3045 * a minimum amount of time must have elapsed. If not so, do
3046 * not compute new rate. Just reset parameters, to get ready
3047 * for a new evaluation attempt.
3049 if (bfqd->peak_rate_samples < BFQ_RATE_MIN_SAMPLES ||
3050 bfqd->delta_from_first < BFQ_RATE_MIN_INTERVAL)
3051 goto reset_computation;
3054 * If a new request completion has occurred after last
3055 * dispatch, then, to approximate the rate at which requests
3056 * have been served by the device, it is more precise to
3057 * extend the observation interval to the last completion.
3059 bfqd->delta_from_first =
3060 max_t(u64, bfqd->delta_from_first,
3061 bfqd->last_completion - bfqd->first_dispatch);
3064 * Rate computed in sects/usec, and not sects/nsec, for
3065 * precision issues.
3067 rate = div64_ul(bfqd->tot_sectors_dispatched<<BFQ_RATE_SHIFT,
3068 div_u64(bfqd->delta_from_first, NSEC_PER_USEC));
3071 * Peak rate not updated if:
3072 * - the percentage of sequential dispatches is below 3/4 of the
3073 * total, and rate is below the current estimated peak rate
3074 * - rate is unreasonably high (> 20M sectors/sec)
3076 if ((bfqd->sequential_samples < (3 * bfqd->peak_rate_samples)>>2 &&
3077 rate <= bfqd->peak_rate) ||
3078 rate > 20<<BFQ_RATE_SHIFT)
3079 goto reset_computation;
3082 * We have to update the peak rate, at last! To this purpose,
3083 * we use a low-pass filter. We compute the smoothing constant
3084 * of the filter as a function of the 'weight' of the new
3085 * measured rate.
3087 * As can be seen in next formulas, we define this weight as a
3088 * quantity proportional to how sequential the workload is,
3089 * and to how long the observation time interval is.
3091 * The weight runs from 0 to 8. The maximum value of the
3092 * weight, 8, yields the minimum value for the smoothing
3093 * constant. At this minimum value for the smoothing constant,
3094 * the measured rate contributes for half of the next value of
3095 * the estimated peak rate.
3097 * So, the first step is to compute the weight as a function
3098 * of how sequential the workload is. Note that the weight
3099 * cannot reach 9, because bfqd->sequential_samples cannot
3100 * become equal to bfqd->peak_rate_samples, which, in its
3101 * turn, holds true because bfqd->sequential_samples is not
3102 * incremented for the first sample.
3104 weight = (9 * bfqd->sequential_samples) / bfqd->peak_rate_samples;
3107 * Second step: further refine the weight as a function of the
3108 * duration of the observation interval.
3110 weight = min_t(u32, 8,
3111 div_u64(weight * bfqd->delta_from_first,
3112 BFQ_RATE_REF_INTERVAL));
3115 * Divisor ranging from 10, for minimum weight, to 2, for
3116 * maximum weight.
3118 divisor = 10 - weight;
3121 * Finally, update peak rate:
3123 * peak_rate = peak_rate * (divisor-1) / divisor + rate / divisor
3125 bfqd->peak_rate *= divisor-1;
3126 bfqd->peak_rate /= divisor;
3127 rate /= divisor; /* smoothing constant alpha = 1/divisor */
3129 bfqd->peak_rate += rate;
3132 * For a very slow device, bfqd->peak_rate can reach 0 (see
3133 * the minimum representable values reported in the comments
3134 * on BFQ_RATE_SHIFT). Push to 1 if this happens, to avoid
3135 * divisions by zero where bfqd->peak_rate is used as a
3136 * divisor.
3138 bfqd->peak_rate = max_t(u32, 1, bfqd->peak_rate);
3140 update_thr_responsiveness_params(bfqd);
3142 reset_computation:
3143 bfq_reset_rate_computation(bfqd, rq);
3147 * Update the read/write peak rate (the main quantity used for
3148 * auto-tuning, see update_thr_responsiveness_params()).
3150 * It is not trivial to estimate the peak rate (correctly): because of
3151 * the presence of sw and hw queues between the scheduler and the
3152 * device components that finally serve I/O requests, it is hard to
3153 * say exactly when a given dispatched request is served inside the
3154 * device, and for how long. As a consequence, it is hard to know
3155 * precisely at what rate a given set of requests is actually served
3156 * by the device.
3158 * On the opposite end, the dispatch time of any request is trivially
3159 * available, and, from this piece of information, the "dispatch rate"
3160 * of requests can be immediately computed. So, the idea in the next
3161 * function is to use what is known, namely request dispatch times
3162 * (plus, when useful, request completion times), to estimate what is
3163 * unknown, namely in-device request service rate.
3165 * The main issue is that, because of the above facts, the rate at
3166 * which a certain set of requests is dispatched over a certain time
3167 * interval can vary greatly with respect to the rate at which the
3168 * same requests are then served. But, since the size of any
3169 * intermediate queue is limited, and the service scheme is lossless
3170 * (no request is silently dropped), the following obvious convergence
3171 * property holds: the number of requests dispatched MUST become
3172 * closer and closer to the number of requests completed as the
3173 * observation interval grows. This is the key property used in
3174 * the next function to estimate the peak service rate as a function
3175 * of the observed dispatch rate. The function assumes to be invoked
3176 * on every request dispatch.
3178 static void bfq_update_peak_rate(struct bfq_data *bfqd, struct request *rq)
3180 u64 now_ns = ktime_get_ns();
3182 if (bfqd->peak_rate_samples == 0) { /* first dispatch */
3183 bfq_log(bfqd, "update_peak_rate: goto reset, samples %d",
3184 bfqd->peak_rate_samples);
3185 bfq_reset_rate_computation(bfqd, rq);
3186 goto update_last_values; /* will add one sample */
3190 * Device idle for very long: the observation interval lasting
3191 * up to this dispatch cannot be a valid observation interval
3192 * for computing a new peak rate (similarly to the late-
3193 * completion event in bfq_completed_request()). Go to
3194 * update_rate_and_reset to have the following three steps
3195 * taken:
3196 * - close the observation interval at the last (previous)
3197 * request dispatch or completion
3198 * - compute rate, if possible, for that observation interval
3199 * - start a new observation interval with this dispatch
3201 if (now_ns - bfqd->last_dispatch > 100*NSEC_PER_MSEC &&
3202 bfqd->rq_in_driver == 0)
3203 goto update_rate_and_reset;
3205 /* Update sampling information */
3206 bfqd->peak_rate_samples++;
3208 if ((bfqd->rq_in_driver > 0 ||
3209 now_ns - bfqd->last_completion < BFQ_MIN_TT)
3210 && !BFQ_RQ_SEEKY(bfqd, bfqd->last_position, rq))
3211 bfqd->sequential_samples++;
3213 bfqd->tot_sectors_dispatched += blk_rq_sectors(rq);
3215 /* Reset max observed rq size every 32 dispatches */
3216 if (likely(bfqd->peak_rate_samples % 32))
3217 bfqd->last_rq_max_size =
3218 max_t(u32, blk_rq_sectors(rq), bfqd->last_rq_max_size);
3219 else
3220 bfqd->last_rq_max_size = blk_rq_sectors(rq);
3222 bfqd->delta_from_first = now_ns - bfqd->first_dispatch;
3224 /* Target observation interval not yet reached, go on sampling */
3225 if (bfqd->delta_from_first < BFQ_RATE_REF_INTERVAL)
3226 goto update_last_values;
3228 update_rate_and_reset:
3229 bfq_update_rate_reset(bfqd, rq);
3230 update_last_values:
3231 bfqd->last_position = blk_rq_pos(rq) + blk_rq_sectors(rq);
3232 if (RQ_BFQQ(rq) == bfqd->in_service_queue)
3233 bfqd->in_serv_last_pos = bfqd->last_position;
3234 bfqd->last_dispatch = now_ns;
3238 * Remove request from internal lists.
3240 static void bfq_dispatch_remove(struct request_queue *q, struct request *rq)
3242 struct bfq_queue *bfqq = RQ_BFQQ(rq);
3245 * For consistency, the next instruction should have been
3246 * executed after removing the request from the queue and
3247 * dispatching it. We execute instead this instruction before
3248 * bfq_remove_request() (and hence introduce a temporary
3249 * inconsistency), for efficiency. In fact, should this
3250 * dispatch occur for a non in-service bfqq, this anticipated
3251 * increment prevents two counters related to bfqq->dispatched
3252 * from risking to be, first, uselessly decremented, and then
3253 * incremented again when the (new) value of bfqq->dispatched
3254 * happens to be taken into account.
3256 bfqq->dispatched++;
3257 bfq_update_peak_rate(q->elevator->elevator_data, rq);
3259 bfq_remove_request(q, rq);
3263 * There is a case where idling does not have to be performed for
3264 * throughput concerns, but to preserve the throughput share of
3265 * the process associated with bfqq.
3267 * To introduce this case, we can note that allowing the drive
3268 * to enqueue more than one request at a time, and hence
3269 * delegating de facto final scheduling decisions to the
3270 * drive's internal scheduler, entails loss of control on the
3271 * actual request service order. In particular, the critical
3272 * situation is when requests from different processes happen
3273 * to be present, at the same time, in the internal queue(s)
3274 * of the drive. In such a situation, the drive, by deciding
3275 * the service order of the internally-queued requests, does
3276 * determine also the actual throughput distribution among
3277 * these processes. But the drive typically has no notion or
3278 * concern about per-process throughput distribution, and
3279 * makes its decisions only on a per-request basis. Therefore,
3280 * the service distribution enforced by the drive's internal
3281 * scheduler is likely to coincide with the desired throughput
3282 * distribution only in a completely symmetric, or favorably
3283 * skewed scenario where:
3284 * (i-a) each of these processes must get the same throughput as
3285 * the others,
3286 * (i-b) in case (i-a) does not hold, it holds that the process
3287 * associated with bfqq must receive a lower or equal
3288 * throughput than any of the other processes;
3289 * (ii) the I/O of each process has the same properties, in
3290 * terms of locality (sequential or random), direction
3291 * (reads or writes), request sizes, greediness
3292 * (from I/O-bound to sporadic), and so on;
3294 * In fact, in such a scenario, the drive tends to treat the requests
3295 * of each process in about the same way as the requests of the
3296 * others, and thus to provide each of these processes with about the
3297 * same throughput. This is exactly the desired throughput
3298 * distribution if (i-a) holds, or, if (i-b) holds instead, this is an
3299 * even more convenient distribution for (the process associated with)
3300 * bfqq.
3302 * In contrast, in any asymmetric or unfavorable scenario, device
3303 * idling (I/O-dispatch plugging) is certainly needed to guarantee
3304 * that bfqq receives its assigned fraction of the device throughput
3305 * (see [1] for details).
3307 * The problem is that idling may significantly reduce throughput with
3308 * certain combinations of types of I/O and devices. An important
3309 * example is sync random I/O on flash storage with command
3310 * queueing. So, unless bfqq falls in cases where idling also boosts
3311 * throughput, it is important to check conditions (i-a), i(-b) and
3312 * (ii) accurately, so as to avoid idling when not strictly needed for
3313 * service guarantees.
3315 * Unfortunately, it is extremely difficult to thoroughly check
3316 * condition (ii). And, in case there are active groups, it becomes
3317 * very difficult to check conditions (i-a) and (i-b) too. In fact,
3318 * if there are active groups, then, for conditions (i-a) or (i-b) to
3319 * become false 'indirectly', it is enough that an active group
3320 * contains more active processes or sub-groups than some other active
3321 * group. More precisely, for conditions (i-a) or (i-b) to become
3322 * false because of such a group, it is not even necessary that the
3323 * group is (still) active: it is sufficient that, even if the group
3324 * has become inactive, some of its descendant processes still have
3325 * some request already dispatched but still waiting for
3326 * completion. In fact, requests have still to be guaranteed their
3327 * share of the throughput even after being dispatched. In this
3328 * respect, it is easy to show that, if a group frequently becomes
3329 * inactive while still having in-flight requests, and if, when this
3330 * happens, the group is not considered in the calculation of whether
3331 * the scenario is asymmetric, then the group may fail to be
3332 * guaranteed its fair share of the throughput (basically because
3333 * idling may not be performed for the descendant processes of the
3334 * group, but it had to be). We address this issue with the following
3335 * bi-modal behavior, implemented in the function
3336 * bfq_asymmetric_scenario().
3338 * If there are groups with requests waiting for completion
3339 * (as commented above, some of these groups may even be
3340 * already inactive), then the scenario is tagged as
3341 * asymmetric, conservatively, without checking any of the
3342 * conditions (i-a), (i-b) or (ii). So the device is idled for bfqq.
3343 * This behavior matches also the fact that groups are created
3344 * exactly if controlling I/O is a primary concern (to
3345 * preserve bandwidth and latency guarantees).
3347 * On the opposite end, if there are no groups with requests waiting
3348 * for completion, then only conditions (i-a) and (i-b) are actually
3349 * controlled, i.e., provided that conditions (i-a) or (i-b) holds,
3350 * idling is not performed, regardless of whether condition (ii)
3351 * holds. In other words, only if conditions (i-a) and (i-b) do not
3352 * hold, then idling is allowed, and the device tends to be prevented
3353 * from queueing many requests, possibly of several processes. Since
3354 * there are no groups with requests waiting for completion, then, to
3355 * control conditions (i-a) and (i-b) it is enough to check just
3356 * whether all the queues with requests waiting for completion also
3357 * have the same weight.
3359 * Not checking condition (ii) evidently exposes bfqq to the
3360 * risk of getting less throughput than its fair share.
3361 * However, for queues with the same weight, a further
3362 * mechanism, preemption, mitigates or even eliminates this
3363 * problem. And it does so without consequences on overall
3364 * throughput. This mechanism and its benefits are explained
3365 * in the next three paragraphs.
3367 * Even if a queue, say Q, is expired when it remains idle, Q
3368 * can still preempt the new in-service queue if the next
3369 * request of Q arrives soon (see the comments on
3370 * bfq_bfqq_update_budg_for_activation). If all queues and
3371 * groups have the same weight, this form of preemption,
3372 * combined with the hole-recovery heuristic described in the
3373 * comments on function bfq_bfqq_update_budg_for_activation,
3374 * are enough to preserve a correct bandwidth distribution in
3375 * the mid term, even without idling. In fact, even if not
3376 * idling allows the internal queues of the device to contain
3377 * many requests, and thus to reorder requests, we can rather
3378 * safely assume that the internal scheduler still preserves a
3379 * minimum of mid-term fairness.
3381 * More precisely, this preemption-based, idleless approach
3382 * provides fairness in terms of IOPS, and not sectors per
3383 * second. This can be seen with a simple example. Suppose
3384 * that there are two queues with the same weight, but that
3385 * the first queue receives requests of 8 sectors, while the
3386 * second queue receives requests of 1024 sectors. In
3387 * addition, suppose that each of the two queues contains at
3388 * most one request at a time, which implies that each queue
3389 * always remains idle after it is served. Finally, after
3390 * remaining idle, each queue receives very quickly a new
3391 * request. It follows that the two queues are served
3392 * alternatively, preempting each other if needed. This
3393 * implies that, although both queues have the same weight,
3394 * the queue with large requests receives a service that is
3395 * 1024/8 times as high as the service received by the other
3396 * queue.
3398 * The motivation for using preemption instead of idling (for
3399 * queues with the same weight) is that, by not idling,
3400 * service guarantees are preserved (completely or at least in
3401 * part) without minimally sacrificing throughput. And, if
3402 * there is no active group, then the primary expectation for
3403 * this device is probably a high throughput.
3405 * We are now left only with explaining the two sub-conditions in the
3406 * additional compound condition that is checked below for deciding
3407 * whether the scenario is asymmetric. To explain the first
3408 * sub-condition, we need to add that the function
3409 * bfq_asymmetric_scenario checks the weights of only
3410 * non-weight-raised queues, for efficiency reasons (see comments on
3411 * bfq_weights_tree_add()). Then the fact that bfqq is weight-raised
3412 * is checked explicitly here. More precisely, the compound condition
3413 * below takes into account also the fact that, even if bfqq is being
3414 * weight-raised, the scenario is still symmetric if all queues with
3415 * requests waiting for completion happen to be
3416 * weight-raised. Actually, we should be even more precise here, and
3417 * differentiate between interactive weight raising and soft real-time
3418 * weight raising.
3420 * The second sub-condition checked in the compound condition is
3421 * whether there is a fair amount of already in-flight I/O not
3422 * belonging to bfqq. If so, I/O dispatching is to be plugged, for the
3423 * following reason. The drive may decide to serve in-flight
3424 * non-bfqq's I/O requests before bfqq's ones, thereby delaying the
3425 * arrival of new I/O requests for bfqq (recall that bfqq is sync). If
3426 * I/O-dispatching is not plugged, then, while bfqq remains empty, a
3427 * basically uncontrolled amount of I/O from other queues may be
3428 * dispatched too, possibly causing the service of bfqq's I/O to be
3429 * delayed even longer in the drive. This problem gets more and more
3430 * serious as the speed and the queue depth of the drive grow,
3431 * because, as these two quantities grow, the probability to find no
3432 * queue busy but many requests in flight grows too. By contrast,
3433 * plugging I/O dispatching minimizes the delay induced by already
3434 * in-flight I/O, and enables bfqq to recover the bandwidth it may
3435 * lose because of this delay.
3437 * As a side note, it is worth considering that the above
3438 * device-idling countermeasures may however fail in the following
3439 * unlucky scenario: if I/O-dispatch plugging is (correctly) disabled
3440 * in a time period during which all symmetry sub-conditions hold, and
3441 * therefore the device is allowed to enqueue many requests, but at
3442 * some later point in time some sub-condition stops to hold, then it
3443 * may become impossible to make requests be served in the desired
3444 * order until all the requests already queued in the device have been
3445 * served. The last sub-condition commented above somewhat mitigates
3446 * this problem for weight-raised queues.
3448 static bool idling_needed_for_service_guarantees(struct bfq_data *bfqd,
3449 struct bfq_queue *bfqq)
3451 /* No point in idling for bfqq if it won't get requests any longer */
3452 if (unlikely(!bfqq_process_refs(bfqq)))
3453 return false;
3455 return (bfqq->wr_coeff > 1 &&
3456 (bfqd->wr_busy_queues <
3457 bfq_tot_busy_queues(bfqd) ||
3458 bfqd->rq_in_driver >=
3459 bfqq->dispatched + 4)) ||
3460 bfq_asymmetric_scenario(bfqd, bfqq);
3463 static bool __bfq_bfqq_expire(struct bfq_data *bfqd, struct bfq_queue *bfqq,
3464 enum bfqq_expiration reason)
3467 * If this bfqq is shared between multiple processes, check
3468 * to make sure that those processes are still issuing I/Os
3469 * within the mean seek distance. If not, it may be time to
3470 * break the queues apart again.
3472 if (bfq_bfqq_coop(bfqq) && BFQQ_SEEKY(bfqq))
3473 bfq_mark_bfqq_split_coop(bfqq);
3476 * Consider queues with a higher finish virtual time than
3477 * bfqq. If idling_needed_for_service_guarantees(bfqq) returns
3478 * true, then bfqq's bandwidth would be violated if an
3479 * uncontrolled amount of I/O from these queues were
3480 * dispatched while bfqq is waiting for its new I/O to
3481 * arrive. This is exactly what may happen if this is a forced
3482 * expiration caused by a preemption attempt, and if bfqq is
3483 * not re-scheduled. To prevent this from happening, re-queue
3484 * bfqq if it needs I/O-dispatch plugging, even if it is
3485 * empty. By doing so, bfqq is granted to be served before the
3486 * above queues (provided that bfqq is of course eligible).
3488 if (RB_EMPTY_ROOT(&bfqq->sort_list) &&
3489 !(reason == BFQQE_PREEMPTED &&
3490 idling_needed_for_service_guarantees(bfqd, bfqq))) {
3491 if (bfqq->dispatched == 0)
3493 * Overloading budget_timeout field to store
3494 * the time at which the queue remains with no
3495 * backlog and no outstanding request; used by
3496 * the weight-raising mechanism.
3498 bfqq->budget_timeout = jiffies;
3500 bfq_del_bfqq_busy(bfqd, bfqq, true);
3501 } else {
3502 bfq_requeue_bfqq(bfqd, bfqq, true);
3504 * Resort priority tree of potential close cooperators.
3505 * See comments on bfq_pos_tree_add_move() for the unlikely().
3507 if (unlikely(!bfqd->nonrot_with_queueing &&
3508 !RB_EMPTY_ROOT(&bfqq->sort_list)))
3509 bfq_pos_tree_add_move(bfqd, bfqq);
3513 * All in-service entities must have been properly deactivated
3514 * or requeued before executing the next function, which
3515 * resets all in-service entities as no more in service. This
3516 * may cause bfqq to be freed. If this happens, the next
3517 * function returns true.
3519 return __bfq_bfqd_reset_in_service(bfqd);
3523 * __bfq_bfqq_recalc_budget - try to adapt the budget to the @bfqq behavior.
3524 * @bfqd: device data.
3525 * @bfqq: queue to update.
3526 * @reason: reason for expiration.
3528 * Handle the feedback on @bfqq budget at queue expiration.
3529 * See the body for detailed comments.
3531 static void __bfq_bfqq_recalc_budget(struct bfq_data *bfqd,
3532 struct bfq_queue *bfqq,
3533 enum bfqq_expiration reason)
3535 struct request *next_rq;
3536 int budget, min_budget;
3538 min_budget = bfq_min_budget(bfqd);
3540 if (bfqq->wr_coeff == 1)
3541 budget = bfqq->max_budget;
3542 else /*
3543 * Use a constant, low budget for weight-raised queues,
3544 * to help achieve a low latency. Keep it slightly higher
3545 * than the minimum possible budget, to cause a little
3546 * bit fewer expirations.
3548 budget = 2 * min_budget;
3550 bfq_log_bfqq(bfqd, bfqq, "recalc_budg: last budg %d, budg left %d",
3551 bfqq->entity.budget, bfq_bfqq_budget_left(bfqq));
3552 bfq_log_bfqq(bfqd, bfqq, "recalc_budg: last max_budg %d, min budg %d",
3553 budget, bfq_min_budget(bfqd));
3554 bfq_log_bfqq(bfqd, bfqq, "recalc_budg: sync %d, seeky %d",
3555 bfq_bfqq_sync(bfqq), BFQQ_SEEKY(bfqd->in_service_queue));
3557 if (bfq_bfqq_sync(bfqq) && bfqq->wr_coeff == 1) {
3558 switch (reason) {
3560 * Caveat: in all the following cases we trade latency
3561 * for throughput.
3563 case BFQQE_TOO_IDLE:
3565 * This is the only case where we may reduce
3566 * the budget: if there is no request of the
3567 * process still waiting for completion, then
3568 * we assume (tentatively) that the timer has
3569 * expired because the batch of requests of
3570 * the process could have been served with a
3571 * smaller budget. Hence, betting that
3572 * process will behave in the same way when it
3573 * becomes backlogged again, we reduce its
3574 * next budget. As long as we guess right,
3575 * this budget cut reduces the latency
3576 * experienced by the process.
3578 * However, if there are still outstanding
3579 * requests, then the process may have not yet
3580 * issued its next request just because it is
3581 * still waiting for the completion of some of
3582 * the still outstanding ones. So in this
3583 * subcase we do not reduce its budget, on the
3584 * contrary we increase it to possibly boost
3585 * the throughput, as discussed in the
3586 * comments to the BUDGET_TIMEOUT case.
3588 if (bfqq->dispatched > 0) /* still outstanding reqs */
3589 budget = min(budget * 2, bfqd->bfq_max_budget);
3590 else {
3591 if (budget > 5 * min_budget)
3592 budget -= 4 * min_budget;
3593 else
3594 budget = min_budget;
3596 break;
3597 case BFQQE_BUDGET_TIMEOUT:
3599 * We double the budget here because it gives
3600 * the chance to boost the throughput if this
3601 * is not a seeky process (and has bumped into
3602 * this timeout because of, e.g., ZBR).
3604 budget = min(budget * 2, bfqd->bfq_max_budget);
3605 break;
3606 case BFQQE_BUDGET_EXHAUSTED:
3608 * The process still has backlog, and did not
3609 * let either the budget timeout or the disk
3610 * idling timeout expire. Hence it is not
3611 * seeky, has a short thinktime and may be
3612 * happy with a higher budget too. So
3613 * definitely increase the budget of this good
3614 * candidate to boost the disk throughput.
3616 budget = min(budget * 4, bfqd->bfq_max_budget);
3617 break;
3618 case BFQQE_NO_MORE_REQUESTS:
3620 * For queues that expire for this reason, it
3621 * is particularly important to keep the
3622 * budget close to the actual service they
3623 * need. Doing so reduces the timestamp
3624 * misalignment problem described in the
3625 * comments in the body of
3626 * __bfq_activate_entity. In fact, suppose
3627 * that a queue systematically expires for
3628 * BFQQE_NO_MORE_REQUESTS and presents a
3629 * new request in time to enjoy timestamp
3630 * back-shifting. The larger the budget of the
3631 * queue is with respect to the service the
3632 * queue actually requests in each service
3633 * slot, the more times the queue can be
3634 * reactivated with the same virtual finish
3635 * time. It follows that, even if this finish
3636 * time is pushed to the system virtual time
3637 * to reduce the consequent timestamp
3638 * misalignment, the queue unjustly enjoys for
3639 * many re-activations a lower finish time
3640 * than all newly activated queues.
3642 * The service needed by bfqq is measured
3643 * quite precisely by bfqq->entity.service.
3644 * Since bfqq does not enjoy device idling,
3645 * bfqq->entity.service is equal to the number
3646 * of sectors that the process associated with
3647 * bfqq requested to read/write before waiting
3648 * for request completions, or blocking for
3649 * other reasons.
3651 budget = max_t(int, bfqq->entity.service, min_budget);
3652 break;
3653 default:
3654 return;
3656 } else if (!bfq_bfqq_sync(bfqq)) {
3658 * Async queues get always the maximum possible
3659 * budget, as for them we do not care about latency
3660 * (in addition, their ability to dispatch is limited
3661 * by the charging factor).
3663 budget = bfqd->bfq_max_budget;
3666 bfqq->max_budget = budget;
3668 if (bfqd->budgets_assigned >= bfq_stats_min_budgets &&
3669 !bfqd->bfq_user_max_budget)
3670 bfqq->max_budget = min(bfqq->max_budget, bfqd->bfq_max_budget);
3673 * If there is still backlog, then assign a new budget, making
3674 * sure that it is large enough for the next request. Since
3675 * the finish time of bfqq must be kept in sync with the
3676 * budget, be sure to call __bfq_bfqq_expire() *after* this
3677 * update.
3679 * If there is no backlog, then no need to update the budget;
3680 * it will be updated on the arrival of a new request.
3682 next_rq = bfqq->next_rq;
3683 if (next_rq)
3684 bfqq->entity.budget = max_t(unsigned long, bfqq->max_budget,
3685 bfq_serv_to_charge(next_rq, bfqq));
3687 bfq_log_bfqq(bfqd, bfqq, "head sect: %u, new budget %d",
3688 next_rq ? blk_rq_sectors(next_rq) : 0,
3689 bfqq->entity.budget);
3693 * Return true if the process associated with bfqq is "slow". The slow
3694 * flag is used, in addition to the budget timeout, to reduce the
3695 * amount of service provided to seeky processes, and thus reduce
3696 * their chances to lower the throughput. More details in the comments
3697 * on the function bfq_bfqq_expire().
3699 * An important observation is in order: as discussed in the comments
3700 * on the function bfq_update_peak_rate(), with devices with internal
3701 * queues, it is hard if ever possible to know when and for how long
3702 * an I/O request is processed by the device (apart from the trivial
3703 * I/O pattern where a new request is dispatched only after the
3704 * previous one has been completed). This makes it hard to evaluate
3705 * the real rate at which the I/O requests of each bfq_queue are
3706 * served. In fact, for an I/O scheduler like BFQ, serving a
3707 * bfq_queue means just dispatching its requests during its service
3708 * slot (i.e., until the budget of the queue is exhausted, or the
3709 * queue remains idle, or, finally, a timeout fires). But, during the
3710 * service slot of a bfq_queue, around 100 ms at most, the device may
3711 * be even still processing requests of bfq_queues served in previous
3712 * service slots. On the opposite end, the requests of the in-service
3713 * bfq_queue may be completed after the service slot of the queue
3714 * finishes.
3716 * Anyway, unless more sophisticated solutions are used
3717 * (where possible), the sum of the sizes of the requests dispatched
3718 * during the service slot of a bfq_queue is probably the only
3719 * approximation available for the service received by the bfq_queue
3720 * during its service slot. And this sum is the quantity used in this
3721 * function to evaluate the I/O speed of a process.
3723 static bool bfq_bfqq_is_slow(struct bfq_data *bfqd, struct bfq_queue *bfqq,
3724 bool compensate, enum bfqq_expiration reason,
3725 unsigned long *delta_ms)
3727 ktime_t delta_ktime;
3728 u32 delta_usecs;
3729 bool slow = BFQQ_SEEKY(bfqq); /* if delta too short, use seekyness */
3731 if (!bfq_bfqq_sync(bfqq))
3732 return false;
3734 if (compensate)
3735 delta_ktime = bfqd->last_idling_start;
3736 else
3737 delta_ktime = ktime_get();
3738 delta_ktime = ktime_sub(delta_ktime, bfqd->last_budget_start);
3739 delta_usecs = ktime_to_us(delta_ktime);
3741 /* don't use too short time intervals */
3742 if (delta_usecs < 1000) {
3743 if (blk_queue_nonrot(bfqd->queue))
3745 * give same worst-case guarantees as idling
3746 * for seeky
3748 *delta_ms = BFQ_MIN_TT / NSEC_PER_MSEC;
3749 else /* charge at least one seek */
3750 *delta_ms = bfq_slice_idle / NSEC_PER_MSEC;
3752 return slow;
3755 *delta_ms = delta_usecs / USEC_PER_MSEC;
3758 * Use only long (> 20ms) intervals to filter out excessive
3759 * spikes in service rate estimation.
3761 if (delta_usecs > 20000) {
3763 * Caveat for rotational devices: processes doing I/O
3764 * in the slower disk zones tend to be slow(er) even
3765 * if not seeky. In this respect, the estimated peak
3766 * rate is likely to be an average over the disk
3767 * surface. Accordingly, to not be too harsh with
3768 * unlucky processes, a process is deemed slow only if
3769 * its rate has been lower than half of the estimated
3770 * peak rate.
3772 slow = bfqq->entity.service < bfqd->bfq_max_budget / 2;
3775 bfq_log_bfqq(bfqd, bfqq, "bfq_bfqq_is_slow: slow %d", slow);
3777 return slow;
3781 * To be deemed as soft real-time, an application must meet two
3782 * requirements. First, the application must not require an average
3783 * bandwidth higher than the approximate bandwidth required to playback or
3784 * record a compressed high-definition video.
3785 * The next function is invoked on the completion of the last request of a
3786 * batch, to compute the next-start time instant, soft_rt_next_start, such
3787 * that, if the next request of the application does not arrive before
3788 * soft_rt_next_start, then the above requirement on the bandwidth is met.
3790 * The second requirement is that the request pattern of the application is
3791 * isochronous, i.e., that, after issuing a request or a batch of requests,
3792 * the application stops issuing new requests until all its pending requests
3793 * have been completed. After that, the application may issue a new batch,
3794 * and so on.
3795 * For this reason the next function is invoked to compute
3796 * soft_rt_next_start only for applications that meet this requirement,
3797 * whereas soft_rt_next_start is set to infinity for applications that do
3798 * not.
3800 * Unfortunately, even a greedy (i.e., I/O-bound) application may
3801 * happen to meet, occasionally or systematically, both the above
3802 * bandwidth and isochrony requirements. This may happen at least in
3803 * the following circumstances. First, if the CPU load is high. The
3804 * application may stop issuing requests while the CPUs are busy
3805 * serving other processes, then restart, then stop again for a while,
3806 * and so on. The other circumstances are related to the storage
3807 * device: the storage device is highly loaded or reaches a low-enough
3808 * throughput with the I/O of the application (e.g., because the I/O
3809 * is random and/or the device is slow). In all these cases, the
3810 * I/O of the application may be simply slowed down enough to meet
3811 * the bandwidth and isochrony requirements. To reduce the probability
3812 * that greedy applications are deemed as soft real-time in these
3813 * corner cases, a further rule is used in the computation of
3814 * soft_rt_next_start: the return value of this function is forced to
3815 * be higher than the maximum between the following two quantities.
3817 * (a) Current time plus: (1) the maximum time for which the arrival
3818 * of a request is waited for when a sync queue becomes idle,
3819 * namely bfqd->bfq_slice_idle, and (2) a few extra jiffies. We
3820 * postpone for a moment the reason for adding a few extra
3821 * jiffies; we get back to it after next item (b). Lower-bounding
3822 * the return value of this function with the current time plus
3823 * bfqd->bfq_slice_idle tends to filter out greedy applications,
3824 * because the latter issue their next request as soon as possible
3825 * after the last one has been completed. In contrast, a soft
3826 * real-time application spends some time processing data, after a
3827 * batch of its requests has been completed.
3829 * (b) Current value of bfqq->soft_rt_next_start. As pointed out
3830 * above, greedy applications may happen to meet both the
3831 * bandwidth and isochrony requirements under heavy CPU or
3832 * storage-device load. In more detail, in these scenarios, these
3833 * applications happen, only for limited time periods, to do I/O
3834 * slowly enough to meet all the requirements described so far,
3835 * including the filtering in above item (a). These slow-speed
3836 * time intervals are usually interspersed between other time
3837 * intervals during which these applications do I/O at a very high
3838 * speed. Fortunately, exactly because of the high speed of the
3839 * I/O in the high-speed intervals, the values returned by this
3840 * function happen to be so high, near the end of any such
3841 * high-speed interval, to be likely to fall *after* the end of
3842 * the low-speed time interval that follows. These high values are
3843 * stored in bfqq->soft_rt_next_start after each invocation of
3844 * this function. As a consequence, if the last value of
3845 * bfqq->soft_rt_next_start is constantly used to lower-bound the
3846 * next value that this function may return, then, from the very
3847 * beginning of a low-speed interval, bfqq->soft_rt_next_start is
3848 * likely to be constantly kept so high that any I/O request
3849 * issued during the low-speed interval is considered as arriving
3850 * to soon for the application to be deemed as soft
3851 * real-time. Then, in the high-speed interval that follows, the
3852 * application will not be deemed as soft real-time, just because
3853 * it will do I/O at a high speed. And so on.
3855 * Getting back to the filtering in item (a), in the following two
3856 * cases this filtering might be easily passed by a greedy
3857 * application, if the reference quantity was just
3858 * bfqd->bfq_slice_idle:
3859 * 1) HZ is so low that the duration of a jiffy is comparable to or
3860 * higher than bfqd->bfq_slice_idle. This happens, e.g., on slow
3861 * devices with HZ=100. The time granularity may be so coarse
3862 * that the approximation, in jiffies, of bfqd->bfq_slice_idle
3863 * is rather lower than the exact value.
3864 * 2) jiffies, instead of increasing at a constant rate, may stop increasing
3865 * for a while, then suddenly 'jump' by several units to recover the lost
3866 * increments. This seems to happen, e.g., inside virtual machines.
3867 * To address this issue, in the filtering in (a) we do not use as a
3868 * reference time interval just bfqd->bfq_slice_idle, but
3869 * bfqd->bfq_slice_idle plus a few jiffies. In particular, we add the
3870 * minimum number of jiffies for which the filter seems to be quite
3871 * precise also in embedded systems and KVM/QEMU virtual machines.
3873 static unsigned long bfq_bfqq_softrt_next_start(struct bfq_data *bfqd,
3874 struct bfq_queue *bfqq)
3876 return max3(bfqq->soft_rt_next_start,
3877 bfqq->last_idle_bklogged +
3878 HZ * bfqq->service_from_backlogged /
3879 bfqd->bfq_wr_max_softrt_rate,
3880 jiffies + nsecs_to_jiffies(bfqq->bfqd->bfq_slice_idle) + 4);
3884 * bfq_bfqq_expire - expire a queue.
3885 * @bfqd: device owning the queue.
3886 * @bfqq: the queue to expire.
3887 * @compensate: if true, compensate for the time spent idling.
3888 * @reason: the reason causing the expiration.
3890 * If the process associated with bfqq does slow I/O (e.g., because it
3891 * issues random requests), we charge bfqq with the time it has been
3892 * in service instead of the service it has received (see
3893 * bfq_bfqq_charge_time for details on how this goal is achieved). As
3894 * a consequence, bfqq will typically get higher timestamps upon
3895 * reactivation, and hence it will be rescheduled as if it had
3896 * received more service than what it has actually received. In the
3897 * end, bfqq receives less service in proportion to how slowly its
3898 * associated process consumes its budgets (and hence how seriously it
3899 * tends to lower the throughput). In addition, this time-charging
3900 * strategy guarantees time fairness among slow processes. In
3901 * contrast, if the process associated with bfqq is not slow, we
3902 * charge bfqq exactly with the service it has received.
3904 * Charging time to the first type of queues and the exact service to
3905 * the other has the effect of using the WF2Q+ policy to schedule the
3906 * former on a timeslice basis, without violating service domain
3907 * guarantees among the latter.
3909 void bfq_bfqq_expire(struct bfq_data *bfqd,
3910 struct bfq_queue *bfqq,
3911 bool compensate,
3912 enum bfqq_expiration reason)
3914 bool slow;
3915 unsigned long delta = 0;
3916 struct bfq_entity *entity = &bfqq->entity;
3919 * Check whether the process is slow (see bfq_bfqq_is_slow).
3921 slow = bfq_bfqq_is_slow(bfqd, bfqq, compensate, reason, &delta);
3924 * As above explained, charge slow (typically seeky) and
3925 * timed-out queues with the time and not the service
3926 * received, to favor sequential workloads.
3928 * Processes doing I/O in the slower disk zones will tend to
3929 * be slow(er) even if not seeky. Therefore, since the
3930 * estimated peak rate is actually an average over the disk
3931 * surface, these processes may timeout just for bad luck. To
3932 * avoid punishing them, do not charge time to processes that
3933 * succeeded in consuming at least 2/3 of their budget. This
3934 * allows BFQ to preserve enough elasticity to still perform
3935 * bandwidth, and not time, distribution with little unlucky
3936 * or quasi-sequential processes.
3938 if (bfqq->wr_coeff == 1 &&
3939 (slow ||
3940 (reason == BFQQE_BUDGET_TIMEOUT &&
3941 bfq_bfqq_budget_left(bfqq) >= entity->budget / 3)))
3942 bfq_bfqq_charge_time(bfqd, bfqq, delta);
3944 if (reason == BFQQE_TOO_IDLE &&
3945 entity->service <= 2 * entity->budget / 10)
3946 bfq_clear_bfqq_IO_bound(bfqq);
3948 if (bfqd->low_latency && bfqq->wr_coeff == 1)
3949 bfqq->last_wr_start_finish = jiffies;
3951 if (bfqd->low_latency && bfqd->bfq_wr_max_softrt_rate > 0 &&
3952 RB_EMPTY_ROOT(&bfqq->sort_list)) {
3954 * If we get here, and there are no outstanding
3955 * requests, then the request pattern is isochronous
3956 * (see the comments on the function
3957 * bfq_bfqq_softrt_next_start()). Thus we can compute
3958 * soft_rt_next_start. And we do it, unless bfqq is in
3959 * interactive weight raising. We do not do it in the
3960 * latter subcase, for the following reason. bfqq may
3961 * be conveying the I/O needed to load a soft
3962 * real-time application. Such an application will
3963 * actually exhibit a soft real-time I/O pattern after
3964 * it finally starts doing its job. But, if
3965 * soft_rt_next_start is computed here for an
3966 * interactive bfqq, and bfqq had received a lot of
3967 * service before remaining with no outstanding
3968 * request (likely to happen on a fast device), then
3969 * soft_rt_next_start would be assigned such a high
3970 * value that, for a very long time, bfqq would be
3971 * prevented from being possibly considered as soft
3972 * real time.
3974 * If, instead, the queue still has outstanding
3975 * requests, then we have to wait for the completion
3976 * of all the outstanding requests to discover whether
3977 * the request pattern is actually isochronous.
3979 if (bfqq->dispatched == 0 &&
3980 bfqq->wr_coeff != bfqd->bfq_wr_coeff)
3981 bfqq->soft_rt_next_start =
3982 bfq_bfqq_softrt_next_start(bfqd, bfqq);
3983 else if (bfqq->dispatched > 0) {
3985 * Schedule an update of soft_rt_next_start to when
3986 * the task may be discovered to be isochronous.
3988 bfq_mark_bfqq_softrt_update(bfqq);
3992 bfq_log_bfqq(bfqd, bfqq,
3993 "expire (%d, slow %d, num_disp %d, short_ttime %d)", reason,
3994 slow, bfqq->dispatched, bfq_bfqq_has_short_ttime(bfqq));
3997 * bfqq expired, so no total service time needs to be computed
3998 * any longer: reset state machine for measuring total service
3999 * times.
4001 bfqd->rqs_injected = bfqd->wait_dispatch = false;
4002 bfqd->waited_rq = NULL;
4005 * Increase, decrease or leave budget unchanged according to
4006 * reason.
4008 __bfq_bfqq_recalc_budget(bfqd, bfqq, reason);
4009 if (__bfq_bfqq_expire(bfqd, bfqq, reason))
4010 /* bfqq is gone, no more actions on it */
4011 return;
4013 /* mark bfqq as waiting a request only if a bic still points to it */
4014 if (!bfq_bfqq_busy(bfqq) &&
4015 reason != BFQQE_BUDGET_TIMEOUT &&
4016 reason != BFQQE_BUDGET_EXHAUSTED) {
4017 bfq_mark_bfqq_non_blocking_wait_rq(bfqq);
4019 * Not setting service to 0, because, if the next rq
4020 * arrives in time, the queue will go on receiving
4021 * service with this same budget (as if it never expired)
4023 } else
4024 entity->service = 0;
4027 * Reset the received-service counter for every parent entity.
4028 * Differently from what happens with bfqq->entity.service,
4029 * the resetting of this counter never needs to be postponed
4030 * for parent entities. In fact, in case bfqq may have a
4031 * chance to go on being served using the last, partially
4032 * consumed budget, bfqq->entity.service needs to be kept,
4033 * because if bfqq then actually goes on being served using
4034 * the same budget, the last value of bfqq->entity.service is
4035 * needed to properly decrement bfqq->entity.budget by the
4036 * portion already consumed. In contrast, it is not necessary
4037 * to keep entity->service for parent entities too, because
4038 * the bubble up of the new value of bfqq->entity.budget will
4039 * make sure that the budgets of parent entities are correct,
4040 * even in case bfqq and thus parent entities go on receiving
4041 * service with the same budget.
4043 entity = entity->parent;
4044 for_each_entity(entity)
4045 entity->service = 0;
4049 * Budget timeout is not implemented through a dedicated timer, but
4050 * just checked on request arrivals and completions, as well as on
4051 * idle timer expirations.
4053 static bool bfq_bfqq_budget_timeout(struct bfq_queue *bfqq)
4055 return time_is_before_eq_jiffies(bfqq->budget_timeout);
4059 * If we expire a queue that is actively waiting (i.e., with the
4060 * device idled) for the arrival of a new request, then we may incur
4061 * the timestamp misalignment problem described in the body of the
4062 * function __bfq_activate_entity. Hence we return true only if this
4063 * condition does not hold, or if the queue is slow enough to deserve
4064 * only to be kicked off for preserving a high throughput.
4066 static bool bfq_may_expire_for_budg_timeout(struct bfq_queue *bfqq)
4068 bfq_log_bfqq(bfqq->bfqd, bfqq,
4069 "may_budget_timeout: wait_request %d left %d timeout %d",
4070 bfq_bfqq_wait_request(bfqq),
4071 bfq_bfqq_budget_left(bfqq) >= bfqq->entity.budget / 3,
4072 bfq_bfqq_budget_timeout(bfqq));
4074 return (!bfq_bfqq_wait_request(bfqq) ||
4075 bfq_bfqq_budget_left(bfqq) >= bfqq->entity.budget / 3)
4077 bfq_bfqq_budget_timeout(bfqq);
4080 static bool idling_boosts_thr_without_issues(struct bfq_data *bfqd,
4081 struct bfq_queue *bfqq)
4083 bool rot_without_queueing =
4084 !blk_queue_nonrot(bfqd->queue) && !bfqd->hw_tag,
4085 bfqq_sequential_and_IO_bound,
4086 idling_boosts_thr;
4088 /* No point in idling for bfqq if it won't get requests any longer */
4089 if (unlikely(!bfqq_process_refs(bfqq)))
4090 return false;
4092 bfqq_sequential_and_IO_bound = !BFQQ_SEEKY(bfqq) &&
4093 bfq_bfqq_IO_bound(bfqq) && bfq_bfqq_has_short_ttime(bfqq);
4096 * The next variable takes into account the cases where idling
4097 * boosts the throughput.
4099 * The value of the variable is computed considering, first, that
4100 * idling is virtually always beneficial for the throughput if:
4101 * (a) the device is not NCQ-capable and rotational, or
4102 * (b) regardless of the presence of NCQ, the device is rotational and
4103 * the request pattern for bfqq is I/O-bound and sequential, or
4104 * (c) regardless of whether it is rotational, the device is
4105 * not NCQ-capable and the request pattern for bfqq is
4106 * I/O-bound and sequential.
4108 * Secondly, and in contrast to the above item (b), idling an
4109 * NCQ-capable flash-based device would not boost the
4110 * throughput even with sequential I/O; rather it would lower
4111 * the throughput in proportion to how fast the device
4112 * is. Accordingly, the next variable is true if any of the
4113 * above conditions (a), (b) or (c) is true, and, in
4114 * particular, happens to be false if bfqd is an NCQ-capable
4115 * flash-based device.
4117 idling_boosts_thr = rot_without_queueing ||
4118 ((!blk_queue_nonrot(bfqd->queue) || !bfqd->hw_tag) &&
4119 bfqq_sequential_and_IO_bound);
4122 * The return value of this function is equal to that of
4123 * idling_boosts_thr, unless a special case holds. In this
4124 * special case, described below, idling may cause problems to
4125 * weight-raised queues.
4127 * When the request pool is saturated (e.g., in the presence
4128 * of write hogs), if the processes associated with
4129 * non-weight-raised queues ask for requests at a lower rate,
4130 * then processes associated with weight-raised queues have a
4131 * higher probability to get a request from the pool
4132 * immediately (or at least soon) when they need one. Thus
4133 * they have a higher probability to actually get a fraction
4134 * of the device throughput proportional to their high
4135 * weight. This is especially true with NCQ-capable drives,
4136 * which enqueue several requests in advance, and further
4137 * reorder internally-queued requests.
4139 * For this reason, we force to false the return value if
4140 * there are weight-raised busy queues. In this case, and if
4141 * bfqq is not weight-raised, this guarantees that the device
4142 * is not idled for bfqq (if, instead, bfqq is weight-raised,
4143 * then idling will be guaranteed by another variable, see
4144 * below). Combined with the timestamping rules of BFQ (see
4145 * [1] for details), this behavior causes bfqq, and hence any
4146 * sync non-weight-raised queue, to get a lower number of
4147 * requests served, and thus to ask for a lower number of
4148 * requests from the request pool, before the busy
4149 * weight-raised queues get served again. This often mitigates
4150 * starvation problems in the presence of heavy write
4151 * workloads and NCQ, thereby guaranteeing a higher
4152 * application and system responsiveness in these hostile
4153 * scenarios.
4155 return idling_boosts_thr &&
4156 bfqd->wr_busy_queues == 0;
4160 * For a queue that becomes empty, device idling is allowed only if
4161 * this function returns true for that queue. As a consequence, since
4162 * device idling plays a critical role for both throughput boosting
4163 * and service guarantees, the return value of this function plays a
4164 * critical role as well.
4166 * In a nutshell, this function returns true only if idling is
4167 * beneficial for throughput or, even if detrimental for throughput,
4168 * idling is however necessary to preserve service guarantees (low
4169 * latency, desired throughput distribution, ...). In particular, on
4170 * NCQ-capable devices, this function tries to return false, so as to
4171 * help keep the drives' internal queues full, whenever this helps the
4172 * device boost the throughput without causing any service-guarantee
4173 * issue.
4175 * Most of the issues taken into account to get the return value of
4176 * this function are not trivial. We discuss these issues in the two
4177 * functions providing the main pieces of information needed by this
4178 * function.
4180 static bool bfq_better_to_idle(struct bfq_queue *bfqq)
4182 struct bfq_data *bfqd = bfqq->bfqd;
4183 bool idling_boosts_thr_with_no_issue, idling_needed_for_service_guar;
4185 /* No point in idling for bfqq if it won't get requests any longer */
4186 if (unlikely(!bfqq_process_refs(bfqq)))
4187 return false;
4189 if (unlikely(bfqd->strict_guarantees))
4190 return true;
4193 * Idling is performed only if slice_idle > 0. In addition, we
4194 * do not idle if
4195 * (a) bfqq is async
4196 * (b) bfqq is in the idle io prio class: in this case we do
4197 * not idle because we want to minimize the bandwidth that
4198 * queues in this class can steal to higher-priority queues
4200 if (bfqd->bfq_slice_idle == 0 || !bfq_bfqq_sync(bfqq) ||
4201 bfq_class_idle(bfqq))
4202 return false;
4204 idling_boosts_thr_with_no_issue =
4205 idling_boosts_thr_without_issues(bfqd, bfqq);
4207 idling_needed_for_service_guar =
4208 idling_needed_for_service_guarantees(bfqd, bfqq);
4211 * We have now the two components we need to compute the
4212 * return value of the function, which is true only if idling
4213 * either boosts the throughput (without issues), or is
4214 * necessary to preserve service guarantees.
4216 return idling_boosts_thr_with_no_issue ||
4217 idling_needed_for_service_guar;
4221 * If the in-service queue is empty but the function bfq_better_to_idle
4222 * returns true, then:
4223 * 1) the queue must remain in service and cannot be expired, and
4224 * 2) the device must be idled to wait for the possible arrival of a new
4225 * request for the queue.
4226 * See the comments on the function bfq_better_to_idle for the reasons
4227 * why performing device idling is the best choice to boost the throughput
4228 * and preserve service guarantees when bfq_better_to_idle itself
4229 * returns true.
4231 static bool bfq_bfqq_must_idle(struct bfq_queue *bfqq)
4233 return RB_EMPTY_ROOT(&bfqq->sort_list) && bfq_better_to_idle(bfqq);
4237 * This function chooses the queue from which to pick the next extra
4238 * I/O request to inject, if it finds a compatible queue. See the
4239 * comments on bfq_update_inject_limit() for details on the injection
4240 * mechanism, and for the definitions of the quantities mentioned
4241 * below.
4243 static struct bfq_queue *
4244 bfq_choose_bfqq_for_injection(struct bfq_data *bfqd)
4246 struct bfq_queue *bfqq, *in_serv_bfqq = bfqd->in_service_queue;
4247 unsigned int limit = in_serv_bfqq->inject_limit;
4249 * If
4250 * - bfqq is not weight-raised and therefore does not carry
4251 * time-critical I/O,
4252 * or
4253 * - regardless of whether bfqq is weight-raised, bfqq has
4254 * however a long think time, during which it can absorb the
4255 * effect of an appropriate number of extra I/O requests
4256 * from other queues (see bfq_update_inject_limit for
4257 * details on the computation of this number);
4258 * then injection can be performed without restrictions.
4260 bool in_serv_always_inject = in_serv_bfqq->wr_coeff == 1 ||
4261 !bfq_bfqq_has_short_ttime(in_serv_bfqq);
4264 * If
4265 * - the baseline total service time could not be sampled yet,
4266 * so the inject limit happens to be still 0, and
4267 * - a lot of time has elapsed since the plugging of I/O
4268 * dispatching started, so drive speed is being wasted
4269 * significantly;
4270 * then temporarily raise inject limit to one request.
4272 if (limit == 0 && in_serv_bfqq->last_serv_time_ns == 0 &&
4273 bfq_bfqq_wait_request(in_serv_bfqq) &&
4274 time_is_before_eq_jiffies(bfqd->last_idling_start_jiffies +
4275 bfqd->bfq_slice_idle)
4277 limit = 1;
4279 if (bfqd->rq_in_driver >= limit)
4280 return NULL;
4283 * Linear search of the source queue for injection; but, with
4284 * a high probability, very few steps are needed to find a
4285 * candidate queue, i.e., a queue with enough budget left for
4286 * its next request. In fact:
4287 * - BFQ dynamically updates the budget of every queue so as
4288 * to accommodate the expected backlog of the queue;
4289 * - if a queue gets all its requests dispatched as injected
4290 * service, then the queue is removed from the active list
4291 * (and re-added only if it gets new requests, but then it
4292 * is assigned again enough budget for its new backlog).
4294 list_for_each_entry(bfqq, &bfqd->active_list, bfqq_list)
4295 if (!RB_EMPTY_ROOT(&bfqq->sort_list) &&
4296 (in_serv_always_inject || bfqq->wr_coeff > 1) &&
4297 bfq_serv_to_charge(bfqq->next_rq, bfqq) <=
4298 bfq_bfqq_budget_left(bfqq)) {
4300 * Allow for only one large in-flight request
4301 * on non-rotational devices, for the
4302 * following reason. On non-rotationl drives,
4303 * large requests take much longer than
4304 * smaller requests to be served. In addition,
4305 * the drive prefers to serve large requests
4306 * w.r.t. to small ones, if it can choose. So,
4307 * having more than one large requests queued
4308 * in the drive may easily make the next first
4309 * request of the in-service queue wait for so
4310 * long to break bfqq's service guarantees. On
4311 * the bright side, large requests let the
4312 * drive reach a very high throughput, even if
4313 * there is only one in-flight large request
4314 * at a time.
4316 if (blk_queue_nonrot(bfqd->queue) &&
4317 blk_rq_sectors(bfqq->next_rq) >=
4318 BFQQ_SECT_THR_NONROT)
4319 limit = min_t(unsigned int, 1, limit);
4320 else
4321 limit = in_serv_bfqq->inject_limit;
4323 if (bfqd->rq_in_driver < limit) {
4324 bfqd->rqs_injected = true;
4325 return bfqq;
4329 return NULL;
4333 * Select a queue for service. If we have a current queue in service,
4334 * check whether to continue servicing it, or retrieve and set a new one.
4336 static struct bfq_queue *bfq_select_queue(struct bfq_data *bfqd)
4338 struct bfq_queue *bfqq;
4339 struct request *next_rq;
4340 enum bfqq_expiration reason = BFQQE_BUDGET_TIMEOUT;
4342 bfqq = bfqd->in_service_queue;
4343 if (!bfqq)
4344 goto new_queue;
4346 bfq_log_bfqq(bfqd, bfqq, "select_queue: already in-service queue");
4349 * Do not expire bfqq for budget timeout if bfqq may be about
4350 * to enjoy device idling. The reason why, in this case, we
4351 * prevent bfqq from expiring is the same as in the comments
4352 * on the case where bfq_bfqq_must_idle() returns true, in
4353 * bfq_completed_request().
4355 if (bfq_may_expire_for_budg_timeout(bfqq) &&
4356 !bfq_bfqq_must_idle(bfqq))
4357 goto expire;
4359 check_queue:
4361 * This loop is rarely executed more than once. Even when it
4362 * happens, it is much more convenient to re-execute this loop
4363 * than to return NULL and trigger a new dispatch to get a
4364 * request served.
4366 next_rq = bfqq->next_rq;
4368 * If bfqq has requests queued and it has enough budget left to
4369 * serve them, keep the queue, otherwise expire it.
4371 if (next_rq) {
4372 if (bfq_serv_to_charge(next_rq, bfqq) >
4373 bfq_bfqq_budget_left(bfqq)) {
4375 * Expire the queue for budget exhaustion,
4376 * which makes sure that the next budget is
4377 * enough to serve the next request, even if
4378 * it comes from the fifo expired path.
4380 reason = BFQQE_BUDGET_EXHAUSTED;
4381 goto expire;
4382 } else {
4384 * The idle timer may be pending because we may
4385 * not disable disk idling even when a new request
4386 * arrives.
4388 if (bfq_bfqq_wait_request(bfqq)) {
4390 * If we get here: 1) at least a new request
4391 * has arrived but we have not disabled the
4392 * timer because the request was too small,
4393 * 2) then the block layer has unplugged
4394 * the device, causing the dispatch to be
4395 * invoked.
4397 * Since the device is unplugged, now the
4398 * requests are probably large enough to
4399 * provide a reasonable throughput.
4400 * So we disable idling.
4402 bfq_clear_bfqq_wait_request(bfqq);
4403 hrtimer_try_to_cancel(&bfqd->idle_slice_timer);
4405 goto keep_queue;
4410 * No requests pending. However, if the in-service queue is idling
4411 * for a new request, or has requests waiting for a completion and
4412 * may idle after their completion, then keep it anyway.
4414 * Yet, inject service from other queues if it boosts
4415 * throughput and is possible.
4417 if (bfq_bfqq_wait_request(bfqq) ||
4418 (bfqq->dispatched != 0 && bfq_better_to_idle(bfqq))) {
4419 struct bfq_queue *async_bfqq =
4420 bfqq->bic && bfqq->bic->bfqq[0] &&
4421 bfq_bfqq_busy(bfqq->bic->bfqq[0]) &&
4422 bfqq->bic->bfqq[0]->next_rq ?
4423 bfqq->bic->bfqq[0] : NULL;
4426 * The next three mutually-exclusive ifs decide
4427 * whether to try injection, and choose the queue to
4428 * pick an I/O request from.
4430 * The first if checks whether the process associated
4431 * with bfqq has also async I/O pending. If so, it
4432 * injects such I/O unconditionally. Injecting async
4433 * I/O from the same process can cause no harm to the
4434 * process. On the contrary, it can only increase
4435 * bandwidth and reduce latency for the process.
4437 * The second if checks whether there happens to be a
4438 * non-empty waker queue for bfqq, i.e., a queue whose
4439 * I/O needs to be completed for bfqq to receive new
4440 * I/O. This happens, e.g., if bfqq is associated with
4441 * a process that does some sync. A sync generates
4442 * extra blocking I/O, which must be completed before
4443 * the process associated with bfqq can go on with its
4444 * I/O. If the I/O of the waker queue is not served,
4445 * then bfqq remains empty, and no I/O is dispatched,
4446 * until the idle timeout fires for bfqq. This is
4447 * likely to result in lower bandwidth and higher
4448 * latencies for bfqq, and in a severe loss of total
4449 * throughput. The best action to take is therefore to
4450 * serve the waker queue as soon as possible. So do it
4451 * (without relying on the third alternative below for
4452 * eventually serving waker_bfqq's I/O; see the last
4453 * paragraph for further details). This systematic
4454 * injection of I/O from the waker queue does not
4455 * cause any delay to bfqq's I/O. On the contrary,
4456 * next bfqq's I/O is brought forward dramatically,
4457 * for it is not blocked for milliseconds.
4459 * The third if checks whether bfqq is a queue for
4460 * which it is better to avoid injection. It is so if
4461 * bfqq delivers more throughput when served without
4462 * any further I/O from other queues in the middle, or
4463 * if the service times of bfqq's I/O requests both
4464 * count more than overall throughput, and may be
4465 * easily increased by injection (this happens if bfqq
4466 * has a short think time). If none of these
4467 * conditions holds, then a candidate queue for
4468 * injection is looked for through
4469 * bfq_choose_bfqq_for_injection(). Note that the
4470 * latter may return NULL (for example if the inject
4471 * limit for bfqq is currently 0).
4473 * NOTE: motivation for the second alternative
4475 * Thanks to the way the inject limit is updated in
4476 * bfq_update_has_short_ttime(), it is rather likely
4477 * that, if I/O is being plugged for bfqq and the
4478 * waker queue has pending I/O requests that are
4479 * blocking bfqq's I/O, then the third alternative
4480 * above lets the waker queue get served before the
4481 * I/O-plugging timeout fires. So one may deem the
4482 * second alternative superfluous. It is not, because
4483 * the third alternative may be way less effective in
4484 * case of a synchronization. For two main
4485 * reasons. First, throughput may be low because the
4486 * inject limit may be too low to guarantee the same
4487 * amount of injected I/O, from the waker queue or
4488 * other queues, that the second alternative
4489 * guarantees (the second alternative unconditionally
4490 * injects a pending I/O request of the waker queue
4491 * for each bfq_dispatch_request()). Second, with the
4492 * third alternative, the duration of the plugging,
4493 * i.e., the time before bfqq finally receives new I/O,
4494 * may not be minimized, because the waker queue may
4495 * happen to be served only after other queues.
4497 if (async_bfqq &&
4498 icq_to_bic(async_bfqq->next_rq->elv.icq) == bfqq->bic &&
4499 bfq_serv_to_charge(async_bfqq->next_rq, async_bfqq) <=
4500 bfq_bfqq_budget_left(async_bfqq))
4501 bfqq = bfqq->bic->bfqq[0];
4502 else if (bfq_bfqq_has_waker(bfqq) &&
4503 bfq_bfqq_busy(bfqq->waker_bfqq) &&
4504 bfqq->next_rq &&
4505 bfq_serv_to_charge(bfqq->waker_bfqq->next_rq,
4506 bfqq->waker_bfqq) <=
4507 bfq_bfqq_budget_left(bfqq->waker_bfqq)
4509 bfqq = bfqq->waker_bfqq;
4510 else if (!idling_boosts_thr_without_issues(bfqd, bfqq) &&
4511 (bfqq->wr_coeff == 1 || bfqd->wr_busy_queues > 1 ||
4512 !bfq_bfqq_has_short_ttime(bfqq)))
4513 bfqq = bfq_choose_bfqq_for_injection(bfqd);
4514 else
4515 bfqq = NULL;
4517 goto keep_queue;
4520 reason = BFQQE_NO_MORE_REQUESTS;
4521 expire:
4522 bfq_bfqq_expire(bfqd, bfqq, false, reason);
4523 new_queue:
4524 bfqq = bfq_set_in_service_queue(bfqd);
4525 if (bfqq) {
4526 bfq_log_bfqq(bfqd, bfqq, "select_queue: checking new queue");
4527 goto check_queue;
4529 keep_queue:
4530 if (bfqq)
4531 bfq_log_bfqq(bfqd, bfqq, "select_queue: returned this queue");
4532 else
4533 bfq_log(bfqd, "select_queue: no queue returned");
4535 return bfqq;
4538 static void bfq_update_wr_data(struct bfq_data *bfqd, struct bfq_queue *bfqq)
4540 struct bfq_entity *entity = &bfqq->entity;
4542 if (bfqq->wr_coeff > 1) { /* queue is being weight-raised */
4543 bfq_log_bfqq(bfqd, bfqq,
4544 "raising period dur %u/%u msec, old coeff %u, w %d(%d)",
4545 jiffies_to_msecs(jiffies - bfqq->last_wr_start_finish),
4546 jiffies_to_msecs(bfqq->wr_cur_max_time),
4547 bfqq->wr_coeff,
4548 bfqq->entity.weight, bfqq->entity.orig_weight);
4550 if (entity->prio_changed)
4551 bfq_log_bfqq(bfqd, bfqq, "WARN: pending prio change");
4554 * If the queue was activated in a burst, or too much
4555 * time has elapsed from the beginning of this
4556 * weight-raising period, then end weight raising.
4558 if (bfq_bfqq_in_large_burst(bfqq))
4559 bfq_bfqq_end_wr(bfqq);
4560 else if (time_is_before_jiffies(bfqq->last_wr_start_finish +
4561 bfqq->wr_cur_max_time)) {
4562 if (bfqq->wr_cur_max_time != bfqd->bfq_wr_rt_max_time ||
4563 time_is_before_jiffies(bfqq->wr_start_at_switch_to_srt +
4564 bfq_wr_duration(bfqd)))
4565 bfq_bfqq_end_wr(bfqq);
4566 else {
4567 switch_back_to_interactive_wr(bfqq, bfqd);
4568 bfqq->entity.prio_changed = 1;
4571 if (bfqq->wr_coeff > 1 &&
4572 bfqq->wr_cur_max_time != bfqd->bfq_wr_rt_max_time &&
4573 bfqq->service_from_wr > max_service_from_wr) {
4574 /* see comments on max_service_from_wr */
4575 bfq_bfqq_end_wr(bfqq);
4579 * To improve latency (for this or other queues), immediately
4580 * update weight both if it must be raised and if it must be
4581 * lowered. Since, entity may be on some active tree here, and
4582 * might have a pending change of its ioprio class, invoke
4583 * next function with the last parameter unset (see the
4584 * comments on the function).
4586 if ((entity->weight > entity->orig_weight) != (bfqq->wr_coeff > 1))
4587 __bfq_entity_update_weight_prio(bfq_entity_service_tree(entity),
4588 entity, false);
4592 * Dispatch next request from bfqq.
4594 static struct request *bfq_dispatch_rq_from_bfqq(struct bfq_data *bfqd,
4595 struct bfq_queue *bfqq)
4597 struct request *rq = bfqq->next_rq;
4598 unsigned long service_to_charge;
4600 service_to_charge = bfq_serv_to_charge(rq, bfqq);
4602 bfq_bfqq_served(bfqq, service_to_charge);
4604 if (bfqq == bfqd->in_service_queue && bfqd->wait_dispatch) {
4605 bfqd->wait_dispatch = false;
4606 bfqd->waited_rq = rq;
4609 bfq_dispatch_remove(bfqd->queue, rq);
4611 if (bfqq != bfqd->in_service_queue)
4612 goto return_rq;
4615 * If weight raising has to terminate for bfqq, then next
4616 * function causes an immediate update of bfqq's weight,
4617 * without waiting for next activation. As a consequence, on
4618 * expiration, bfqq will be timestamped as if has never been
4619 * weight-raised during this service slot, even if it has
4620 * received part or even most of the service as a
4621 * weight-raised queue. This inflates bfqq's timestamps, which
4622 * is beneficial, as bfqq is then more willing to leave the
4623 * device immediately to possible other weight-raised queues.
4625 bfq_update_wr_data(bfqd, bfqq);
4628 * Expire bfqq, pretending that its budget expired, if bfqq
4629 * belongs to CLASS_IDLE and other queues are waiting for
4630 * service.
4632 if (!(bfq_tot_busy_queues(bfqd) > 1 && bfq_class_idle(bfqq)))
4633 goto return_rq;
4635 bfq_bfqq_expire(bfqd, bfqq, false, BFQQE_BUDGET_EXHAUSTED);
4637 return_rq:
4638 return rq;
4641 static bool bfq_has_work(struct blk_mq_hw_ctx *hctx)
4643 struct bfq_data *bfqd = hctx->queue->elevator->elevator_data;
4646 * Avoiding lock: a race on bfqd->busy_queues should cause at
4647 * most a call to dispatch for nothing
4649 return !list_empty_careful(&bfqd->dispatch) ||
4650 bfq_tot_busy_queues(bfqd) > 0;
4653 static struct request *__bfq_dispatch_request(struct blk_mq_hw_ctx *hctx)
4655 struct bfq_data *bfqd = hctx->queue->elevator->elevator_data;
4656 struct request *rq = NULL;
4657 struct bfq_queue *bfqq = NULL;
4659 if (!list_empty(&bfqd->dispatch)) {
4660 rq = list_first_entry(&bfqd->dispatch, struct request,
4661 queuelist);
4662 list_del_init(&rq->queuelist);
4664 bfqq = RQ_BFQQ(rq);
4666 if (bfqq) {
4668 * Increment counters here, because this
4669 * dispatch does not follow the standard
4670 * dispatch flow (where counters are
4671 * incremented)
4673 bfqq->dispatched++;
4675 goto inc_in_driver_start_rq;
4679 * We exploit the bfq_finish_requeue_request hook to
4680 * decrement rq_in_driver, but
4681 * bfq_finish_requeue_request will not be invoked on
4682 * this request. So, to avoid unbalance, just start
4683 * this request, without incrementing rq_in_driver. As
4684 * a negative consequence, rq_in_driver is deceptively
4685 * lower than it should be while this request is in
4686 * service. This may cause bfq_schedule_dispatch to be
4687 * invoked uselessly.
4689 * As for implementing an exact solution, the
4690 * bfq_finish_requeue_request hook, if defined, is
4691 * probably invoked also on this request. So, by
4692 * exploiting this hook, we could 1) increment
4693 * rq_in_driver here, and 2) decrement it in
4694 * bfq_finish_requeue_request. Such a solution would
4695 * let the value of the counter be always accurate,
4696 * but it would entail using an extra interface
4697 * function. This cost seems higher than the benefit,
4698 * being the frequency of non-elevator-private
4699 * requests very low.
4701 goto start_rq;
4704 bfq_log(bfqd, "dispatch requests: %d busy queues",
4705 bfq_tot_busy_queues(bfqd));
4707 if (bfq_tot_busy_queues(bfqd) == 0)
4708 goto exit;
4711 * Force device to serve one request at a time if
4712 * strict_guarantees is true. Forcing this service scheme is
4713 * currently the ONLY way to guarantee that the request
4714 * service order enforced by the scheduler is respected by a
4715 * queueing device. Otherwise the device is free even to make
4716 * some unlucky request wait for as long as the device
4717 * wishes.
4719 * Of course, serving one request at at time may cause loss of
4720 * throughput.
4722 if (bfqd->strict_guarantees && bfqd->rq_in_driver > 0)
4723 goto exit;
4725 bfqq = bfq_select_queue(bfqd);
4726 if (!bfqq)
4727 goto exit;
4729 rq = bfq_dispatch_rq_from_bfqq(bfqd, bfqq);
4731 if (rq) {
4732 inc_in_driver_start_rq:
4733 bfqd->rq_in_driver++;
4734 start_rq:
4735 rq->rq_flags |= RQF_STARTED;
4737 exit:
4738 return rq;
4741 #ifdef CONFIG_BFQ_CGROUP_DEBUG
4742 static void bfq_update_dispatch_stats(struct request_queue *q,
4743 struct request *rq,
4744 struct bfq_queue *in_serv_queue,
4745 bool idle_timer_disabled)
4747 struct bfq_queue *bfqq = rq ? RQ_BFQQ(rq) : NULL;
4749 if (!idle_timer_disabled && !bfqq)
4750 return;
4753 * rq and bfqq are guaranteed to exist until this function
4754 * ends, for the following reasons. First, rq can be
4755 * dispatched to the device, and then can be completed and
4756 * freed, only after this function ends. Second, rq cannot be
4757 * merged (and thus freed because of a merge) any longer,
4758 * because it has already started. Thus rq cannot be freed
4759 * before this function ends, and, since rq has a reference to
4760 * bfqq, the same guarantee holds for bfqq too.
4762 * In addition, the following queue lock guarantees that
4763 * bfqq_group(bfqq) exists as well.
4765 spin_lock_irq(&q->queue_lock);
4766 if (idle_timer_disabled)
4768 * Since the idle timer has been disabled,
4769 * in_serv_queue contained some request when
4770 * __bfq_dispatch_request was invoked above, which
4771 * implies that rq was picked exactly from
4772 * in_serv_queue. Thus in_serv_queue == bfqq, and is
4773 * therefore guaranteed to exist because of the above
4774 * arguments.
4776 bfqg_stats_update_idle_time(bfqq_group(in_serv_queue));
4777 if (bfqq) {
4778 struct bfq_group *bfqg = bfqq_group(bfqq);
4780 bfqg_stats_update_avg_queue_size(bfqg);
4781 bfqg_stats_set_start_empty_time(bfqg);
4782 bfqg_stats_update_io_remove(bfqg, rq->cmd_flags);
4784 spin_unlock_irq(&q->queue_lock);
4786 #else
4787 static inline void bfq_update_dispatch_stats(struct request_queue *q,
4788 struct request *rq,
4789 struct bfq_queue *in_serv_queue,
4790 bool idle_timer_disabled) {}
4791 #endif /* CONFIG_BFQ_CGROUP_DEBUG */
4793 static struct request *bfq_dispatch_request(struct blk_mq_hw_ctx *hctx)
4795 struct bfq_data *bfqd = hctx->queue->elevator->elevator_data;
4796 struct request *rq;
4797 struct bfq_queue *in_serv_queue;
4798 bool waiting_rq, idle_timer_disabled;
4800 spin_lock_irq(&bfqd->lock);
4802 in_serv_queue = bfqd->in_service_queue;
4803 waiting_rq = in_serv_queue && bfq_bfqq_wait_request(in_serv_queue);
4805 rq = __bfq_dispatch_request(hctx);
4807 idle_timer_disabled =
4808 waiting_rq && !bfq_bfqq_wait_request(in_serv_queue);
4810 spin_unlock_irq(&bfqd->lock);
4812 bfq_update_dispatch_stats(hctx->queue, rq, in_serv_queue,
4813 idle_timer_disabled);
4815 return rq;
4819 * Task holds one reference to the queue, dropped when task exits. Each rq
4820 * in-flight on this queue also holds a reference, dropped when rq is freed.
4822 * Scheduler lock must be held here. Recall not to use bfqq after calling
4823 * this function on it.
4825 void bfq_put_queue(struct bfq_queue *bfqq)
4827 struct bfq_queue *item;
4828 struct hlist_node *n;
4829 struct bfq_group *bfqg = bfqq_group(bfqq);
4831 if (bfqq->bfqd)
4832 bfq_log_bfqq(bfqq->bfqd, bfqq, "put_queue: %p %d",
4833 bfqq, bfqq->ref);
4835 bfqq->ref--;
4836 if (bfqq->ref)
4837 return;
4839 if (!hlist_unhashed(&bfqq->burst_list_node)) {
4840 hlist_del_init(&bfqq->burst_list_node);
4842 * Decrement also burst size after the removal, if the
4843 * process associated with bfqq is exiting, and thus
4844 * does not contribute to the burst any longer. This
4845 * decrement helps filter out false positives of large
4846 * bursts, when some short-lived process (often due to
4847 * the execution of commands by some service) happens
4848 * to start and exit while a complex application is
4849 * starting, and thus spawning several processes that
4850 * do I/O (and that *must not* be treated as a large
4851 * burst, see comments on bfq_handle_burst).
4853 * In particular, the decrement is performed only if:
4854 * 1) bfqq is not a merged queue, because, if it is,
4855 * then this free of bfqq is not triggered by the exit
4856 * of the process bfqq is associated with, but exactly
4857 * by the fact that bfqq has just been merged.
4858 * 2) burst_size is greater than 0, to handle
4859 * unbalanced decrements. Unbalanced decrements may
4860 * happen in te following case: bfqq is inserted into
4861 * the current burst list--without incrementing
4862 * bust_size--because of a split, but the current
4863 * burst list is not the burst list bfqq belonged to
4864 * (see comments on the case of a split in
4865 * bfq_set_request).
4867 if (bfqq->bic && bfqq->bfqd->burst_size > 0)
4868 bfqq->bfqd->burst_size--;
4872 * bfqq does not exist any longer, so it cannot be woken by
4873 * any other queue, and cannot wake any other queue. Then bfqq
4874 * must be removed from the woken list of its possible waker
4875 * queue, and all queues in the woken list of bfqq must stop
4876 * having a waker queue. Strictly speaking, these updates
4877 * should be performed when bfqq remains with no I/O source
4878 * attached to it, which happens before bfqq gets freed. In
4879 * particular, this happens when the last process associated
4880 * with bfqq exits or gets associated with a different
4881 * queue. However, both events lead to bfqq being freed soon,
4882 * and dangling references would come out only after bfqq gets
4883 * freed. So these updates are done here, as a simple and safe
4884 * way to handle all cases.
4886 /* remove bfqq from woken list */
4887 if (!hlist_unhashed(&bfqq->woken_list_node))
4888 hlist_del_init(&bfqq->woken_list_node);
4890 /* reset waker for all queues in woken list */
4891 hlist_for_each_entry_safe(item, n, &bfqq->woken_list,
4892 woken_list_node) {
4893 item->waker_bfqq = NULL;
4894 bfq_clear_bfqq_has_waker(item);
4895 hlist_del_init(&item->woken_list_node);
4898 if (bfqq->bfqd && bfqq->bfqd->last_completed_rq_bfqq == bfqq)
4899 bfqq->bfqd->last_completed_rq_bfqq = NULL;
4901 kmem_cache_free(bfq_pool, bfqq);
4902 bfqg_and_blkg_put(bfqg);
4905 static void bfq_put_cooperator(struct bfq_queue *bfqq)
4907 struct bfq_queue *__bfqq, *next;
4910 * If this queue was scheduled to merge with another queue, be
4911 * sure to drop the reference taken on that queue (and others in
4912 * the merge chain). See bfq_setup_merge and bfq_merge_bfqqs.
4914 __bfqq = bfqq->new_bfqq;
4915 while (__bfqq) {
4916 if (__bfqq == bfqq)
4917 break;
4918 next = __bfqq->new_bfqq;
4919 bfq_put_queue(__bfqq);
4920 __bfqq = next;
4924 static void bfq_exit_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq)
4926 if (bfqq == bfqd->in_service_queue) {
4927 __bfq_bfqq_expire(bfqd, bfqq, BFQQE_BUDGET_TIMEOUT);
4928 bfq_schedule_dispatch(bfqd);
4931 bfq_log_bfqq(bfqd, bfqq, "exit_bfqq: %p, %d", bfqq, bfqq->ref);
4933 bfq_put_cooperator(bfqq);
4935 bfq_release_process_ref(bfqd, bfqq);
4938 static void bfq_exit_icq_bfqq(struct bfq_io_cq *bic, bool is_sync)
4940 struct bfq_queue *bfqq = bic_to_bfqq(bic, is_sync);
4941 struct bfq_data *bfqd;
4943 if (bfqq)
4944 bfqd = bfqq->bfqd; /* NULL if scheduler already exited */
4946 if (bfqq && bfqd) {
4947 unsigned long flags;
4949 spin_lock_irqsave(&bfqd->lock, flags);
4950 bfqq->bic = NULL;
4951 bfq_exit_bfqq(bfqd, bfqq);
4952 bic_set_bfqq(bic, NULL, is_sync);
4953 spin_unlock_irqrestore(&bfqd->lock, flags);
4957 static void bfq_exit_icq(struct io_cq *icq)
4959 struct bfq_io_cq *bic = icq_to_bic(icq);
4961 bfq_exit_icq_bfqq(bic, true);
4962 bfq_exit_icq_bfqq(bic, false);
4966 * Update the entity prio values; note that the new values will not
4967 * be used until the next (re)activation.
4969 static void
4970 bfq_set_next_ioprio_data(struct bfq_queue *bfqq, struct bfq_io_cq *bic)
4972 struct task_struct *tsk = current;
4973 int ioprio_class;
4974 struct bfq_data *bfqd = bfqq->bfqd;
4976 if (!bfqd)
4977 return;
4979 ioprio_class = IOPRIO_PRIO_CLASS(bic->ioprio);
4980 switch (ioprio_class) {
4981 default:
4982 dev_err(bfqq->bfqd->queue->backing_dev_info->dev,
4983 "bfq: bad prio class %d\n", ioprio_class);
4984 /* fall through */
4985 case IOPRIO_CLASS_NONE:
4987 * No prio set, inherit CPU scheduling settings.
4989 bfqq->new_ioprio = task_nice_ioprio(tsk);
4990 bfqq->new_ioprio_class = task_nice_ioclass(tsk);
4991 break;
4992 case IOPRIO_CLASS_RT:
4993 bfqq->new_ioprio = IOPRIO_PRIO_DATA(bic->ioprio);
4994 bfqq->new_ioprio_class = IOPRIO_CLASS_RT;
4995 break;
4996 case IOPRIO_CLASS_BE:
4997 bfqq->new_ioprio = IOPRIO_PRIO_DATA(bic->ioprio);
4998 bfqq->new_ioprio_class = IOPRIO_CLASS_BE;
4999 break;
5000 case IOPRIO_CLASS_IDLE:
5001 bfqq->new_ioprio_class = IOPRIO_CLASS_IDLE;
5002 bfqq->new_ioprio = 7;
5003 break;
5006 if (bfqq->new_ioprio >= IOPRIO_BE_NR) {
5007 pr_crit("bfq_set_next_ioprio_data: new_ioprio %d\n",
5008 bfqq->new_ioprio);
5009 bfqq->new_ioprio = IOPRIO_BE_NR;
5012 bfqq->entity.new_weight = bfq_ioprio_to_weight(bfqq->new_ioprio);
5013 bfqq->entity.prio_changed = 1;
5016 static struct bfq_queue *bfq_get_queue(struct bfq_data *bfqd,
5017 struct bio *bio, bool is_sync,
5018 struct bfq_io_cq *bic);
5020 static void bfq_check_ioprio_change(struct bfq_io_cq *bic, struct bio *bio)
5022 struct bfq_data *bfqd = bic_to_bfqd(bic);
5023 struct bfq_queue *bfqq;
5024 int ioprio = bic->icq.ioc->ioprio;
5027 * This condition may trigger on a newly created bic, be sure to
5028 * drop the lock before returning.
5030 if (unlikely(!bfqd) || likely(bic->ioprio == ioprio))
5031 return;
5033 bic->ioprio = ioprio;
5035 bfqq = bic_to_bfqq(bic, false);
5036 if (bfqq) {
5037 bfq_release_process_ref(bfqd, bfqq);
5038 bfqq = bfq_get_queue(bfqd, bio, BLK_RW_ASYNC, bic);
5039 bic_set_bfqq(bic, bfqq, false);
5042 bfqq = bic_to_bfqq(bic, true);
5043 if (bfqq)
5044 bfq_set_next_ioprio_data(bfqq, bic);
5047 static void bfq_init_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq,
5048 struct bfq_io_cq *bic, pid_t pid, int is_sync)
5050 RB_CLEAR_NODE(&bfqq->entity.rb_node);
5051 INIT_LIST_HEAD(&bfqq->fifo);
5052 INIT_HLIST_NODE(&bfqq->burst_list_node);
5053 INIT_HLIST_NODE(&bfqq->woken_list_node);
5054 INIT_HLIST_HEAD(&bfqq->woken_list);
5056 bfqq->ref = 0;
5057 bfqq->bfqd = bfqd;
5059 if (bic)
5060 bfq_set_next_ioprio_data(bfqq, bic);
5062 if (is_sync) {
5064 * No need to mark as has_short_ttime if in
5065 * idle_class, because no device idling is performed
5066 * for queues in idle class
5068 if (!bfq_class_idle(bfqq))
5069 /* tentatively mark as has_short_ttime */
5070 bfq_mark_bfqq_has_short_ttime(bfqq);
5071 bfq_mark_bfqq_sync(bfqq);
5072 bfq_mark_bfqq_just_created(bfqq);
5073 } else
5074 bfq_clear_bfqq_sync(bfqq);
5076 /* set end request to minus infinity from now */
5077 bfqq->ttime.last_end_request = ktime_get_ns() + 1;
5079 bfq_mark_bfqq_IO_bound(bfqq);
5081 bfqq->pid = pid;
5083 /* Tentative initial value to trade off between thr and lat */
5084 bfqq->max_budget = (2 * bfq_max_budget(bfqd)) / 3;
5085 bfqq->budget_timeout = bfq_smallest_from_now();
5087 bfqq->wr_coeff = 1;
5088 bfqq->last_wr_start_finish = jiffies;
5089 bfqq->wr_start_at_switch_to_srt = bfq_smallest_from_now();
5090 bfqq->split_time = bfq_smallest_from_now();
5093 * To not forget the possibly high bandwidth consumed by a
5094 * process/queue in the recent past,
5095 * bfq_bfqq_softrt_next_start() returns a value at least equal
5096 * to the current value of bfqq->soft_rt_next_start (see
5097 * comments on bfq_bfqq_softrt_next_start). Set
5098 * soft_rt_next_start to now, to mean that bfqq has consumed
5099 * no bandwidth so far.
5101 bfqq->soft_rt_next_start = jiffies;
5103 /* first request is almost certainly seeky */
5104 bfqq->seek_history = 1;
5107 static struct bfq_queue **bfq_async_queue_prio(struct bfq_data *bfqd,
5108 struct bfq_group *bfqg,
5109 int ioprio_class, int ioprio)
5111 switch (ioprio_class) {
5112 case IOPRIO_CLASS_RT:
5113 return &bfqg->async_bfqq[0][ioprio];
5114 case IOPRIO_CLASS_NONE:
5115 ioprio = IOPRIO_NORM;
5116 /* fall through */
5117 case IOPRIO_CLASS_BE:
5118 return &bfqg->async_bfqq[1][ioprio];
5119 case IOPRIO_CLASS_IDLE:
5120 return &bfqg->async_idle_bfqq;
5121 default:
5122 return NULL;
5126 static struct bfq_queue *bfq_get_queue(struct bfq_data *bfqd,
5127 struct bio *bio, bool is_sync,
5128 struct bfq_io_cq *bic)
5130 const int ioprio = IOPRIO_PRIO_DATA(bic->ioprio);
5131 const int ioprio_class = IOPRIO_PRIO_CLASS(bic->ioprio);
5132 struct bfq_queue **async_bfqq = NULL;
5133 struct bfq_queue *bfqq;
5134 struct bfq_group *bfqg;
5136 rcu_read_lock();
5138 bfqg = bfq_find_set_group(bfqd, __bio_blkcg(bio));
5139 if (!bfqg) {
5140 bfqq = &bfqd->oom_bfqq;
5141 goto out;
5144 if (!is_sync) {
5145 async_bfqq = bfq_async_queue_prio(bfqd, bfqg, ioprio_class,
5146 ioprio);
5147 bfqq = *async_bfqq;
5148 if (bfqq)
5149 goto out;
5152 bfqq = kmem_cache_alloc_node(bfq_pool,
5153 GFP_NOWAIT | __GFP_ZERO | __GFP_NOWARN,
5154 bfqd->queue->node);
5156 if (bfqq) {
5157 bfq_init_bfqq(bfqd, bfqq, bic, current->pid,
5158 is_sync);
5159 bfq_init_entity(&bfqq->entity, bfqg);
5160 bfq_log_bfqq(bfqd, bfqq, "allocated");
5161 } else {
5162 bfqq = &bfqd->oom_bfqq;
5163 bfq_log_bfqq(bfqd, bfqq, "using oom bfqq");
5164 goto out;
5168 * Pin the queue now that it's allocated, scheduler exit will
5169 * prune it.
5171 if (async_bfqq) {
5172 bfqq->ref++; /*
5173 * Extra group reference, w.r.t. sync
5174 * queue. This extra reference is removed
5175 * only if bfqq->bfqg disappears, to
5176 * guarantee that this queue is not freed
5177 * until its group goes away.
5179 bfq_log_bfqq(bfqd, bfqq, "get_queue, bfqq not in async: %p, %d",
5180 bfqq, bfqq->ref);
5181 *async_bfqq = bfqq;
5184 out:
5185 bfqq->ref++; /* get a process reference to this queue */
5186 bfq_log_bfqq(bfqd, bfqq, "get_queue, at end: %p, %d", bfqq, bfqq->ref);
5187 rcu_read_unlock();
5188 return bfqq;
5191 static void bfq_update_io_thinktime(struct bfq_data *bfqd,
5192 struct bfq_queue *bfqq)
5194 struct bfq_ttime *ttime = &bfqq->ttime;
5195 u64 elapsed = ktime_get_ns() - bfqq->ttime.last_end_request;
5197 elapsed = min_t(u64, elapsed, 2ULL * bfqd->bfq_slice_idle);
5199 ttime->ttime_samples = (7*bfqq->ttime.ttime_samples + 256) / 8;
5200 ttime->ttime_total = div_u64(7*ttime->ttime_total + 256*elapsed, 8);
5201 ttime->ttime_mean = div64_ul(ttime->ttime_total + 128,
5202 ttime->ttime_samples);
5205 static void
5206 bfq_update_io_seektime(struct bfq_data *bfqd, struct bfq_queue *bfqq,
5207 struct request *rq)
5209 bfqq->seek_history <<= 1;
5210 bfqq->seek_history |= BFQ_RQ_SEEKY(bfqd, bfqq->last_request_pos, rq);
5212 if (bfqq->wr_coeff > 1 &&
5213 bfqq->wr_cur_max_time == bfqd->bfq_wr_rt_max_time &&
5214 BFQQ_TOTALLY_SEEKY(bfqq))
5215 bfq_bfqq_end_wr(bfqq);
5218 static void bfq_update_has_short_ttime(struct bfq_data *bfqd,
5219 struct bfq_queue *bfqq,
5220 struct bfq_io_cq *bic)
5222 bool has_short_ttime = true, state_changed;
5225 * No need to update has_short_ttime if bfqq is async or in
5226 * idle io prio class, or if bfq_slice_idle is zero, because
5227 * no device idling is performed for bfqq in this case.
5229 if (!bfq_bfqq_sync(bfqq) || bfq_class_idle(bfqq) ||
5230 bfqd->bfq_slice_idle == 0)
5231 return;
5233 /* Idle window just restored, statistics are meaningless. */
5234 if (time_is_after_eq_jiffies(bfqq->split_time +
5235 bfqd->bfq_wr_min_idle_time))
5236 return;
5238 /* Think time is infinite if no process is linked to
5239 * bfqq. Otherwise check average think time to
5240 * decide whether to mark as has_short_ttime
5242 if (atomic_read(&bic->icq.ioc->active_ref) == 0 ||
5243 (bfq_sample_valid(bfqq->ttime.ttime_samples) &&
5244 bfqq->ttime.ttime_mean > bfqd->bfq_slice_idle))
5245 has_short_ttime = false;
5247 state_changed = has_short_ttime != bfq_bfqq_has_short_ttime(bfqq);
5249 if (has_short_ttime)
5250 bfq_mark_bfqq_has_short_ttime(bfqq);
5251 else
5252 bfq_clear_bfqq_has_short_ttime(bfqq);
5255 * Until the base value for the total service time gets
5256 * finally computed for bfqq, the inject limit does depend on
5257 * the think-time state (short|long). In particular, the limit
5258 * is 0 or 1 if the think time is deemed, respectively, as
5259 * short or long (details in the comments in
5260 * bfq_update_inject_limit()). Accordingly, the next
5261 * instructions reset the inject limit if the think-time state
5262 * has changed and the above base value is still to be
5263 * computed.
5265 * However, the reset is performed only if more than 100 ms
5266 * have elapsed since the last update of the inject limit, or
5267 * (inclusive) if the change is from short to long think
5268 * time. The reason for this waiting is as follows.
5270 * bfqq may have a long think time because of a
5271 * synchronization with some other queue, i.e., because the
5272 * I/O of some other queue may need to be completed for bfqq
5273 * to receive new I/O. Details in the comments on the choice
5274 * of the queue for injection in bfq_select_queue().
5276 * As stressed in those comments, if such a synchronization is
5277 * actually in place, then, without injection on bfqq, the
5278 * blocking I/O cannot happen to served while bfqq is in
5279 * service. As a consequence, if bfqq is granted
5280 * I/O-dispatch-plugging, then bfqq remains empty, and no I/O
5281 * is dispatched, until the idle timeout fires. This is likely
5282 * to result in lower bandwidth and higher latencies for bfqq,
5283 * and in a severe loss of total throughput.
5285 * On the opposite end, a non-zero inject limit may allow the
5286 * I/O that blocks bfqq to be executed soon, and therefore
5287 * bfqq to receive new I/O soon.
5289 * But, if the blocking gets actually eliminated, then the
5290 * next think-time sample for bfqq may be very low. This in
5291 * turn may cause bfqq's think time to be deemed
5292 * short. Without the 100 ms barrier, this new state change
5293 * would cause the body of the next if to be executed
5294 * immediately. But this would set to 0 the inject
5295 * limit. Without injection, the blocking I/O would cause the
5296 * think time of bfqq to become long again, and therefore the
5297 * inject limit to be raised again, and so on. The only effect
5298 * of such a steady oscillation between the two think-time
5299 * states would be to prevent effective injection on bfqq.
5301 * In contrast, if the inject limit is not reset during such a
5302 * long time interval as 100 ms, then the number of short
5303 * think time samples can grow significantly before the reset
5304 * is performed. As a consequence, the think time state can
5305 * become stable before the reset. Therefore there will be no
5306 * state change when the 100 ms elapse, and no reset of the
5307 * inject limit. The inject limit remains steadily equal to 1
5308 * both during and after the 100 ms. So injection can be
5309 * performed at all times, and throughput gets boosted.
5311 * An inject limit equal to 1 is however in conflict, in
5312 * general, with the fact that the think time of bfqq is
5313 * short, because injection may be likely to delay bfqq's I/O
5314 * (as explained in the comments in
5315 * bfq_update_inject_limit()). But this does not happen in
5316 * this special case, because bfqq's low think time is due to
5317 * an effective handling of a synchronization, through
5318 * injection. In this special case, bfqq's I/O does not get
5319 * delayed by injection; on the contrary, bfqq's I/O is
5320 * brought forward, because it is not blocked for
5321 * milliseconds.
5323 * In addition, serving the blocking I/O much sooner, and much
5324 * more frequently than once per I/O-plugging timeout, makes
5325 * it much quicker to detect a waker queue (the concept of
5326 * waker queue is defined in the comments in
5327 * bfq_add_request()). This makes it possible to start sooner
5328 * to boost throughput more effectively, by injecting the I/O
5329 * of the waker queue unconditionally on every
5330 * bfq_dispatch_request().
5332 * One last, important benefit of not resetting the inject
5333 * limit before 100 ms is that, during this time interval, the
5334 * base value for the total service time is likely to get
5335 * finally computed for bfqq, freeing the inject limit from
5336 * its relation with the think time.
5338 if (state_changed && bfqq->last_serv_time_ns == 0 &&
5339 (time_is_before_eq_jiffies(bfqq->decrease_time_jif +
5340 msecs_to_jiffies(100)) ||
5341 !has_short_ttime))
5342 bfq_reset_inject_limit(bfqd, bfqq);
5346 * Called when a new fs request (rq) is added to bfqq. Check if there's
5347 * something we should do about it.
5349 static void bfq_rq_enqueued(struct bfq_data *bfqd, struct bfq_queue *bfqq,
5350 struct request *rq)
5352 if (rq->cmd_flags & REQ_META)
5353 bfqq->meta_pending++;
5355 bfqq->last_request_pos = blk_rq_pos(rq) + blk_rq_sectors(rq);
5357 if (bfqq == bfqd->in_service_queue && bfq_bfqq_wait_request(bfqq)) {
5358 bool small_req = bfqq->queued[rq_is_sync(rq)] == 1 &&
5359 blk_rq_sectors(rq) < 32;
5360 bool budget_timeout = bfq_bfqq_budget_timeout(bfqq);
5363 * There is just this request queued: if
5364 * - the request is small, and
5365 * - we are idling to boost throughput, and
5366 * - the queue is not to be expired,
5367 * then just exit.
5369 * In this way, if the device is being idled to wait
5370 * for a new request from the in-service queue, we
5371 * avoid unplugging the device and committing the
5372 * device to serve just a small request. In contrast
5373 * we wait for the block layer to decide when to
5374 * unplug the device: hopefully, new requests will be
5375 * merged to this one quickly, then the device will be
5376 * unplugged and larger requests will be dispatched.
5378 if (small_req && idling_boosts_thr_without_issues(bfqd, bfqq) &&
5379 !budget_timeout)
5380 return;
5383 * A large enough request arrived, or idling is being
5384 * performed to preserve service guarantees, or
5385 * finally the queue is to be expired: in all these
5386 * cases disk idling is to be stopped, so clear
5387 * wait_request flag and reset timer.
5389 bfq_clear_bfqq_wait_request(bfqq);
5390 hrtimer_try_to_cancel(&bfqd->idle_slice_timer);
5393 * The queue is not empty, because a new request just
5394 * arrived. Hence we can safely expire the queue, in
5395 * case of budget timeout, without risking that the
5396 * timestamps of the queue are not updated correctly.
5397 * See [1] for more details.
5399 if (budget_timeout)
5400 bfq_bfqq_expire(bfqd, bfqq, false,
5401 BFQQE_BUDGET_TIMEOUT);
5405 /* returns true if it causes the idle timer to be disabled */
5406 static bool __bfq_insert_request(struct bfq_data *bfqd, struct request *rq)
5408 struct bfq_queue *bfqq = RQ_BFQQ(rq),
5409 *new_bfqq = bfq_setup_cooperator(bfqd, bfqq, rq, true);
5410 bool waiting, idle_timer_disabled = false;
5412 if (new_bfqq) {
5414 * Release the request's reference to the old bfqq
5415 * and make sure one is taken to the shared queue.
5417 new_bfqq->allocated++;
5418 bfqq->allocated--;
5419 new_bfqq->ref++;
5421 * If the bic associated with the process
5422 * issuing this request still points to bfqq
5423 * (and thus has not been already redirected
5424 * to new_bfqq or even some other bfq_queue),
5425 * then complete the merge and redirect it to
5426 * new_bfqq.
5428 if (bic_to_bfqq(RQ_BIC(rq), 1) == bfqq)
5429 bfq_merge_bfqqs(bfqd, RQ_BIC(rq),
5430 bfqq, new_bfqq);
5432 bfq_clear_bfqq_just_created(bfqq);
5434 * rq is about to be enqueued into new_bfqq,
5435 * release rq reference on bfqq
5437 bfq_put_queue(bfqq);
5438 rq->elv.priv[1] = new_bfqq;
5439 bfqq = new_bfqq;
5442 bfq_update_io_thinktime(bfqd, bfqq);
5443 bfq_update_has_short_ttime(bfqd, bfqq, RQ_BIC(rq));
5444 bfq_update_io_seektime(bfqd, bfqq, rq);
5446 waiting = bfqq && bfq_bfqq_wait_request(bfqq);
5447 bfq_add_request(rq);
5448 idle_timer_disabled = waiting && !bfq_bfqq_wait_request(bfqq);
5450 rq->fifo_time = ktime_get_ns() + bfqd->bfq_fifo_expire[rq_is_sync(rq)];
5451 list_add_tail(&rq->queuelist, &bfqq->fifo);
5453 bfq_rq_enqueued(bfqd, bfqq, rq);
5455 return idle_timer_disabled;
5458 #ifdef CONFIG_BFQ_CGROUP_DEBUG
5459 static void bfq_update_insert_stats(struct request_queue *q,
5460 struct bfq_queue *bfqq,
5461 bool idle_timer_disabled,
5462 unsigned int cmd_flags)
5464 if (!bfqq)
5465 return;
5468 * bfqq still exists, because it can disappear only after
5469 * either it is merged with another queue, or the process it
5470 * is associated with exits. But both actions must be taken by
5471 * the same process currently executing this flow of
5472 * instructions.
5474 * In addition, the following queue lock guarantees that
5475 * bfqq_group(bfqq) exists as well.
5477 spin_lock_irq(&q->queue_lock);
5478 bfqg_stats_update_io_add(bfqq_group(bfqq), bfqq, cmd_flags);
5479 if (idle_timer_disabled)
5480 bfqg_stats_update_idle_time(bfqq_group(bfqq));
5481 spin_unlock_irq(&q->queue_lock);
5483 #else
5484 static inline void bfq_update_insert_stats(struct request_queue *q,
5485 struct bfq_queue *bfqq,
5486 bool idle_timer_disabled,
5487 unsigned int cmd_flags) {}
5488 #endif /* CONFIG_BFQ_CGROUP_DEBUG */
5490 static void bfq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
5491 bool at_head)
5493 struct request_queue *q = hctx->queue;
5494 struct bfq_data *bfqd = q->elevator->elevator_data;
5495 struct bfq_queue *bfqq;
5496 bool idle_timer_disabled = false;
5497 unsigned int cmd_flags;
5499 #ifdef CONFIG_BFQ_GROUP_IOSCHED
5500 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) && rq->bio)
5501 bfqg_stats_update_legacy_io(q, rq);
5502 #endif
5503 spin_lock_irq(&bfqd->lock);
5504 if (blk_mq_sched_try_insert_merge(q, rq)) {
5505 spin_unlock_irq(&bfqd->lock);
5506 return;
5509 spin_unlock_irq(&bfqd->lock);
5511 blk_mq_sched_request_inserted(rq);
5513 spin_lock_irq(&bfqd->lock);
5514 bfqq = bfq_init_rq(rq);
5515 if (!bfqq || at_head || blk_rq_is_passthrough(rq)) {
5516 if (at_head)
5517 list_add(&rq->queuelist, &bfqd->dispatch);
5518 else
5519 list_add_tail(&rq->queuelist, &bfqd->dispatch);
5520 } else {
5521 idle_timer_disabled = __bfq_insert_request(bfqd, rq);
5523 * Update bfqq, because, if a queue merge has occurred
5524 * in __bfq_insert_request, then rq has been
5525 * redirected into a new queue.
5527 bfqq = RQ_BFQQ(rq);
5529 if (rq_mergeable(rq)) {
5530 elv_rqhash_add(q, rq);
5531 if (!q->last_merge)
5532 q->last_merge = rq;
5537 * Cache cmd_flags before releasing scheduler lock, because rq
5538 * may disappear afterwards (for example, because of a request
5539 * merge).
5541 cmd_flags = rq->cmd_flags;
5543 spin_unlock_irq(&bfqd->lock);
5545 bfq_update_insert_stats(q, bfqq, idle_timer_disabled,
5546 cmd_flags);
5549 static void bfq_insert_requests(struct blk_mq_hw_ctx *hctx,
5550 struct list_head *list, bool at_head)
5552 while (!list_empty(list)) {
5553 struct request *rq;
5555 rq = list_first_entry(list, struct request, queuelist);
5556 list_del_init(&rq->queuelist);
5557 bfq_insert_request(hctx, rq, at_head);
5561 static void bfq_update_hw_tag(struct bfq_data *bfqd)
5563 struct bfq_queue *bfqq = bfqd->in_service_queue;
5565 bfqd->max_rq_in_driver = max_t(int, bfqd->max_rq_in_driver,
5566 bfqd->rq_in_driver);
5568 if (bfqd->hw_tag == 1)
5569 return;
5572 * This sample is valid if the number of outstanding requests
5573 * is large enough to allow a queueing behavior. Note that the
5574 * sum is not exact, as it's not taking into account deactivated
5575 * requests.
5577 if (bfqd->rq_in_driver + bfqd->queued <= BFQ_HW_QUEUE_THRESHOLD)
5578 return;
5581 * If active queue hasn't enough requests and can idle, bfq might not
5582 * dispatch sufficient requests to hardware. Don't zero hw_tag in this
5583 * case
5585 if (bfqq && bfq_bfqq_has_short_ttime(bfqq) &&
5586 bfqq->dispatched + bfqq->queued[0] + bfqq->queued[1] <
5587 BFQ_HW_QUEUE_THRESHOLD &&
5588 bfqd->rq_in_driver < BFQ_HW_QUEUE_THRESHOLD)
5589 return;
5591 if (bfqd->hw_tag_samples++ < BFQ_HW_QUEUE_SAMPLES)
5592 return;
5594 bfqd->hw_tag = bfqd->max_rq_in_driver > BFQ_HW_QUEUE_THRESHOLD;
5595 bfqd->max_rq_in_driver = 0;
5596 bfqd->hw_tag_samples = 0;
5598 bfqd->nonrot_with_queueing =
5599 blk_queue_nonrot(bfqd->queue) && bfqd->hw_tag;
5602 static void bfq_completed_request(struct bfq_queue *bfqq, struct bfq_data *bfqd)
5604 u64 now_ns;
5605 u32 delta_us;
5607 bfq_update_hw_tag(bfqd);
5609 bfqd->rq_in_driver--;
5610 bfqq->dispatched--;
5612 if (!bfqq->dispatched && !bfq_bfqq_busy(bfqq)) {
5614 * Set budget_timeout (which we overload to store the
5615 * time at which the queue remains with no backlog and
5616 * no outstanding request; used by the weight-raising
5617 * mechanism).
5619 bfqq->budget_timeout = jiffies;
5621 bfq_weights_tree_remove(bfqd, bfqq);
5624 now_ns = ktime_get_ns();
5626 bfqq->ttime.last_end_request = now_ns;
5629 * Using us instead of ns, to get a reasonable precision in
5630 * computing rate in next check.
5632 delta_us = div_u64(now_ns - bfqd->last_completion, NSEC_PER_USEC);
5635 * If the request took rather long to complete, and, according
5636 * to the maximum request size recorded, this completion latency
5637 * implies that the request was certainly served at a very low
5638 * rate (less than 1M sectors/sec), then the whole observation
5639 * interval that lasts up to this time instant cannot be a
5640 * valid time interval for computing a new peak rate. Invoke
5641 * bfq_update_rate_reset to have the following three steps
5642 * taken:
5643 * - close the observation interval at the last (previous)
5644 * request dispatch or completion
5645 * - compute rate, if possible, for that observation interval
5646 * - reset to zero samples, which will trigger a proper
5647 * re-initialization of the observation interval on next
5648 * dispatch
5650 if (delta_us > BFQ_MIN_TT/NSEC_PER_USEC &&
5651 (bfqd->last_rq_max_size<<BFQ_RATE_SHIFT)/delta_us <
5652 1UL<<(BFQ_RATE_SHIFT - 10))
5653 bfq_update_rate_reset(bfqd, NULL);
5654 bfqd->last_completion = now_ns;
5655 bfqd->last_completed_rq_bfqq = bfqq;
5658 * If we are waiting to discover whether the request pattern
5659 * of the task associated with the queue is actually
5660 * isochronous, and both requisites for this condition to hold
5661 * are now satisfied, then compute soft_rt_next_start (see the
5662 * comments on the function bfq_bfqq_softrt_next_start()). We
5663 * do not compute soft_rt_next_start if bfqq is in interactive
5664 * weight raising (see the comments in bfq_bfqq_expire() for
5665 * an explanation). We schedule this delayed update when bfqq
5666 * expires, if it still has in-flight requests.
5668 if (bfq_bfqq_softrt_update(bfqq) && bfqq->dispatched == 0 &&
5669 RB_EMPTY_ROOT(&bfqq->sort_list) &&
5670 bfqq->wr_coeff != bfqd->bfq_wr_coeff)
5671 bfqq->soft_rt_next_start =
5672 bfq_bfqq_softrt_next_start(bfqd, bfqq);
5675 * If this is the in-service queue, check if it needs to be expired,
5676 * or if we want to idle in case it has no pending requests.
5678 if (bfqd->in_service_queue == bfqq) {
5679 if (bfq_bfqq_must_idle(bfqq)) {
5680 if (bfqq->dispatched == 0)
5681 bfq_arm_slice_timer(bfqd);
5683 * If we get here, we do not expire bfqq, even
5684 * if bfqq was in budget timeout or had no
5685 * more requests (as controlled in the next
5686 * conditional instructions). The reason for
5687 * not expiring bfqq is as follows.
5689 * Here bfqq->dispatched > 0 holds, but
5690 * bfq_bfqq_must_idle() returned true. This
5691 * implies that, even if no request arrives
5692 * for bfqq before bfqq->dispatched reaches 0,
5693 * bfqq will, however, not be expired on the
5694 * completion event that causes bfqq->dispatch
5695 * to reach zero. In contrast, on this event,
5696 * bfqq will start enjoying device idling
5697 * (I/O-dispatch plugging).
5699 * But, if we expired bfqq here, bfqq would
5700 * not have the chance to enjoy device idling
5701 * when bfqq->dispatched finally reaches
5702 * zero. This would expose bfqq to violation
5703 * of its reserved service guarantees.
5705 return;
5706 } else if (bfq_may_expire_for_budg_timeout(bfqq))
5707 bfq_bfqq_expire(bfqd, bfqq, false,
5708 BFQQE_BUDGET_TIMEOUT);
5709 else if (RB_EMPTY_ROOT(&bfqq->sort_list) &&
5710 (bfqq->dispatched == 0 ||
5711 !bfq_better_to_idle(bfqq)))
5712 bfq_bfqq_expire(bfqd, bfqq, false,
5713 BFQQE_NO_MORE_REQUESTS);
5716 if (!bfqd->rq_in_driver)
5717 bfq_schedule_dispatch(bfqd);
5720 static void bfq_finish_requeue_request_body(struct bfq_queue *bfqq)
5722 bfqq->allocated--;
5724 bfq_put_queue(bfqq);
5728 * The processes associated with bfqq may happen to generate their
5729 * cumulative I/O at a lower rate than the rate at which the device
5730 * could serve the same I/O. This is rather probable, e.g., if only
5731 * one process is associated with bfqq and the device is an SSD. It
5732 * results in bfqq becoming often empty while in service. In this
5733 * respect, if BFQ is allowed to switch to another queue when bfqq
5734 * remains empty, then the device goes on being fed with I/O requests,
5735 * and the throughput is not affected. In contrast, if BFQ is not
5736 * allowed to switch to another queue---because bfqq is sync and
5737 * I/O-dispatch needs to be plugged while bfqq is temporarily
5738 * empty---then, during the service of bfqq, there will be frequent
5739 * "service holes", i.e., time intervals during which bfqq gets empty
5740 * and the device can only consume the I/O already queued in its
5741 * hardware queues. During service holes, the device may even get to
5742 * remaining idle. In the end, during the service of bfqq, the device
5743 * is driven at a lower speed than the one it can reach with the kind
5744 * of I/O flowing through bfqq.
5746 * To counter this loss of throughput, BFQ implements a "request
5747 * injection mechanism", which tries to fill the above service holes
5748 * with I/O requests taken from other queues. The hard part in this
5749 * mechanism is finding the right amount of I/O to inject, so as to
5750 * both boost throughput and not break bfqq's bandwidth and latency
5751 * guarantees. In this respect, the mechanism maintains a per-queue
5752 * inject limit, computed as below. While bfqq is empty, the injection
5753 * mechanism dispatches extra I/O requests only until the total number
5754 * of I/O requests in flight---i.e., already dispatched but not yet
5755 * completed---remains lower than this limit.
5757 * A first definition comes in handy to introduce the algorithm by
5758 * which the inject limit is computed. We define as first request for
5759 * bfqq, an I/O request for bfqq that arrives while bfqq is in
5760 * service, and causes bfqq to switch from empty to non-empty. The
5761 * algorithm updates the limit as a function of the effect of
5762 * injection on the service times of only the first requests of
5763 * bfqq. The reason for this restriction is that these are the
5764 * requests whose service time is affected most, because they are the
5765 * first to arrive after injection possibly occurred.
5767 * To evaluate the effect of injection, the algorithm measures the
5768 * "total service time" of first requests. We define as total service
5769 * time of an I/O request, the time that elapses since when the
5770 * request is enqueued into bfqq, to when it is completed. This
5771 * quantity allows the whole effect of injection to be measured. It is
5772 * easy to see why. Suppose that some requests of other queues are
5773 * actually injected while bfqq is empty, and that a new request R
5774 * then arrives for bfqq. If the device does start to serve all or
5775 * part of the injected requests during the service hole, then,
5776 * because of this extra service, it may delay the next invocation of
5777 * the dispatch hook of BFQ. Then, even after R gets eventually
5778 * dispatched, the device may delay the actual service of R if it is
5779 * still busy serving the extra requests, or if it decides to serve,
5780 * before R, some extra request still present in its queues. As a
5781 * conclusion, the cumulative extra delay caused by injection can be
5782 * easily evaluated by just comparing the total service time of first
5783 * requests with and without injection.
5785 * The limit-update algorithm works as follows. On the arrival of a
5786 * first request of bfqq, the algorithm measures the total time of the
5787 * request only if one of the three cases below holds, and, for each
5788 * case, it updates the limit as described below:
5790 * (1) If there is no in-flight request. This gives a baseline for the
5791 * total service time of the requests of bfqq. If the baseline has
5792 * not been computed yet, then, after computing it, the limit is
5793 * set to 1, to start boosting throughput, and to prepare the
5794 * ground for the next case. If the baseline has already been
5795 * computed, then it is updated, in case it results to be lower
5796 * than the previous value.
5798 * (2) If the limit is higher than 0 and there are in-flight
5799 * requests. By comparing the total service time in this case with
5800 * the above baseline, it is possible to know at which extent the
5801 * current value of the limit is inflating the total service
5802 * time. If the inflation is below a certain threshold, then bfqq
5803 * is assumed to be suffering from no perceivable loss of its
5804 * service guarantees, and the limit is even tentatively
5805 * increased. If the inflation is above the threshold, then the
5806 * limit is decreased. Due to the lack of any hysteresis, this
5807 * logic makes the limit oscillate even in steady workload
5808 * conditions. Yet we opted for it, because it is fast in reaching
5809 * the best value for the limit, as a function of the current I/O
5810 * workload. To reduce oscillations, this step is disabled for a
5811 * short time interval after the limit happens to be decreased.
5813 * (3) Periodically, after resetting the limit, to make sure that the
5814 * limit eventually drops in case the workload changes. This is
5815 * needed because, after the limit has gone safely up for a
5816 * certain workload, it is impossible to guess whether the
5817 * baseline total service time may have changed, without measuring
5818 * it again without injection. A more effective version of this
5819 * step might be to just sample the baseline, by interrupting
5820 * injection only once, and then to reset/lower the limit only if
5821 * the total service time with the current limit does happen to be
5822 * too large.
5824 * More details on each step are provided in the comments on the
5825 * pieces of code that implement these steps: the branch handling the
5826 * transition from empty to non empty in bfq_add_request(), the branch
5827 * handling injection in bfq_select_queue(), and the function
5828 * bfq_choose_bfqq_for_injection(). These comments also explain some
5829 * exceptions, made by the injection mechanism in some special cases.
5831 static void bfq_update_inject_limit(struct bfq_data *bfqd,
5832 struct bfq_queue *bfqq)
5834 u64 tot_time_ns = ktime_get_ns() - bfqd->last_empty_occupied_ns;
5835 unsigned int old_limit = bfqq->inject_limit;
5837 if (bfqq->last_serv_time_ns > 0 && bfqd->rqs_injected) {
5838 u64 threshold = (bfqq->last_serv_time_ns * 3)>>1;
5840 if (tot_time_ns >= threshold && old_limit > 0) {
5841 bfqq->inject_limit--;
5842 bfqq->decrease_time_jif = jiffies;
5843 } else if (tot_time_ns < threshold &&
5844 old_limit <= bfqd->max_rq_in_driver)
5845 bfqq->inject_limit++;
5849 * Either we still have to compute the base value for the
5850 * total service time, and there seem to be the right
5851 * conditions to do it, or we can lower the last base value
5852 * computed.
5854 * NOTE: (bfqd->rq_in_driver == 1) means that there is no I/O
5855 * request in flight, because this function is in the code
5856 * path that handles the completion of a request of bfqq, and,
5857 * in particular, this function is executed before
5858 * bfqd->rq_in_driver is decremented in such a code path.
5860 if ((bfqq->last_serv_time_ns == 0 && bfqd->rq_in_driver == 1) ||
5861 tot_time_ns < bfqq->last_serv_time_ns) {
5862 if (bfqq->last_serv_time_ns == 0) {
5864 * Now we certainly have a base value: make sure we
5865 * start trying injection.
5867 bfqq->inject_limit = max_t(unsigned int, 1, old_limit);
5869 bfqq->last_serv_time_ns = tot_time_ns;
5870 } else if (!bfqd->rqs_injected && bfqd->rq_in_driver == 1)
5872 * No I/O injected and no request still in service in
5873 * the drive: these are the exact conditions for
5874 * computing the base value of the total service time
5875 * for bfqq. So let's update this value, because it is
5876 * rather variable. For example, it varies if the size
5877 * or the spatial locality of the I/O requests in bfqq
5878 * change.
5880 bfqq->last_serv_time_ns = tot_time_ns;
5883 /* update complete, not waiting for any request completion any longer */
5884 bfqd->waited_rq = NULL;
5885 bfqd->rqs_injected = false;
5889 * Handle either a requeue or a finish for rq. The things to do are
5890 * the same in both cases: all references to rq are to be dropped. In
5891 * particular, rq is considered completed from the point of view of
5892 * the scheduler.
5894 static void bfq_finish_requeue_request(struct request *rq)
5896 struct bfq_queue *bfqq = RQ_BFQQ(rq);
5897 struct bfq_data *bfqd;
5900 * Requeue and finish hooks are invoked in blk-mq without
5901 * checking whether the involved request is actually still
5902 * referenced in the scheduler. To handle this fact, the
5903 * following two checks make this function exit in case of
5904 * spurious invocations, for which there is nothing to do.
5906 * First, check whether rq has nothing to do with an elevator.
5908 if (unlikely(!(rq->rq_flags & RQF_ELVPRIV)))
5909 return;
5912 * rq either is not associated with any icq, or is an already
5913 * requeued request that has not (yet) been re-inserted into
5914 * a bfq_queue.
5916 if (!rq->elv.icq || !bfqq)
5917 return;
5919 bfqd = bfqq->bfqd;
5921 if (rq->rq_flags & RQF_STARTED)
5922 bfqg_stats_update_completion(bfqq_group(bfqq),
5923 rq->start_time_ns,
5924 rq->io_start_time_ns,
5925 rq->cmd_flags);
5927 if (likely(rq->rq_flags & RQF_STARTED)) {
5928 unsigned long flags;
5930 spin_lock_irqsave(&bfqd->lock, flags);
5932 if (rq == bfqd->waited_rq)
5933 bfq_update_inject_limit(bfqd, bfqq);
5935 bfq_completed_request(bfqq, bfqd);
5936 bfq_finish_requeue_request_body(bfqq);
5938 spin_unlock_irqrestore(&bfqd->lock, flags);
5939 } else {
5941 * Request rq may be still/already in the scheduler,
5942 * in which case we need to remove it (this should
5943 * never happen in case of requeue). And we cannot
5944 * defer such a check and removal, to avoid
5945 * inconsistencies in the time interval from the end
5946 * of this function to the start of the deferred work.
5947 * This situation seems to occur only in process
5948 * context, as a consequence of a merge. In the
5949 * current version of the code, this implies that the
5950 * lock is held.
5953 if (!RB_EMPTY_NODE(&rq->rb_node)) {
5954 bfq_remove_request(rq->q, rq);
5955 bfqg_stats_update_io_remove(bfqq_group(bfqq),
5956 rq->cmd_flags);
5958 bfq_finish_requeue_request_body(bfqq);
5962 * Reset private fields. In case of a requeue, this allows
5963 * this function to correctly do nothing if it is spuriously
5964 * invoked again on this same request (see the check at the
5965 * beginning of the function). Probably, a better general
5966 * design would be to prevent blk-mq from invoking the requeue
5967 * or finish hooks of an elevator, for a request that is not
5968 * referred by that elevator.
5970 * Resetting the following fields would break the
5971 * request-insertion logic if rq is re-inserted into a bfq
5972 * internal queue, without a re-preparation. Here we assume
5973 * that re-insertions of requeued requests, without
5974 * re-preparation, can happen only for pass_through or at_head
5975 * requests (which are not re-inserted into bfq internal
5976 * queues).
5978 rq->elv.priv[0] = NULL;
5979 rq->elv.priv[1] = NULL;
5983 * Returns NULL if a new bfqq should be allocated, or the old bfqq if this
5984 * was the last process referring to that bfqq.
5986 static struct bfq_queue *
5987 bfq_split_bfqq(struct bfq_io_cq *bic, struct bfq_queue *bfqq)
5989 bfq_log_bfqq(bfqq->bfqd, bfqq, "splitting queue");
5991 if (bfqq_process_refs(bfqq) == 1) {
5992 bfqq->pid = current->pid;
5993 bfq_clear_bfqq_coop(bfqq);
5994 bfq_clear_bfqq_split_coop(bfqq);
5995 return bfqq;
5998 bic_set_bfqq(bic, NULL, 1);
6000 bfq_put_cooperator(bfqq);
6002 bfq_release_process_ref(bfqq->bfqd, bfqq);
6003 return NULL;
6006 static struct bfq_queue *bfq_get_bfqq_handle_split(struct bfq_data *bfqd,
6007 struct bfq_io_cq *bic,
6008 struct bio *bio,
6009 bool split, bool is_sync,
6010 bool *new_queue)
6012 struct bfq_queue *bfqq = bic_to_bfqq(bic, is_sync);
6014 if (likely(bfqq && bfqq != &bfqd->oom_bfqq))
6015 return bfqq;
6017 if (new_queue)
6018 *new_queue = true;
6020 if (bfqq)
6021 bfq_put_queue(bfqq);
6022 bfqq = bfq_get_queue(bfqd, bio, is_sync, bic);
6024 bic_set_bfqq(bic, bfqq, is_sync);
6025 if (split && is_sync) {
6026 if ((bic->was_in_burst_list && bfqd->large_burst) ||
6027 bic->saved_in_large_burst)
6028 bfq_mark_bfqq_in_large_burst(bfqq);
6029 else {
6030 bfq_clear_bfqq_in_large_burst(bfqq);
6031 if (bic->was_in_burst_list)
6033 * If bfqq was in the current
6034 * burst list before being
6035 * merged, then we have to add
6036 * it back. And we do not need
6037 * to increase burst_size, as
6038 * we did not decrement
6039 * burst_size when we removed
6040 * bfqq from the burst list as
6041 * a consequence of a merge
6042 * (see comments in
6043 * bfq_put_queue). In this
6044 * respect, it would be rather
6045 * costly to know whether the
6046 * current burst list is still
6047 * the same burst list from
6048 * which bfqq was removed on
6049 * the merge. To avoid this
6050 * cost, if bfqq was in a
6051 * burst list, then we add
6052 * bfqq to the current burst
6053 * list without any further
6054 * check. This can cause
6055 * inappropriate insertions,
6056 * but rarely enough to not
6057 * harm the detection of large
6058 * bursts significantly.
6060 hlist_add_head(&bfqq->burst_list_node,
6061 &bfqd->burst_list);
6063 bfqq->split_time = jiffies;
6066 return bfqq;
6070 * Only reset private fields. The actual request preparation will be
6071 * performed by bfq_init_rq, when rq is either inserted or merged. See
6072 * comments on bfq_init_rq for the reason behind this delayed
6073 * preparation.
6075 static void bfq_prepare_request(struct request *rq, struct bio *bio)
6078 * Regardless of whether we have an icq attached, we have to
6079 * clear the scheduler pointers, as they might point to
6080 * previously allocated bic/bfqq structs.
6082 rq->elv.priv[0] = rq->elv.priv[1] = NULL;
6086 * If needed, init rq, allocate bfq data structures associated with
6087 * rq, and increment reference counters in the destination bfq_queue
6088 * for rq. Return the destination bfq_queue for rq, or NULL is rq is
6089 * not associated with any bfq_queue.
6091 * This function is invoked by the functions that perform rq insertion
6092 * or merging. One may have expected the above preparation operations
6093 * to be performed in bfq_prepare_request, and not delayed to when rq
6094 * is inserted or merged. The rationale behind this delayed
6095 * preparation is that, after the prepare_request hook is invoked for
6096 * rq, rq may still be transformed into a request with no icq, i.e., a
6097 * request not associated with any queue. No bfq hook is invoked to
6098 * signal this transformation. As a consequence, should these
6099 * preparation operations be performed when the prepare_request hook
6100 * is invoked, and should rq be transformed one moment later, bfq
6101 * would end up in an inconsistent state, because it would have
6102 * incremented some queue counters for an rq destined to
6103 * transformation, without any chance to correctly lower these
6104 * counters back. In contrast, no transformation can still happen for
6105 * rq after rq has been inserted or merged. So, it is safe to execute
6106 * these preparation operations when rq is finally inserted or merged.
6108 static struct bfq_queue *bfq_init_rq(struct request *rq)
6110 struct request_queue *q = rq->q;
6111 struct bio *bio = rq->bio;
6112 struct bfq_data *bfqd = q->elevator->elevator_data;
6113 struct bfq_io_cq *bic;
6114 const int is_sync = rq_is_sync(rq);
6115 struct bfq_queue *bfqq;
6116 bool new_queue = false;
6117 bool bfqq_already_existing = false, split = false;
6119 if (unlikely(!rq->elv.icq))
6120 return NULL;
6123 * Assuming that elv.priv[1] is set only if everything is set
6124 * for this rq. This holds true, because this function is
6125 * invoked only for insertion or merging, and, after such
6126 * events, a request cannot be manipulated any longer before
6127 * being removed from bfq.
6129 if (rq->elv.priv[1])
6130 return rq->elv.priv[1];
6132 bic = icq_to_bic(rq->elv.icq);
6134 bfq_check_ioprio_change(bic, bio);
6136 bfq_bic_update_cgroup(bic, bio);
6138 bfqq = bfq_get_bfqq_handle_split(bfqd, bic, bio, false, is_sync,
6139 &new_queue);
6141 if (likely(!new_queue)) {
6142 /* If the queue was seeky for too long, break it apart. */
6143 if (bfq_bfqq_coop(bfqq) && bfq_bfqq_split_coop(bfqq)) {
6144 bfq_log_bfqq(bfqd, bfqq, "breaking apart bfqq");
6146 /* Update bic before losing reference to bfqq */
6147 if (bfq_bfqq_in_large_burst(bfqq))
6148 bic->saved_in_large_burst = true;
6150 bfqq = bfq_split_bfqq(bic, bfqq);
6151 split = true;
6153 if (!bfqq)
6154 bfqq = bfq_get_bfqq_handle_split(bfqd, bic, bio,
6155 true, is_sync,
6156 NULL);
6157 else
6158 bfqq_already_existing = true;
6162 bfqq->allocated++;
6163 bfqq->ref++;
6164 bfq_log_bfqq(bfqd, bfqq, "get_request %p: bfqq %p, %d",
6165 rq, bfqq, bfqq->ref);
6167 rq->elv.priv[0] = bic;
6168 rq->elv.priv[1] = bfqq;
6171 * If a bfq_queue has only one process reference, it is owned
6172 * by only this bic: we can then set bfqq->bic = bic. in
6173 * addition, if the queue has also just been split, we have to
6174 * resume its state.
6176 if (likely(bfqq != &bfqd->oom_bfqq) && bfqq_process_refs(bfqq) == 1) {
6177 bfqq->bic = bic;
6178 if (split) {
6180 * The queue has just been split from a shared
6181 * queue: restore the idle window and the
6182 * possible weight raising period.
6184 bfq_bfqq_resume_state(bfqq, bfqd, bic,
6185 bfqq_already_existing);
6190 * Consider bfqq as possibly belonging to a burst of newly
6191 * created queues only if:
6192 * 1) A burst is actually happening (bfqd->burst_size > 0)
6193 * or
6194 * 2) There is no other active queue. In fact, if, in
6195 * contrast, there are active queues not belonging to the
6196 * possible burst bfqq may belong to, then there is no gain
6197 * in considering bfqq as belonging to a burst, and
6198 * therefore in not weight-raising bfqq. See comments on
6199 * bfq_handle_burst().
6201 * This filtering also helps eliminating false positives,
6202 * occurring when bfqq does not belong to an actual large
6203 * burst, but some background task (e.g., a service) happens
6204 * to trigger the creation of new queues very close to when
6205 * bfqq and its possible companion queues are created. See
6206 * comments on bfq_handle_burst() for further details also on
6207 * this issue.
6209 if (unlikely(bfq_bfqq_just_created(bfqq) &&
6210 (bfqd->burst_size > 0 ||
6211 bfq_tot_busy_queues(bfqd) == 0)))
6212 bfq_handle_burst(bfqd, bfqq);
6214 return bfqq;
6217 static void bfq_idle_slice_timer_body(struct bfq_queue *bfqq)
6219 struct bfq_data *bfqd = bfqq->bfqd;
6220 enum bfqq_expiration reason;
6221 unsigned long flags;
6223 spin_lock_irqsave(&bfqd->lock, flags);
6224 bfq_clear_bfqq_wait_request(bfqq);
6226 if (bfqq != bfqd->in_service_queue) {
6227 spin_unlock_irqrestore(&bfqd->lock, flags);
6228 return;
6231 if (bfq_bfqq_budget_timeout(bfqq))
6233 * Also here the queue can be safely expired
6234 * for budget timeout without wasting
6235 * guarantees
6237 reason = BFQQE_BUDGET_TIMEOUT;
6238 else if (bfqq->queued[0] == 0 && bfqq->queued[1] == 0)
6240 * The queue may not be empty upon timer expiration,
6241 * because we may not disable the timer when the
6242 * first request of the in-service queue arrives
6243 * during disk idling.
6245 reason = BFQQE_TOO_IDLE;
6246 else
6247 goto schedule_dispatch;
6249 bfq_bfqq_expire(bfqd, bfqq, true, reason);
6251 schedule_dispatch:
6252 spin_unlock_irqrestore(&bfqd->lock, flags);
6253 bfq_schedule_dispatch(bfqd);
6257 * Handler of the expiration of the timer running if the in-service queue
6258 * is idling inside its time slice.
6260 static enum hrtimer_restart bfq_idle_slice_timer(struct hrtimer *timer)
6262 struct bfq_data *bfqd = container_of(timer, struct bfq_data,
6263 idle_slice_timer);
6264 struct bfq_queue *bfqq = bfqd->in_service_queue;
6267 * Theoretical race here: the in-service queue can be NULL or
6268 * different from the queue that was idling if a new request
6269 * arrives for the current queue and there is a full dispatch
6270 * cycle that changes the in-service queue. This can hardly
6271 * happen, but in the worst case we just expire a queue too
6272 * early.
6274 if (bfqq)
6275 bfq_idle_slice_timer_body(bfqq);
6277 return HRTIMER_NORESTART;
6280 static void __bfq_put_async_bfqq(struct bfq_data *bfqd,
6281 struct bfq_queue **bfqq_ptr)
6283 struct bfq_queue *bfqq = *bfqq_ptr;
6285 bfq_log(bfqd, "put_async_bfqq: %p", bfqq);
6286 if (bfqq) {
6287 bfq_bfqq_move(bfqd, bfqq, bfqd->root_group);
6289 bfq_log_bfqq(bfqd, bfqq, "put_async_bfqq: putting %p, %d",
6290 bfqq, bfqq->ref);
6291 bfq_put_queue(bfqq);
6292 *bfqq_ptr = NULL;
6297 * Release all the bfqg references to its async queues. If we are
6298 * deallocating the group these queues may still contain requests, so
6299 * we reparent them to the root cgroup (i.e., the only one that will
6300 * exist for sure until all the requests on a device are gone).
6302 void bfq_put_async_queues(struct bfq_data *bfqd, struct bfq_group *bfqg)
6304 int i, j;
6306 for (i = 0; i < 2; i++)
6307 for (j = 0; j < IOPRIO_BE_NR; j++)
6308 __bfq_put_async_bfqq(bfqd, &bfqg->async_bfqq[i][j]);
6310 __bfq_put_async_bfqq(bfqd, &bfqg->async_idle_bfqq);
6314 * See the comments on bfq_limit_depth for the purpose of
6315 * the depths set in the function. Return minimum shallow depth we'll use.
6317 static unsigned int bfq_update_depths(struct bfq_data *bfqd,
6318 struct sbitmap_queue *bt)
6320 unsigned int i, j, min_shallow = UINT_MAX;
6323 * In-word depths if no bfq_queue is being weight-raised:
6324 * leaving 25% of tags only for sync reads.
6326 * In next formulas, right-shift the value
6327 * (1U<<bt->sb.shift), instead of computing directly
6328 * (1U<<(bt->sb.shift - something)), to be robust against
6329 * any possible value of bt->sb.shift, without having to
6330 * limit 'something'.
6332 /* no more than 50% of tags for async I/O */
6333 bfqd->word_depths[0][0] = max((1U << bt->sb.shift) >> 1, 1U);
6335 * no more than 75% of tags for sync writes (25% extra tags
6336 * w.r.t. async I/O, to prevent async I/O from starving sync
6337 * writes)
6339 bfqd->word_depths[0][1] = max(((1U << bt->sb.shift) * 3) >> 2, 1U);
6342 * In-word depths in case some bfq_queue is being weight-
6343 * raised: leaving ~63% of tags for sync reads. This is the
6344 * highest percentage for which, in our tests, application
6345 * start-up times didn't suffer from any regression due to tag
6346 * shortage.
6348 /* no more than ~18% of tags for async I/O */
6349 bfqd->word_depths[1][0] = max(((1U << bt->sb.shift) * 3) >> 4, 1U);
6350 /* no more than ~37% of tags for sync writes (~20% extra tags) */
6351 bfqd->word_depths[1][1] = max(((1U << bt->sb.shift) * 6) >> 4, 1U);
6353 for (i = 0; i < 2; i++)
6354 for (j = 0; j < 2; j++)
6355 min_shallow = min(min_shallow, bfqd->word_depths[i][j]);
6357 return min_shallow;
6360 static void bfq_depth_updated(struct blk_mq_hw_ctx *hctx)
6362 struct bfq_data *bfqd = hctx->queue->elevator->elevator_data;
6363 struct blk_mq_tags *tags = hctx->sched_tags;
6364 unsigned int min_shallow;
6366 min_shallow = bfq_update_depths(bfqd, &tags->bitmap_tags);
6367 sbitmap_queue_min_shallow_depth(&tags->bitmap_tags, min_shallow);
6370 static int bfq_init_hctx(struct blk_mq_hw_ctx *hctx, unsigned int index)
6372 bfq_depth_updated(hctx);
6373 return 0;
6376 static void bfq_exit_queue(struct elevator_queue *e)
6378 struct bfq_data *bfqd = e->elevator_data;
6379 struct bfq_queue *bfqq, *n;
6381 hrtimer_cancel(&bfqd->idle_slice_timer);
6383 spin_lock_irq(&bfqd->lock);
6384 list_for_each_entry_safe(bfqq, n, &bfqd->idle_list, bfqq_list)
6385 bfq_deactivate_bfqq(bfqd, bfqq, false, false);
6386 spin_unlock_irq(&bfqd->lock);
6388 hrtimer_cancel(&bfqd->idle_slice_timer);
6390 /* release oom-queue reference to root group */
6391 bfqg_and_blkg_put(bfqd->root_group);
6393 #ifdef CONFIG_BFQ_GROUP_IOSCHED
6394 blkcg_deactivate_policy(bfqd->queue, &blkcg_policy_bfq);
6395 #else
6396 spin_lock_irq(&bfqd->lock);
6397 bfq_put_async_queues(bfqd, bfqd->root_group);
6398 kfree(bfqd->root_group);
6399 spin_unlock_irq(&bfqd->lock);
6400 #endif
6402 kfree(bfqd);
6405 static void bfq_init_root_group(struct bfq_group *root_group,
6406 struct bfq_data *bfqd)
6408 int i;
6410 #ifdef CONFIG_BFQ_GROUP_IOSCHED
6411 root_group->entity.parent = NULL;
6412 root_group->my_entity = NULL;
6413 root_group->bfqd = bfqd;
6414 #endif
6415 root_group->rq_pos_tree = RB_ROOT;
6416 for (i = 0; i < BFQ_IOPRIO_CLASSES; i++)
6417 root_group->sched_data.service_tree[i] = BFQ_SERVICE_TREE_INIT;
6418 root_group->sched_data.bfq_class_idle_last_service = jiffies;
6421 static int bfq_init_queue(struct request_queue *q, struct elevator_type *e)
6423 struct bfq_data *bfqd;
6424 struct elevator_queue *eq;
6426 eq = elevator_alloc(q, e);
6427 if (!eq)
6428 return -ENOMEM;
6430 bfqd = kzalloc_node(sizeof(*bfqd), GFP_KERNEL, q->node);
6431 if (!bfqd) {
6432 kobject_put(&eq->kobj);
6433 return -ENOMEM;
6435 eq->elevator_data = bfqd;
6437 spin_lock_irq(&q->queue_lock);
6438 q->elevator = eq;
6439 spin_unlock_irq(&q->queue_lock);
6442 * Our fallback bfqq if bfq_find_alloc_queue() runs into OOM issues.
6443 * Grab a permanent reference to it, so that the normal code flow
6444 * will not attempt to free it.
6446 bfq_init_bfqq(bfqd, &bfqd->oom_bfqq, NULL, 1, 0);
6447 bfqd->oom_bfqq.ref++;
6448 bfqd->oom_bfqq.new_ioprio = BFQ_DEFAULT_QUEUE_IOPRIO;
6449 bfqd->oom_bfqq.new_ioprio_class = IOPRIO_CLASS_BE;
6450 bfqd->oom_bfqq.entity.new_weight =
6451 bfq_ioprio_to_weight(bfqd->oom_bfqq.new_ioprio);
6453 /* oom_bfqq does not participate to bursts */
6454 bfq_clear_bfqq_just_created(&bfqd->oom_bfqq);
6457 * Trigger weight initialization, according to ioprio, at the
6458 * oom_bfqq's first activation. The oom_bfqq's ioprio and ioprio
6459 * class won't be changed any more.
6461 bfqd->oom_bfqq.entity.prio_changed = 1;
6463 bfqd->queue = q;
6465 INIT_LIST_HEAD(&bfqd->dispatch);
6467 hrtimer_init(&bfqd->idle_slice_timer, CLOCK_MONOTONIC,
6468 HRTIMER_MODE_REL);
6469 bfqd->idle_slice_timer.function = bfq_idle_slice_timer;
6471 bfqd->queue_weights_tree = RB_ROOT_CACHED;
6472 bfqd->num_groups_with_pending_reqs = 0;
6474 INIT_LIST_HEAD(&bfqd->active_list);
6475 INIT_LIST_HEAD(&bfqd->idle_list);
6476 INIT_HLIST_HEAD(&bfqd->burst_list);
6478 bfqd->hw_tag = -1;
6479 bfqd->nonrot_with_queueing = blk_queue_nonrot(bfqd->queue);
6481 bfqd->bfq_max_budget = bfq_default_max_budget;
6483 bfqd->bfq_fifo_expire[0] = bfq_fifo_expire[0];
6484 bfqd->bfq_fifo_expire[1] = bfq_fifo_expire[1];
6485 bfqd->bfq_back_max = bfq_back_max;
6486 bfqd->bfq_back_penalty = bfq_back_penalty;
6487 bfqd->bfq_slice_idle = bfq_slice_idle;
6488 bfqd->bfq_timeout = bfq_timeout;
6490 bfqd->bfq_requests_within_timer = 120;
6492 bfqd->bfq_large_burst_thresh = 8;
6493 bfqd->bfq_burst_interval = msecs_to_jiffies(180);
6495 bfqd->low_latency = true;
6498 * Trade-off between responsiveness and fairness.
6500 bfqd->bfq_wr_coeff = 30;
6501 bfqd->bfq_wr_rt_max_time = msecs_to_jiffies(300);
6502 bfqd->bfq_wr_max_time = 0;
6503 bfqd->bfq_wr_min_idle_time = msecs_to_jiffies(2000);
6504 bfqd->bfq_wr_min_inter_arr_async = msecs_to_jiffies(500);
6505 bfqd->bfq_wr_max_softrt_rate = 7000; /*
6506 * Approximate rate required
6507 * to playback or record a
6508 * high-definition compressed
6509 * video.
6511 bfqd->wr_busy_queues = 0;
6514 * Begin by assuming, optimistically, that the device peak
6515 * rate is equal to 2/3 of the highest reference rate.
6517 bfqd->rate_dur_prod = ref_rate[blk_queue_nonrot(bfqd->queue)] *
6518 ref_wr_duration[blk_queue_nonrot(bfqd->queue)];
6519 bfqd->peak_rate = ref_rate[blk_queue_nonrot(bfqd->queue)] * 2 / 3;
6521 spin_lock_init(&bfqd->lock);
6524 * The invocation of the next bfq_create_group_hierarchy
6525 * function is the head of a chain of function calls
6526 * (bfq_create_group_hierarchy->blkcg_activate_policy->
6527 * blk_mq_freeze_queue) that may lead to the invocation of the
6528 * has_work hook function. For this reason,
6529 * bfq_create_group_hierarchy is invoked only after all
6530 * scheduler data has been initialized, apart from the fields
6531 * that can be initialized only after invoking
6532 * bfq_create_group_hierarchy. This, in particular, enables
6533 * has_work to correctly return false. Of course, to avoid
6534 * other inconsistencies, the blk-mq stack must then refrain
6535 * from invoking further scheduler hooks before this init
6536 * function is finished.
6538 bfqd->root_group = bfq_create_group_hierarchy(bfqd, q->node);
6539 if (!bfqd->root_group)
6540 goto out_free;
6541 bfq_init_root_group(bfqd->root_group, bfqd);
6542 bfq_init_entity(&bfqd->oom_bfqq.entity, bfqd->root_group);
6544 wbt_disable_default(q);
6545 return 0;
6547 out_free:
6548 kfree(bfqd);
6549 kobject_put(&eq->kobj);
6550 return -ENOMEM;
6553 static void bfq_slab_kill(void)
6555 kmem_cache_destroy(bfq_pool);
6558 static int __init bfq_slab_setup(void)
6560 bfq_pool = KMEM_CACHE(bfq_queue, 0);
6561 if (!bfq_pool)
6562 return -ENOMEM;
6563 return 0;
6566 static ssize_t bfq_var_show(unsigned int var, char *page)
6568 return sprintf(page, "%u\n", var);
6571 static int bfq_var_store(unsigned long *var, const char *page)
6573 unsigned long new_val;
6574 int ret = kstrtoul(page, 10, &new_val);
6576 if (ret)
6577 return ret;
6578 *var = new_val;
6579 return 0;
6582 #define SHOW_FUNCTION(__FUNC, __VAR, __CONV) \
6583 static ssize_t __FUNC(struct elevator_queue *e, char *page) \
6585 struct bfq_data *bfqd = e->elevator_data; \
6586 u64 __data = __VAR; \
6587 if (__CONV == 1) \
6588 __data = jiffies_to_msecs(__data); \
6589 else if (__CONV == 2) \
6590 __data = div_u64(__data, NSEC_PER_MSEC); \
6591 return bfq_var_show(__data, (page)); \
6593 SHOW_FUNCTION(bfq_fifo_expire_sync_show, bfqd->bfq_fifo_expire[1], 2);
6594 SHOW_FUNCTION(bfq_fifo_expire_async_show, bfqd->bfq_fifo_expire[0], 2);
6595 SHOW_FUNCTION(bfq_back_seek_max_show, bfqd->bfq_back_max, 0);
6596 SHOW_FUNCTION(bfq_back_seek_penalty_show, bfqd->bfq_back_penalty, 0);
6597 SHOW_FUNCTION(bfq_slice_idle_show, bfqd->bfq_slice_idle, 2);
6598 SHOW_FUNCTION(bfq_max_budget_show, bfqd->bfq_user_max_budget, 0);
6599 SHOW_FUNCTION(bfq_timeout_sync_show, bfqd->bfq_timeout, 1);
6600 SHOW_FUNCTION(bfq_strict_guarantees_show, bfqd->strict_guarantees, 0);
6601 SHOW_FUNCTION(bfq_low_latency_show, bfqd->low_latency, 0);
6602 #undef SHOW_FUNCTION
6604 #define USEC_SHOW_FUNCTION(__FUNC, __VAR) \
6605 static ssize_t __FUNC(struct elevator_queue *e, char *page) \
6607 struct bfq_data *bfqd = e->elevator_data; \
6608 u64 __data = __VAR; \
6609 __data = div_u64(__data, NSEC_PER_USEC); \
6610 return bfq_var_show(__data, (page)); \
6612 USEC_SHOW_FUNCTION(bfq_slice_idle_us_show, bfqd->bfq_slice_idle);
6613 #undef USEC_SHOW_FUNCTION
6615 #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \
6616 static ssize_t \
6617 __FUNC(struct elevator_queue *e, const char *page, size_t count) \
6619 struct bfq_data *bfqd = e->elevator_data; \
6620 unsigned long __data, __min = (MIN), __max = (MAX); \
6621 int ret; \
6623 ret = bfq_var_store(&__data, (page)); \
6624 if (ret) \
6625 return ret; \
6626 if (__data < __min) \
6627 __data = __min; \
6628 else if (__data > __max) \
6629 __data = __max; \
6630 if (__CONV == 1) \
6631 *(__PTR) = msecs_to_jiffies(__data); \
6632 else if (__CONV == 2) \
6633 *(__PTR) = (u64)__data * NSEC_PER_MSEC; \
6634 else \
6635 *(__PTR) = __data; \
6636 return count; \
6638 STORE_FUNCTION(bfq_fifo_expire_sync_store, &bfqd->bfq_fifo_expire[1], 1,
6639 INT_MAX, 2);
6640 STORE_FUNCTION(bfq_fifo_expire_async_store, &bfqd->bfq_fifo_expire[0], 1,
6641 INT_MAX, 2);
6642 STORE_FUNCTION(bfq_back_seek_max_store, &bfqd->bfq_back_max, 0, INT_MAX, 0);
6643 STORE_FUNCTION(bfq_back_seek_penalty_store, &bfqd->bfq_back_penalty, 1,
6644 INT_MAX, 0);
6645 STORE_FUNCTION(bfq_slice_idle_store, &bfqd->bfq_slice_idle, 0, INT_MAX, 2);
6646 #undef STORE_FUNCTION
6648 #define USEC_STORE_FUNCTION(__FUNC, __PTR, MIN, MAX) \
6649 static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count)\
6651 struct bfq_data *bfqd = e->elevator_data; \
6652 unsigned long __data, __min = (MIN), __max = (MAX); \
6653 int ret; \
6655 ret = bfq_var_store(&__data, (page)); \
6656 if (ret) \
6657 return ret; \
6658 if (__data < __min) \
6659 __data = __min; \
6660 else if (__data > __max) \
6661 __data = __max; \
6662 *(__PTR) = (u64)__data * NSEC_PER_USEC; \
6663 return count; \
6665 USEC_STORE_FUNCTION(bfq_slice_idle_us_store, &bfqd->bfq_slice_idle, 0,
6666 UINT_MAX);
6667 #undef USEC_STORE_FUNCTION
6669 static ssize_t bfq_max_budget_store(struct elevator_queue *e,
6670 const char *page, size_t count)
6672 struct bfq_data *bfqd = e->elevator_data;
6673 unsigned long __data;
6674 int ret;
6676 ret = bfq_var_store(&__data, (page));
6677 if (ret)
6678 return ret;
6680 if (__data == 0)
6681 bfqd->bfq_max_budget = bfq_calc_max_budget(bfqd);
6682 else {
6683 if (__data > INT_MAX)
6684 __data = INT_MAX;
6685 bfqd->bfq_max_budget = __data;
6688 bfqd->bfq_user_max_budget = __data;
6690 return count;
6694 * Leaving this name to preserve name compatibility with cfq
6695 * parameters, but this timeout is used for both sync and async.
6697 static ssize_t bfq_timeout_sync_store(struct elevator_queue *e,
6698 const char *page, size_t count)
6700 struct bfq_data *bfqd = e->elevator_data;
6701 unsigned long __data;
6702 int ret;
6704 ret = bfq_var_store(&__data, (page));
6705 if (ret)
6706 return ret;
6708 if (__data < 1)
6709 __data = 1;
6710 else if (__data > INT_MAX)
6711 __data = INT_MAX;
6713 bfqd->bfq_timeout = msecs_to_jiffies(__data);
6714 if (bfqd->bfq_user_max_budget == 0)
6715 bfqd->bfq_max_budget = bfq_calc_max_budget(bfqd);
6717 return count;
6720 static ssize_t bfq_strict_guarantees_store(struct elevator_queue *e,
6721 const char *page, size_t count)
6723 struct bfq_data *bfqd = e->elevator_data;
6724 unsigned long __data;
6725 int ret;
6727 ret = bfq_var_store(&__data, (page));
6728 if (ret)
6729 return ret;
6731 if (__data > 1)
6732 __data = 1;
6733 if (!bfqd->strict_guarantees && __data == 1
6734 && bfqd->bfq_slice_idle < 8 * NSEC_PER_MSEC)
6735 bfqd->bfq_slice_idle = 8 * NSEC_PER_MSEC;
6737 bfqd->strict_guarantees = __data;
6739 return count;
6742 static ssize_t bfq_low_latency_store(struct elevator_queue *e,
6743 const char *page, size_t count)
6745 struct bfq_data *bfqd = e->elevator_data;
6746 unsigned long __data;
6747 int ret;
6749 ret = bfq_var_store(&__data, (page));
6750 if (ret)
6751 return ret;
6753 if (__data > 1)
6754 __data = 1;
6755 if (__data == 0 && bfqd->low_latency != 0)
6756 bfq_end_wr(bfqd);
6757 bfqd->low_latency = __data;
6759 return count;
6762 #define BFQ_ATTR(name) \
6763 __ATTR(name, 0644, bfq_##name##_show, bfq_##name##_store)
6765 static struct elv_fs_entry bfq_attrs[] = {
6766 BFQ_ATTR(fifo_expire_sync),
6767 BFQ_ATTR(fifo_expire_async),
6768 BFQ_ATTR(back_seek_max),
6769 BFQ_ATTR(back_seek_penalty),
6770 BFQ_ATTR(slice_idle),
6771 BFQ_ATTR(slice_idle_us),
6772 BFQ_ATTR(max_budget),
6773 BFQ_ATTR(timeout_sync),
6774 BFQ_ATTR(strict_guarantees),
6775 BFQ_ATTR(low_latency),
6776 __ATTR_NULL
6779 static struct elevator_type iosched_bfq_mq = {
6780 .ops = {
6781 .limit_depth = bfq_limit_depth,
6782 .prepare_request = bfq_prepare_request,
6783 .requeue_request = bfq_finish_requeue_request,
6784 .finish_request = bfq_finish_requeue_request,
6785 .exit_icq = bfq_exit_icq,
6786 .insert_requests = bfq_insert_requests,
6787 .dispatch_request = bfq_dispatch_request,
6788 .next_request = elv_rb_latter_request,
6789 .former_request = elv_rb_former_request,
6790 .allow_merge = bfq_allow_bio_merge,
6791 .bio_merge = bfq_bio_merge,
6792 .request_merge = bfq_request_merge,
6793 .requests_merged = bfq_requests_merged,
6794 .request_merged = bfq_request_merged,
6795 .has_work = bfq_has_work,
6796 .depth_updated = bfq_depth_updated,
6797 .init_hctx = bfq_init_hctx,
6798 .init_sched = bfq_init_queue,
6799 .exit_sched = bfq_exit_queue,
6802 .icq_size = sizeof(struct bfq_io_cq),
6803 .icq_align = __alignof__(struct bfq_io_cq),
6804 .elevator_attrs = bfq_attrs,
6805 .elevator_name = "bfq",
6806 .elevator_owner = THIS_MODULE,
6808 MODULE_ALIAS("bfq-iosched");
6810 static int __init bfq_init(void)
6812 int ret;
6814 #ifdef CONFIG_BFQ_GROUP_IOSCHED
6815 ret = blkcg_policy_register(&blkcg_policy_bfq);
6816 if (ret)
6817 return ret;
6818 #endif
6820 ret = -ENOMEM;
6821 if (bfq_slab_setup())
6822 goto err_pol_unreg;
6825 * Times to load large popular applications for the typical
6826 * systems installed on the reference devices (see the
6827 * comments before the definition of the next
6828 * array). Actually, we use slightly lower values, as the
6829 * estimated peak rate tends to be smaller than the actual
6830 * peak rate. The reason for this last fact is that estimates
6831 * are computed over much shorter time intervals than the long
6832 * intervals typically used for benchmarking. Why? First, to
6833 * adapt more quickly to variations. Second, because an I/O
6834 * scheduler cannot rely on a peak-rate-evaluation workload to
6835 * be run for a long time.
6837 ref_wr_duration[0] = msecs_to_jiffies(7000); /* actually 8 sec */
6838 ref_wr_duration[1] = msecs_to_jiffies(2500); /* actually 3 sec */
6840 ret = elv_register(&iosched_bfq_mq);
6841 if (ret)
6842 goto slab_kill;
6844 return 0;
6846 slab_kill:
6847 bfq_slab_kill();
6848 err_pol_unreg:
6849 #ifdef CONFIG_BFQ_GROUP_IOSCHED
6850 blkcg_policy_unregister(&blkcg_policy_bfq);
6851 #endif
6852 return ret;
6855 static void __exit bfq_exit(void)
6857 elv_unregister(&iosched_bfq_mq);
6858 #ifdef CONFIG_BFQ_GROUP_IOSCHED
6859 blkcg_policy_unregister(&blkcg_policy_bfq);
6860 #endif
6861 bfq_slab_kill();
6864 module_init(bfq_init);
6865 module_exit(bfq_exit);
6867 MODULE_AUTHOR("Paolo Valente");
6868 MODULE_LICENSE("GPL");
6869 MODULE_DESCRIPTION("MQ Budget Fair Queueing I/O Scheduler");