block, bfq: always protect newly-created queues from existing active queues
[linux-block.git] / block / bfq-iosched.h
CommitLineData
ea25da48
PV
1/*
2 * Header file for the BFQ I/O scheduler: data structures and
3 * prototypes of interface functions among BFQ components.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 */
15#ifndef _BFQ_H
16#define _BFQ_H
17
18#include <linux/blktrace_api.h>
19#include <linux/hrtimer.h>
20#include <linux/blk-cgroup.h>
21
22#define BFQ_IOPRIO_CLASSES 3
23#define BFQ_CL_IDLE_TIMEOUT (HZ/5)
24
25#define BFQ_MIN_WEIGHT 1
26#define BFQ_MAX_WEIGHT 1000
27#define BFQ_WEIGHT_CONVERSION_COEFF 10
28
29#define BFQ_DEFAULT_QUEUE_IOPRIO 4
30
31#define BFQ_WEIGHT_LEGACY_DFL 100
32#define BFQ_DEFAULT_GRP_IOPRIO 0
33#define BFQ_DEFAULT_GRP_CLASS IOPRIO_CLASS_BE
34
35/*
36 * Soft real-time applications are extremely more latency sensitive
37 * than interactive ones. Over-raise the weight of the former to
38 * privilege them against the latter.
39 */
40#define BFQ_SOFTRT_WEIGHT_FACTOR 100
41
42struct bfq_entity;
43
44/**
45 * struct bfq_service_tree - per ioprio_class service tree.
46 *
47 * Each service tree represents a B-WF2Q+ scheduler on its own. Each
48 * ioprio_class has its own independent scheduler, and so its own
49 * bfq_service_tree. All the fields are protected by the queue lock
50 * of the containing bfqd.
51 */
52struct bfq_service_tree {
53 /* tree for active entities (i.e., those backlogged) */
54 struct rb_root active;
38c91407 55 /* tree for idle entities (i.e., not backlogged, with V < F_i)*/
ea25da48
PV
56 struct rb_root idle;
57
58 /* idle entity with minimum F_i */
59 struct bfq_entity *first_idle;
60 /* idle entity with maximum F_i */
61 struct bfq_entity *last_idle;
62
63 /* scheduler virtual time */
64 u64 vtime;
65 /* scheduler weight sum; active and idle entities contribute to it */
66 unsigned long wsum;
67};
68
69/**
70 * struct bfq_sched_data - multi-class scheduler.
71 *
72 * bfq_sched_data is the basic scheduler queue. It supports three
73 * ioprio_classes, and can be used either as a toplevel queue or as an
46d556e6 74 * intermediate queue in a hierarchical setup.
ea25da48
PV
75 *
76 * The supported ioprio_classes are the same as in CFQ, in descending
77 * priority order, IOPRIO_CLASS_RT, IOPRIO_CLASS_BE, IOPRIO_CLASS_IDLE.
78 * Requests from higher priority queues are served before all the
79 * requests from lower priority queues; among requests of the same
80 * queue requests are served according to B-WF2Q+.
46d556e6
PV
81 *
82 * The schedule is implemented by the service trees, plus the field
83 * @next_in_service, which points to the entity on the active trees
84 * that will be served next, if 1) no changes in the schedule occurs
85 * before the current in-service entity is expired, 2) the in-service
86 * queue becomes idle when it expires, and 3) if the entity pointed by
87 * in_service_entity is not a queue, then the in-service child entity
88 * of the entity pointed by in_service_entity becomes idle on
89 * expiration. This peculiar definition allows for the following
90 * optimization, not yet exploited: while a given entity is still in
91 * service, we already know which is the best candidate for next
92 * service among the other active entitities in the same parent
93 * entity. We can then quickly compare the timestamps of the
94 * in-service entity with those of such best candidate.
95 *
96 * All fields are protected by the lock of the containing bfqd.
ea25da48
PV
97 */
98struct bfq_sched_data {
99 /* entity in service */
100 struct bfq_entity *in_service_entity;
101 /* head-of-line entity (see comments above) */
102 struct bfq_entity *next_in_service;
103 /* array of service trees, one per ioprio_class */
104 struct bfq_service_tree service_tree[BFQ_IOPRIO_CLASSES];
105 /* last time CLASS_IDLE was served */
106 unsigned long bfq_class_idle_last_service;
107
108};
109
110/**
2d29c9f8 111 * struct bfq_weight_counter - counter of the number of all active queues
ea25da48
PV
112 * with a given weight.
113 */
114struct bfq_weight_counter {
2d29c9f8
FM
115 unsigned int weight; /* weight of the queues this counter refers to */
116 unsigned int num_active; /* nr of active queues with this weight */
ea25da48 117 /*
2d29c9f8 118 * Weights tree member (see bfq_data's @queue_weights_tree)
ea25da48
PV
119 */
120 struct rb_node weights_node;
121};
122
123/**
124 * struct bfq_entity - schedulable entity.
125 *
126 * A bfq_entity is used to represent either a bfq_queue (leaf node in the
127 * cgroup hierarchy) or a bfq_group into the upper level scheduler. Each
128 * entity belongs to the sched_data of the parent group in the cgroup
129 * hierarchy. Non-leaf entities have also their own sched_data, stored
130 * in @my_sched_data.
131 *
132 * Each entity stores independently its priority values; this would
133 * allow different weights on different devices, but this
134 * functionality is not exported to userspace by now. Priorities and
135 * weights are updated lazily, first storing the new values into the
136 * new_* fields, then setting the @prio_changed flag. As soon as
137 * there is a transition in the entity state that allows the priority
138 * update to take place the effective and the requested priority
139 * values are synchronized.
140 *
141 * Unless cgroups are used, the weight value is calculated from the
142 * ioprio to export the same interface as CFQ. When dealing with
143 * ``well-behaved'' queues (i.e., queues that do not spend too much
144 * time to consume their budget and have true sequential behavior, and
145 * when there are no external factors breaking anticipation) the
146 * relative weights at each level of the cgroups hierarchy should be
147 * guaranteed. All the fields are protected by the queue lock of the
148 * containing bfqd.
149 */
150struct bfq_entity {
151 /* service_tree member */
152 struct rb_node rb_node;
ea25da48
PV
153
154 /*
155 * Flag, true if the entity is on a tree (either the active or
156 * the idle one of its service_tree) or is in service.
157 */
158 bool on_st;
159
160 /* B-WF2Q+ start and finish timestamps [sectors/weight] */
161 u64 start, finish;
162
163 /* tree the entity is enqueued into; %NULL if not on a tree */
164 struct rb_root *tree;
165
166 /*
167 * minimum start time of the (active) subtree rooted at this
168 * entity; used for O(log N) lookups into active trees
169 */
170 u64 min_start;
171
172 /* amount of service received during the last service slot */
173 int service;
174
175 /* budget, used also to calculate F_i: F_i = S_i + @budget / @weight */
176 int budget;
177
178 /* weight of the queue */
179 int weight;
180 /* next weight if a change is in progress */
181 int new_weight;
182
183 /* original weight, used to implement weight boosting */
184 int orig_weight;
185
186 /* parent entity, for hierarchical scheduling */
187 struct bfq_entity *parent;
188
189 /*
190 * For non-leaf nodes in the hierarchy, the associated
191 * scheduler queue, %NULL on leaf nodes.
192 */
193 struct bfq_sched_data *my_sched_data;
194 /* the scheduler queue this entity belongs to */
195 struct bfq_sched_data *sched_data;
196
197 /* flag, set to request a weight, ioprio or ioprio_class change */
198 int prio_changed;
ba7aeae5
PV
199
200 /* flag, set if the entity is counted in groups_with_pending_reqs */
201 bool in_groups_with_pending_reqs;
ea25da48
PV
202};
203
204struct bfq_group;
205
206/**
207 * struct bfq_ttime - per process thinktime stats.
208 */
209struct bfq_ttime {
210 /* completion time of the last request */
211 u64 last_end_request;
212
213 /* total process thinktime */
214 u64 ttime_total;
215 /* number of thinktime samples */
216 unsigned long ttime_samples;
217 /* average process thinktime */
218 u64 ttime_mean;
219};
220
221/**
222 * struct bfq_queue - leaf schedulable entity.
223 *
224 * A bfq_queue is a leaf request queue; it can be associated with an
225 * io_context or more, if it is async or shared between cooperating
226 * processes. @cgroup holds a reference to the cgroup, to be sure that it
227 * does not disappear while a bfqq still references it (mostly to avoid
228 * races between request issuing and task migration followed by cgroup
229 * destruction).
230 * All the fields are protected by the queue lock of the containing bfqd.
231 */
232struct bfq_queue {
233 /* reference counter */
234 int ref;
235 /* parent bfq_data */
236 struct bfq_data *bfqd;
237
238 /* current ioprio and ioprio class */
239 unsigned short ioprio, ioprio_class;
240 /* next ioprio and ioprio class if a change is in progress */
241 unsigned short new_ioprio, new_ioprio_class;
242
2341d662
PV
243 /* last total-service-time sample, see bfq_update_inject_limit() */
244 u64 last_serv_time_ns;
245 /* limit for request injection */
246 unsigned int inject_limit;
247 /* last time the inject limit has been decreased, in jiffies */
248 unsigned long decrease_time_jif;
249
ea25da48
PV
250 /*
251 * Shared bfq_queue if queue is cooperating with one or more
252 * other queues.
253 */
254 struct bfq_queue *new_bfqq;
255 /* request-position tree member (see bfq_group's @rq_pos_tree) */
256 struct rb_node pos_node;
257 /* request-position tree root (see bfq_group's @rq_pos_tree) */
258 struct rb_root *pos_root;
259
260 /* sorted list of pending requests */
261 struct rb_root sort_list;
262 /* if fifo isn't expired, next request to serve */
263 struct request *next_rq;
264 /* number of sync and async requests queued */
265 int queued[2];
266 /* number of requests currently allocated */
267 int allocated;
268 /* number of pending metadata requests */
269 int meta_pending;
270 /* fifo list of requests in sort_list */
271 struct list_head fifo;
272
273 /* entity representing this queue in the scheduler */
274 struct bfq_entity entity;
275
2d29c9f8
FM
276 /* pointer to the weight counter associated with this entity */
277 struct bfq_weight_counter *weight_counter;
278
ea25da48
PV
279 /* maximum budget allowed from the feedback mechanism */
280 int max_budget;
281 /* budget expiration (in jiffies) */
282 unsigned long budget_timeout;
283
284 /* number of requests on the dispatch list or inside driver */
285 int dispatched;
286
287 /* status flags */
288 unsigned long flags;
289
290 /* node for active/idle bfqq list inside parent bfqd */
291 struct list_head bfqq_list;
292
293 /* associated @bfq_ttime struct */
294 struct bfq_ttime ttime;
295
296 /* bit vector: a 1 for each seeky requests in history */
297 u32 seek_history;
298
299 /* node for the device's burst list */
300 struct hlist_node burst_list_node;
301
302 /* position of the last request enqueued */
303 sector_t last_request_pos;
304
305 /* Number of consecutive pairs of request completion and
306 * arrival, such that the queue becomes idle after the
307 * completion, but the next request arrives within an idle
308 * time slice; used only if the queue's IO_bound flag has been
309 * cleared.
310 */
311 unsigned int requests_within_timer;
312
313 /* pid of the process owning the queue, used for logging purposes */
314 pid_t pid;
315
316 /*
317 * Pointer to the bfq_io_cq owning the bfq_queue, set to %NULL
318 * if the queue is shared.
319 */
320 struct bfq_io_cq *bic;
321
322 /* current maximum weight-raising time for this queue */
323 unsigned long wr_cur_max_time;
324 /*
325 * Minimum time instant such that, only if a new request is
326 * enqueued after this time instant in an idle @bfq_queue with
327 * no outstanding requests, then the task associated with the
328 * queue it is deemed as soft real-time (see the comments on
329 * the function bfq_bfqq_softrt_next_start())
330 */
331 unsigned long soft_rt_next_start;
332 /*
333 * Start time of the current weight-raising period if
334 * the @bfq-queue is being weight-raised, otherwise
335 * finish time of the last weight-raising period.
336 */
337 unsigned long last_wr_start_finish;
338 /* factor by which the weight of this queue is multiplied */
339 unsigned int wr_coeff;
340 /*
341 * Time of the last transition of the @bfq_queue from idle to
342 * backlogged.
343 */
344 unsigned long last_idle_bklogged;
345 /*
346 * Cumulative service received from the @bfq_queue since the
347 * last transition from idle to backlogged.
348 */
349 unsigned long service_from_backlogged;
8a8747dc
PV
350 /*
351 * Cumulative service received from the @bfq_queue since its
352 * last transition to weight-raised state.
353 */
354 unsigned long service_from_wr;
ea25da48
PV
355
356 /*
357 * Value of wr start time when switching to soft rt
358 */
359 unsigned long wr_start_at_switch_to_srt;
360
361 unsigned long split_time; /* time of last split */
7b8fa3b9
PV
362
363 unsigned long first_IO_time; /* time of first I/O for this queue */
d0edc247
PV
364
365 /* max service rate measured so far */
366 u32 max_service_rate;
ea25da48
PV
367};
368
369/**
370 * struct bfq_io_cq - per (request_queue, io_context) structure.
371 */
372struct bfq_io_cq {
373 /* associated io_cq structure */
374 struct io_cq icq; /* must be the first member */
375 /* array of two process queues, the sync and the async */
376 struct bfq_queue *bfqq[2];
377 /* per (request_queue, blkcg) ioprio */
378 int ioprio;
379#ifdef CONFIG_BFQ_GROUP_IOSCHED
380 uint64_t blkcg_serial_nr; /* the current blkcg serial */
381#endif
382 /*
d5be3fef
PV
383 * Snapshot of the has_short_time flag before merging; taken
384 * to remember its value while the queue is merged, so as to
385 * be able to restore it in case of split.
ea25da48 386 */
d5be3fef 387 bool saved_has_short_ttime;
ea25da48
PV
388 /*
389 * Same purpose as the previous two fields for the I/O bound
390 * classification of a queue.
391 */
392 bool saved_IO_bound;
393
394 /*
395 * Same purpose as the previous fields for the value of the
396 * field keeping the queue's belonging to a large burst
397 */
398 bool saved_in_large_burst;
399 /*
400 * True if the queue belonged to a burst list before its merge
401 * with another cooperating queue.
402 */
403 bool was_in_burst_list;
404
405 /*
406 * Similar to previous fields: save wr information.
407 */
408 unsigned long saved_wr_coeff;
409 unsigned long saved_last_wr_start_finish;
410 unsigned long saved_wr_start_at_switch_to_srt;
411 unsigned int saved_wr_cur_max_time;
412 struct bfq_ttime saved_ttime;
413};
414
ea25da48
PV
415/**
416 * struct bfq_data - per-device data structure.
417 *
418 * All the fields are protected by @lock.
419 */
420struct bfq_data {
421 /* device request queue */
422 struct request_queue *queue;
423 /* dispatch queue */
424 struct list_head dispatch;
425
426 /* root bfq_group for the device */
427 struct bfq_group *root_group;
428
429 /*
430 * rbtree of weight counters of @bfq_queues, sorted by
431 * weight. Used to keep track of whether all @bfq_queues have
432 * the same weight. The tree contains one counter for each
433 * distinct weight associated to some active and not
434 * weight-raised @bfq_queue (see the comments to the functions
435 * bfq_weights_tree_[add|remove] for further details).
436 */
fb53ac6c 437 struct rb_root_cached queue_weights_tree;
ba7aeae5 438
ea25da48 439 /*
ba7aeae5
PV
440 * Number of groups with at least one descendant process that
441 * has at least one request waiting for completion. Note that
442 * this accounts for also requests already dispatched, but not
443 * yet completed. Therefore this number of groups may differ
444 * (be larger) than the number of active groups, as a group is
445 * considered active only if its corresponding entity has
446 * descendant queues with at least one request queued. This
447 * number is used to decide whether a scenario is symmetric.
448 * For a detailed explanation see comments on the computation
449 * of the variable asymmetric_scenario in the function
450 * bfq_better_to_idle().
451 *
452 * However, it is hard to compute this number exactly, for
453 * groups with multiple descendant processes. Consider a group
454 * that is inactive, i.e., that has no descendant process with
455 * pending I/O inside BFQ queues. Then suppose that
456 * num_groups_with_pending_reqs is still accounting for this
457 * group, because the group has descendant processes with some
458 * I/O request still in flight. num_groups_with_pending_reqs
459 * should be decremented when the in-flight request of the
460 * last descendant process is finally completed (assuming that
461 * nothing else has changed for the group in the meantime, in
462 * terms of composition of the group and active/inactive state of child
463 * groups and processes). To accomplish this, an additional
464 * pending-request counter must be added to entities, and must
465 * be updated correctly. To avoid this additional field and operations,
466 * we resort to the following tradeoff between simplicity and
467 * accuracy: for an inactive group that is still counted in
468 * num_groups_with_pending_reqs, we decrement
469 * num_groups_with_pending_reqs when the first descendant
470 * process of the group remains with no request waiting for
471 * completion.
472 *
473 * Even this simpler decrement strategy requires a little
474 * carefulness: to avoid multiple decrements, we flag a group,
475 * more precisely an entity representing a group, as still
476 * counted in num_groups_with_pending_reqs when it becomes
477 * inactive. Then, when the first descendant queue of the
478 * entity remains with no request waiting for completion,
479 * num_groups_with_pending_reqs is decremented, and this flag
480 * is reset. After this flag is reset for the entity,
481 * num_groups_with_pending_reqs won't be decremented any
482 * longer in case a new descendant queue of the entity remains
483 * with no request waiting for completion.
ea25da48 484 */
ba7aeae5 485 unsigned int num_groups_with_pending_reqs;
ea25da48
PV
486
487 /*
73d58118
PV
488 * Per-class (RT, BE, IDLE) number of bfq_queues containing
489 * requests (including the queue in service, even if it is
490 * idling).
ea25da48 491 */
73d58118 492 unsigned int busy_queues[3];
ea25da48
PV
493 /* number of weight-raised busy @bfq_queues */
494 int wr_busy_queues;
495 /* number of queued requests */
496 int queued;
497 /* number of requests dispatched and waiting for completion */
498 int rq_in_driver;
499
8cacc5ab
PV
500 /* true if the device is non rotational and performs queueing */
501 bool nonrot_with_queueing;
502
ea25da48
PV
503 /*
504 * Maximum number of requests in driver in the last
505 * @hw_tag_samples completed requests.
506 */
507 int max_rq_in_driver;
508 /* number of samples used to calculate hw_tag */
509 int hw_tag_samples;
510 /* flag set to one if the driver is showing a queueing behavior */
511 int hw_tag;
512
513 /* number of budgets assigned */
514 int budgets_assigned;
515
516 /*
517 * Timer set when idling (waiting) for the next request from
518 * the queue in service.
519 */
520 struct hrtimer idle_slice_timer;
521
522 /* bfq_queue in service */
523 struct bfq_queue *in_service_queue;
524
525 /* on-disk position of the last served request */
526 sector_t last_position;
527
058fdecc
PV
528 /* position of the last served request for the in-service queue */
529 sector_t in_serv_last_pos;
530
ea25da48
PV
531 /* time of last request completion (ns) */
532 u64 last_completion;
533
2341d662
PV
534 /* time of last transition from empty to non-empty (ns) */
535 u64 last_empty_occupied_ns;
536
537 /*
538 * Flag set to activate the sampling of the total service time
539 * of a just-arrived first I/O request (see
540 * bfq_update_inject_limit()). This will cause the setting of
541 * waited_rq when the request is finally dispatched.
542 */
543 bool wait_dispatch;
544 /*
545 * If set, then bfq_update_inject_limit() is invoked when
546 * waited_rq is eventually completed.
547 */
548 struct request *waited_rq;
549 /*
550 * True if some request has been injected during the last service hole.
551 */
552 bool rqs_injected;
553
ea25da48
PV
554 /* time of first rq dispatch in current observation interval (ns) */
555 u64 first_dispatch;
556 /* time of last rq dispatch in current observation interval (ns) */
557 u64 last_dispatch;
558
559 /* beginning of the last budget */
560 ktime_t last_budget_start;
561 /* beginning of the last idle slice */
562 ktime_t last_idling_start;
2341d662 563 unsigned long last_idling_start_jiffies;
ea25da48
PV
564
565 /* number of samples in current observation interval */
566 int peak_rate_samples;
567 /* num of samples of seq dispatches in current observation interval */
568 u32 sequential_samples;
569 /* total num of sectors transferred in current observation interval */
570 u64 tot_sectors_dispatched;
571 /* max rq size seen during current observation interval (sectors) */
572 u32 last_rq_max_size;
573 /* time elapsed from first dispatch in current observ. interval (us) */
574 u64 delta_from_first;
575 /*
576 * Current estimate of the device peak rate, measured in
bc56e2ca 577 * [(sectors/usec) / 2^BFQ_RATE_SHIFT]. The left-shift by
ea25da48
PV
578 * BFQ_RATE_SHIFT is performed to increase precision in
579 * fixed-point calculations.
580 */
581 u32 peak_rate;
582
583 /* maximum budget allotted to a bfq_queue before rescheduling */
584 int bfq_max_budget;
585
586 /* list of all the bfq_queues active on the device */
587 struct list_head active_list;
588 /* list of all the bfq_queues idle on the device */
589 struct list_head idle_list;
590
591 /*
592 * Timeout for async/sync requests; when it fires, requests
593 * are served in fifo order.
594 */
595 u64 bfq_fifo_expire[2];
596 /* weight of backward seeks wrt forward ones */
597 unsigned int bfq_back_penalty;
598 /* maximum allowed backward seek */
599 unsigned int bfq_back_max;
600 /* maximum idling time */
601 u32 bfq_slice_idle;
602
603 /* user-configured max budget value (0 for auto-tuning) */
604 int bfq_user_max_budget;
605 /*
606 * Timeout for bfq_queues to consume their budget; used to
607 * prevent seeky queues from imposing long latencies to
608 * sequential or quasi-sequential ones (this also implies that
609 * seeky queues cannot receive guarantees in the service
610 * domain; after a timeout they are charged for the time they
611 * have been in service, to preserve fairness among them, but
612 * without service-domain guarantees).
613 */
614 unsigned int bfq_timeout;
615
616 /*
617 * Number of consecutive requests that must be issued within
618 * the idle time slice to set again idling to a queue which
619 * was marked as non-I/O-bound (see the definition of the
620 * IO_bound flag for further details).
621 */
622 unsigned int bfq_requests_within_timer;
623
624 /*
625 * Force device idling whenever needed to provide accurate
626 * service guarantees, without caring about throughput
627 * issues. CAVEAT: this may even increase latencies, in case
628 * of useless idling for processes that did stop doing I/O.
629 */
630 bool strict_guarantees;
631
632 /*
633 * Last time at which a queue entered the current burst of
634 * queues being activated shortly after each other; for more
635 * details about this and the following parameters related to
636 * a burst of activations, see the comments on the function
637 * bfq_handle_burst.
638 */
639 unsigned long last_ins_in_burst;
640 /*
641 * Reference time interval used to decide whether a queue has
642 * been activated shortly after @last_ins_in_burst.
643 */
644 unsigned long bfq_burst_interval;
645 /* number of queues in the current burst of queue activations */
646 int burst_size;
647
648 /* common parent entity for the queues in the burst */
649 struct bfq_entity *burst_parent_entity;
650 /* Maximum burst size above which the current queue-activation
651 * burst is deemed as 'large'.
652 */
653 unsigned long bfq_large_burst_thresh;
654 /* true if a large queue-activation burst is in progress */
655 bool large_burst;
656 /*
657 * Head of the burst list (as for the above fields, more
658 * details in the comments on the function bfq_handle_burst).
659 */
660 struct hlist_head burst_list;
661
662 /* if set to true, low-latency heuristics are enabled */
663 bool low_latency;
664 /*
665 * Maximum factor by which the weight of a weight-raised queue
666 * is multiplied.
667 */
668 unsigned int bfq_wr_coeff;
669 /* maximum duration of a weight-raising period (jiffies) */
670 unsigned int bfq_wr_max_time;
671
672 /* Maximum weight-raising duration for soft real-time processes */
673 unsigned int bfq_wr_rt_max_time;
674 /*
675 * Minimum idle period after which weight-raising may be
676 * reactivated for a queue (in jiffies).
677 */
678 unsigned int bfq_wr_min_idle_time;
679 /*
680 * Minimum period between request arrivals after which
681 * weight-raising may be reactivated for an already busy async
682 * queue (in jiffies).
683 */
684 unsigned long bfq_wr_min_inter_arr_async;
685
686 /* Max service-rate for a soft real-time queue, in sectors/sec */
687 unsigned int bfq_wr_max_softrt_rate;
688 /*
e24f1c24
PV
689 * Cached value of the product ref_rate*ref_wr_duration, used
690 * for computing the maximum duration of weight raising
691 * automatically.
ea25da48 692 */
e24f1c24 693 u64 rate_dur_prod;
ea25da48
PV
694
695 /* fallback dummy bfqq for extreme OOM conditions */
696 struct bfq_queue oom_bfqq;
697
698 spinlock_t lock;
699
700 /*
701 * bic associated with the task issuing current bio for
702 * merging. This and the next field are used as a support to
703 * be able to perform the bic lookup, needed by bio-merge
704 * functions, before the scheduler lock is taken, and thus
705 * avoid taking the request-queue lock while the scheduler
706 * lock is being held.
707 */
708 struct bfq_io_cq *bio_bic;
709 /* bfqq associated with the task issuing current bio for merging */
710 struct bfq_queue *bio_bfqq;
a52a69ea 711
a52a69ea
PV
712 /*
713 * Depth limits used in bfq_limit_depth (see comments on the
714 * function)
715 */
716 unsigned int word_depths[2][2];
ea25da48
PV
717};
718
719enum bfqq_state_flags {
720 BFQQF_just_created = 0, /* queue just allocated */
721 BFQQF_busy, /* has requests or is in service */
722 BFQQF_wait_request, /* waiting for a request */
723 BFQQF_non_blocking_wait_rq, /*
724 * waiting for a request
725 * without idling the device
726 */
727 BFQQF_fifo_expire, /* FIFO checked in this slice */
d5be3fef 728 BFQQF_has_short_ttime, /* queue has a short think time */
ea25da48
PV
729 BFQQF_sync, /* synchronous queue */
730 BFQQF_IO_bound, /*
731 * bfqq has timed-out at least once
732 * having consumed at most 2/10 of
733 * its budget
734 */
735 BFQQF_in_large_burst, /*
736 * bfqq activated in a large burst,
737 * see comments to bfq_handle_burst.
738 */
739 BFQQF_softrt_update, /*
740 * may need softrt-next-start
741 * update
742 */
743 BFQQF_coop, /* bfqq is shared */
744 BFQQF_split_coop /* shared bfqq will be split */
745};
746
747#define BFQ_BFQQ_FNS(name) \
748void bfq_mark_bfqq_##name(struct bfq_queue *bfqq); \
749void bfq_clear_bfqq_##name(struct bfq_queue *bfqq); \
750int bfq_bfqq_##name(const struct bfq_queue *bfqq);
751
752BFQ_BFQQ_FNS(just_created);
753BFQ_BFQQ_FNS(busy);
754BFQ_BFQQ_FNS(wait_request);
755BFQ_BFQQ_FNS(non_blocking_wait_rq);
756BFQ_BFQQ_FNS(fifo_expire);
d5be3fef 757BFQ_BFQQ_FNS(has_short_ttime);
ea25da48
PV
758BFQ_BFQQ_FNS(sync);
759BFQ_BFQQ_FNS(IO_bound);
760BFQ_BFQQ_FNS(in_large_burst);
761BFQ_BFQQ_FNS(coop);
762BFQ_BFQQ_FNS(split_coop);
763BFQ_BFQQ_FNS(softrt_update);
764#undef BFQ_BFQQ_FNS
765
766/* Expiration reasons. */
767enum bfqq_expiration {
768 BFQQE_TOO_IDLE = 0, /*
769 * queue has been idling for
770 * too long
771 */
772 BFQQE_BUDGET_TIMEOUT, /* budget took too long to be used */
773 BFQQE_BUDGET_EXHAUSTED, /* budget consumed */
774 BFQQE_NO_MORE_REQUESTS, /* the queue has no more requests */
775 BFQQE_PREEMPTED /* preemption in progress */
776};
777
778struct bfqg_stats {
a33801e8 779#if defined(CONFIG_BFQ_GROUP_IOSCHED) && defined(CONFIG_DEBUG_BLK_CGROUP)
ea25da48
PV
780 /* number of ios merged */
781 struct blkg_rwstat merged;
782 /* total time spent on device in ns, may not be accurate w/ queueing */
783 struct blkg_rwstat service_time;
784 /* total time spent waiting in scheduler queue in ns */
785 struct blkg_rwstat wait_time;
786 /* number of IOs queued up */
787 struct blkg_rwstat queued;
788 /* total disk time and nr sectors dispatched by this group */
789 struct blkg_stat time;
790 /* sum of number of ios queued across all samples */
791 struct blkg_stat avg_queue_size_sum;
792 /* count of samples taken for average */
793 struct blkg_stat avg_queue_size_samples;
794 /* how many times this group has been removed from service tree */
795 struct blkg_stat dequeue;
796 /* total time spent waiting for it to be assigned a timeslice. */
797 struct blkg_stat group_wait_time;
798 /* time spent idling for this blkcg_gq */
799 struct blkg_stat idle_time;
800 /* total time with empty current active q with other requests queued */
801 struct blkg_stat empty_time;
802 /* fields after this shouldn't be cleared on stat reset */
84c7afce
OS
803 u64 start_group_wait_time;
804 u64 start_idle_time;
805 u64 start_empty_time;
ea25da48 806 uint16_t flags;
a33801e8 807#endif /* CONFIG_BFQ_GROUP_IOSCHED && CONFIG_DEBUG_BLK_CGROUP */
ea25da48
PV
808};
809
810#ifdef CONFIG_BFQ_GROUP_IOSCHED
811
812/*
813 * struct bfq_group_data - per-blkcg storage for the blkio subsystem.
814 *
815 * @ps: @blkcg_policy_storage that this structure inherits
816 * @weight: weight of the bfq_group
817 */
818struct bfq_group_data {
819 /* must be the first member */
820 struct blkcg_policy_data pd;
821
822 unsigned int weight;
823};
824
825/**
826 * struct bfq_group - per (device, cgroup) data structure.
827 * @entity: schedulable entity to insert into the parent group sched_data.
828 * @sched_data: own sched_data, to contain child entities (they may be
829 * both bfq_queues and bfq_groups).
830 * @bfqd: the bfq_data for the device this group acts upon.
831 * @async_bfqq: array of async queues for all the tasks belonging to
832 * the group, one queue per ioprio value per ioprio_class,
833 * except for the idle class that has only one queue.
834 * @async_idle_bfqq: async queue for the idle class (ioprio is ignored).
835 * @my_entity: pointer to @entity, %NULL for the toplevel group; used
836 * to avoid too many special cases during group creation/
837 * migration.
838 * @stats: stats for this bfqg.
839 * @active_entities: number of active entities belonging to the group;
840 * unused for the root group. Used to know whether there
841 * are groups with more than one active @bfq_entity
842 * (see the comments to the function
843 * bfq_bfqq_may_idle()).
844 * @rq_pos_tree: rbtree sorted by next_request position, used when
845 * determining if two or more queues have interleaving
846 * requests (see bfq_find_close_cooperator()).
847 *
848 * Each (device, cgroup) pair has its own bfq_group, i.e., for each cgroup
849 * there is a set of bfq_groups, each one collecting the lower-level
850 * entities belonging to the group that are acting on the same device.
851 *
852 * Locking works as follows:
853 * o @bfqd is protected by the queue lock, RCU is used to access it
854 * from the readers.
855 * o All the other fields are protected by the @bfqd queue lock.
856 */
857struct bfq_group {
858 /* must be the first member */
859 struct blkg_policy_data pd;
860
8f9bebc3
PV
861 /* cached path for this blkg (see comments in bfq_bic_update_cgroup) */
862 char blkg_path[128];
863
864 /* reference counter (see comments in bfq_bic_update_cgroup) */
865 int ref;
866
ea25da48
PV
867 struct bfq_entity entity;
868 struct bfq_sched_data sched_data;
869
870 void *bfqd;
871
872 struct bfq_queue *async_bfqq[2][IOPRIO_BE_NR];
873 struct bfq_queue *async_idle_bfqq;
874
875 struct bfq_entity *my_entity;
876
877 int active_entities;
878
879 struct rb_root rq_pos_tree;
880
881 struct bfqg_stats stats;
882};
883
884#else
885struct bfq_group {
886 struct bfq_sched_data sched_data;
887
888 struct bfq_queue *async_bfqq[2][IOPRIO_BE_NR];
889 struct bfq_queue *async_idle_bfqq;
890
891 struct rb_root rq_pos_tree;
892};
893#endif
894
895struct bfq_queue *bfq_entity_to_bfqq(struct bfq_entity *entity);
896
897/* --------------- main algorithm interface ----------------- */
898
899#define BFQ_SERVICE_TREE_INIT ((struct bfq_service_tree) \
900 { RB_ROOT, RB_ROOT, NULL, NULL, 0, 0 })
901
902extern const int bfq_timeout;
903
904struct bfq_queue *bic_to_bfqq(struct bfq_io_cq *bic, bool is_sync);
905void bic_set_bfqq(struct bfq_io_cq *bic, struct bfq_queue *bfqq, bool is_sync);
906struct bfq_data *bic_to_bfqd(struct bfq_io_cq *bic);
ea25da48 907void bfq_pos_tree_add_move(struct bfq_data *bfqd, struct bfq_queue *bfqq);
2d29c9f8 908void bfq_weights_tree_add(struct bfq_data *bfqd, struct bfq_queue *bfqq,
fb53ac6c 909 struct rb_root_cached *root);
0471559c 910void __bfq_weights_tree_remove(struct bfq_data *bfqd,
2d29c9f8 911 struct bfq_queue *bfqq,
fb53ac6c 912 struct rb_root_cached *root);
0471559c
PV
913void bfq_weights_tree_remove(struct bfq_data *bfqd,
914 struct bfq_queue *bfqq);
ea25da48
PV
915void bfq_bfqq_expire(struct bfq_data *bfqd, struct bfq_queue *bfqq,
916 bool compensate, enum bfqq_expiration reason);
917void bfq_put_queue(struct bfq_queue *bfqq);
918void bfq_end_wr_async_queues(struct bfq_data *bfqd, struct bfq_group *bfqg);
919void bfq_schedule_dispatch(struct bfq_data *bfqd);
920void bfq_put_async_queues(struct bfq_data *bfqd, struct bfq_group *bfqg);
921
922/* ------------ end of main algorithm interface -------------- */
923
924/* ---------------- cgroups-support interface ---------------- */
925
ea25da48
PV
926void bfqg_stats_update_io_add(struct bfq_group *bfqg, struct bfq_queue *bfqq,
927 unsigned int op);
928void bfqg_stats_update_io_remove(struct bfq_group *bfqg, unsigned int op);
929void bfqg_stats_update_io_merged(struct bfq_group *bfqg, unsigned int op);
84c7afce
OS
930void bfqg_stats_update_completion(struct bfq_group *bfqg, u64 start_time_ns,
931 u64 io_start_time_ns, unsigned int op);
ea25da48
PV
932void bfqg_stats_update_dequeue(struct bfq_group *bfqg);
933void bfqg_stats_set_start_empty_time(struct bfq_group *bfqg);
934void bfqg_stats_update_idle_time(struct bfq_group *bfqg);
935void bfqg_stats_set_start_idle_time(struct bfq_group *bfqg);
936void bfqg_stats_update_avg_queue_size(struct bfq_group *bfqg);
937void bfq_bfqq_move(struct bfq_data *bfqd, struct bfq_queue *bfqq,
938 struct bfq_group *bfqg);
939
940void bfq_init_entity(struct bfq_entity *entity, struct bfq_group *bfqg);
941void bfq_bic_update_cgroup(struct bfq_io_cq *bic, struct bio *bio);
942void bfq_end_wr_async(struct bfq_data *bfqd);
943struct bfq_group *bfq_find_set_group(struct bfq_data *bfqd,
944 struct blkcg *blkcg);
945struct blkcg_gq *bfqg_to_blkg(struct bfq_group *bfqg);
946struct bfq_group *bfqq_group(struct bfq_queue *bfqq);
947struct bfq_group *bfq_create_group_hierarchy(struct bfq_data *bfqd, int node);
8f9bebc3 948void bfqg_and_blkg_put(struct bfq_group *bfqg);
ea25da48
PV
949
950#ifdef CONFIG_BFQ_GROUP_IOSCHED
659b3394
JA
951extern struct cftype bfq_blkcg_legacy_files[];
952extern struct cftype bfq_blkg_files[];
ea25da48
PV
953extern struct blkcg_policy blkcg_policy_bfq;
954#endif
955
956/* ------------- end of cgroups-support interface ------------- */
957
958/* - interface of the internal hierarchical B-WF2Q+ scheduler - */
959
960#ifdef CONFIG_BFQ_GROUP_IOSCHED
961/* both next loops stop at one of the child entities of the root group */
962#define for_each_entity(entity) \
963 for (; entity ; entity = entity->parent)
964
965/*
966 * For each iteration, compute parent in advance, so as to be safe if
967 * entity is deallocated during the iteration. Such a deallocation may
968 * happen as a consequence of a bfq_put_queue that frees the bfq_queue
969 * containing entity.
970 */
971#define for_each_entity_safe(entity, parent) \
972 for (; entity && ({ parent = entity->parent; 1; }); entity = parent)
973
974#else /* CONFIG_BFQ_GROUP_IOSCHED */
975/*
976 * Next two macros are fake loops when cgroups support is not
977 * enabled. I fact, in such a case, there is only one level to go up
978 * (to reach the root group).
979 */
980#define for_each_entity(entity) \
981 for (; entity ; entity = NULL)
982
983#define for_each_entity_safe(entity, parent) \
984 for (parent = NULL; entity ; entity = parent)
985#endif /* CONFIG_BFQ_GROUP_IOSCHED */
986
987struct bfq_group *bfq_bfqq_to_bfqg(struct bfq_queue *bfqq);
988struct bfq_queue *bfq_entity_to_bfqq(struct bfq_entity *entity);
73d58118 989unsigned int bfq_tot_busy_queues(struct bfq_data *bfqd);
ea25da48
PV
990struct bfq_service_tree *bfq_entity_service_tree(struct bfq_entity *entity);
991struct bfq_entity *bfq_entity_of(struct rb_node *node);
992unsigned short bfq_ioprio_to_weight(int ioprio);
993void bfq_put_idle_entity(struct bfq_service_tree *st,
994 struct bfq_entity *entity);
995struct bfq_service_tree *
996__bfq_entity_update_weight_prio(struct bfq_service_tree *old_st,
431b17f9
PV
997 struct bfq_entity *entity,
998 bool update_class_too);
ea25da48
PV
999void bfq_bfqq_served(struct bfq_queue *bfqq, int served);
1000void bfq_bfqq_charge_time(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1001 unsigned long time_ms);
1002bool __bfq_deactivate_entity(struct bfq_entity *entity,
1003 bool ins_into_idle_tree);
1004bool next_queue_may_preempt(struct bfq_data *bfqd);
1005struct bfq_queue *bfq_get_next_queue(struct bfq_data *bfqd);
1006void __bfq_bfqd_reset_in_service(struct bfq_data *bfqd);
1007void bfq_deactivate_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1008 bool ins_into_idle_tree, bool expiration);
1009void bfq_activate_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq);
80294c3b
PV
1010void bfq_requeue_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1011 bool expiration);
ea25da48
PV
1012void bfq_del_bfqq_busy(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1013 bool expiration);
1014void bfq_add_bfqq_busy(struct bfq_data *bfqd, struct bfq_queue *bfqq);
1015
1016/* --------------- end of interface of B-WF2Q+ ---------------- */
1017
1018/* Logging facilities. */
1019#ifdef CONFIG_BFQ_GROUP_IOSCHED
1020struct bfq_group *bfqq_group(struct bfq_queue *bfqq);
1021
1022#define bfq_log_bfqq(bfqd, bfqq, fmt, args...) do { \
35fe6d76
SL
1023 blk_add_cgroup_trace_msg((bfqd)->queue, \
1024 bfqg_to_blkg(bfqq_group(bfqq))->blkcg, \
1025 "bfq%d%c " fmt, (bfqq)->pid, \
1026 bfq_bfqq_sync((bfqq)) ? 'S' : 'A', ##args); \
ea25da48
PV
1027} while (0)
1028
35fe6d76
SL
1029#define bfq_log_bfqg(bfqd, bfqg, fmt, args...) do { \
1030 blk_add_cgroup_trace_msg((bfqd)->queue, \
1031 bfqg_to_blkg(bfqg)->blkcg, fmt, ##args); \
1032} while (0)
ea25da48
PV
1033
1034#else /* CONFIG_BFQ_GROUP_IOSCHED */
1035
1036#define bfq_log_bfqq(bfqd, bfqq, fmt, args...) \
1037 blk_add_trace_msg((bfqd)->queue, "bfq%d%c " fmt, (bfqq)->pid, \
1038 bfq_bfqq_sync((bfqq)) ? 'S' : 'A', \
1039 ##args)
1040#define bfq_log_bfqg(bfqd, bfqg, fmt, args...) do {} while (0)
1041
1042#endif /* CONFIG_BFQ_GROUP_IOSCHED */
1043
1044#define bfq_log(bfqd, fmt, args...) \
1045 blk_add_trace_msg((bfqd)->queue, "bfq " fmt, ##args)
1046
1047#endif /* _BFQ_H */