2 * Header file for the BFQ I/O scheduler: data structures and
3 * prototypes of interface functions among BFQ components.
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.
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.
18 #include <linux/blktrace_api.h>
19 #include <linux/hrtimer.h>
20 #include <linux/blk-cgroup.h>
22 #define BFQ_IOPRIO_CLASSES 3
23 #define BFQ_CL_IDLE_TIMEOUT (HZ/5)
25 #define BFQ_MIN_WEIGHT 1
26 #define BFQ_MAX_WEIGHT 1000
27 #define BFQ_WEIGHT_CONVERSION_COEFF 10
29 #define BFQ_DEFAULT_QUEUE_IOPRIO 4
31 #define BFQ_WEIGHT_LEGACY_DFL 100
32 #define BFQ_DEFAULT_GRP_IOPRIO 0
33 #define BFQ_DEFAULT_GRP_CLASS IOPRIO_CLASS_BE
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.
40 #define BFQ_SOFTRT_WEIGHT_FACTOR 100
45 * struct bfq_service_tree - per ioprio_class service tree.
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.
52 struct bfq_service_tree
{
53 /* tree for active entities (i.e., those backlogged) */
54 struct rb_root active
;
55 /* tree for idle entities (i.e., not backlogged, with V < F_i)*/
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
;
63 /* scheduler virtual time */
65 /* scheduler weight sum; active and idle entities contribute to it */
70 * struct bfq_sched_data - multi-class scheduler.
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
74 * intermediate queue in a hierarchical setup.
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+.
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.
96 * All fields are protected by the lock of the containing bfqd.
98 struct 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
;
111 * struct bfq_weight_counter - counter of the number of all active entities
112 * with a given weight.
114 struct bfq_weight_counter
{
115 unsigned int weight
; /* weight of the entities this counter refers to */
116 unsigned int num_active
; /* nr of active entities with this weight */
118 * Weights tree member (see bfq_data's @queue_weights_tree and
119 * @group_weights_tree)
121 struct rb_node weights_node
;
125 * struct bfq_entity - schedulable entity.
127 * A bfq_entity is used to represent either a bfq_queue (leaf node in the
128 * cgroup hierarchy) or a bfq_group into the upper level scheduler. Each
129 * entity belongs to the sched_data of the parent group in the cgroup
130 * hierarchy. Non-leaf entities have also their own sched_data, stored
133 * Each entity stores independently its priority values; this would
134 * allow different weights on different devices, but this
135 * functionality is not exported to userspace by now. Priorities and
136 * weights are updated lazily, first storing the new values into the
137 * new_* fields, then setting the @prio_changed flag. As soon as
138 * there is a transition in the entity state that allows the priority
139 * update to take place the effective and the requested priority
140 * values are synchronized.
142 * Unless cgroups are used, the weight value is calculated from the
143 * ioprio to export the same interface as CFQ. When dealing with
144 * ``well-behaved'' queues (i.e., queues that do not spend too much
145 * time to consume their budget and have true sequential behavior, and
146 * when there are no external factors breaking anticipation) the
147 * relative weights at each level of the cgroups hierarchy should be
148 * guaranteed. All the fields are protected by the queue lock of the
152 /* service_tree member */
153 struct rb_node rb_node
;
154 /* pointer to the weight counter associated with this entity */
155 struct bfq_weight_counter
*weight_counter
;
158 * Flag, true if the entity is on a tree (either the active or
159 * the idle one of its service_tree) or is in service.
163 /* B-WF2Q+ start and finish timestamps [sectors/weight] */
166 /* tree the entity is enqueued into; %NULL if not on a tree */
167 struct rb_root
*tree
;
170 * minimum start time of the (active) subtree rooted at this
171 * entity; used for O(log N) lookups into active trees
175 /* amount of service received during the last service slot */
178 /* budget, used also to calculate F_i: F_i = S_i + @budget / @weight */
181 /* weight of the queue */
183 /* next weight if a change is in progress */
186 /* original weight, used to implement weight boosting */
189 /* parent entity, for hierarchical scheduling */
190 struct bfq_entity
*parent
;
193 * For non-leaf nodes in the hierarchy, the associated
194 * scheduler queue, %NULL on leaf nodes.
196 struct bfq_sched_data
*my_sched_data
;
197 /* the scheduler queue this entity belongs to */
198 struct bfq_sched_data
*sched_data
;
200 /* flag, set to request a weight, ioprio or ioprio_class change */
207 * struct bfq_ttime - per process thinktime stats.
210 /* completion time of the last request */
211 u64 last_end_request
;
213 /* total process thinktime */
215 /* number of thinktime samples */
216 unsigned long ttime_samples
;
217 /* average process thinktime */
222 * struct bfq_queue - leaf schedulable entity.
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
230 * All the fields are protected by the queue lock of the containing bfqd.
233 /* reference counter */
235 /* parent bfq_data */
236 struct bfq_data
*bfqd
;
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
;
244 * Shared bfq_queue if queue is cooperating with one or more
247 struct bfq_queue
*new_bfqq
;
248 /* request-position tree member (see bfq_group's @rq_pos_tree) */
249 struct rb_node pos_node
;
250 /* request-position tree root (see bfq_group's @rq_pos_tree) */
251 struct rb_root
*pos_root
;
253 /* sorted list of pending requests */
254 struct rb_root sort_list
;
255 /* if fifo isn't expired, next request to serve */
256 struct request
*next_rq
;
257 /* number of sync and async requests queued */
259 /* number of requests currently allocated */
261 /* number of pending metadata requests */
263 /* fifo list of requests in sort_list */
264 struct list_head fifo
;
266 /* entity representing this queue in the scheduler */
267 struct bfq_entity entity
;
269 /* maximum budget allowed from the feedback mechanism */
271 /* budget expiration (in jiffies) */
272 unsigned long budget_timeout
;
274 /* number of requests on the dispatch list or inside driver */
280 /* node for active/idle bfqq list inside parent bfqd */
281 struct list_head bfqq_list
;
283 /* associated @bfq_ttime struct */
284 struct bfq_ttime ttime
;
286 /* bit vector: a 1 for each seeky requests in history */
289 /* node for the device's burst list */
290 struct hlist_node burst_list_node
;
292 /* position of the last request enqueued */
293 sector_t last_request_pos
;
295 /* Number of consecutive pairs of request completion and
296 * arrival, such that the queue becomes idle after the
297 * completion, but the next request arrives within an idle
298 * time slice; used only if the queue's IO_bound flag has been
301 unsigned int requests_within_timer
;
303 /* pid of the process owning the queue, used for logging purposes */
307 * Pointer to the bfq_io_cq owning the bfq_queue, set to %NULL
308 * if the queue is shared.
310 struct bfq_io_cq
*bic
;
312 /* current maximum weight-raising time for this queue */
313 unsigned long wr_cur_max_time
;
315 * Minimum time instant such that, only if a new request is
316 * enqueued after this time instant in an idle @bfq_queue with
317 * no outstanding requests, then the task associated with the
318 * queue it is deemed as soft real-time (see the comments on
319 * the function bfq_bfqq_softrt_next_start())
321 unsigned long soft_rt_next_start
;
323 * Start time of the current weight-raising period if
324 * the @bfq-queue is being weight-raised, otherwise
325 * finish time of the last weight-raising period.
327 unsigned long last_wr_start_finish
;
328 /* factor by which the weight of this queue is multiplied */
329 unsigned int wr_coeff
;
331 * Time of the last transition of the @bfq_queue from idle to
334 unsigned long last_idle_bklogged
;
336 * Cumulative service received from the @bfq_queue since the
337 * last transition from idle to backlogged.
339 unsigned long service_from_backlogged
;
342 * Value of wr start time when switching to soft rt
344 unsigned long wr_start_at_switch_to_srt
;
346 unsigned long split_time
; /* time of last split */
350 * struct bfq_io_cq - per (request_queue, io_context) structure.
353 /* associated io_cq structure */
354 struct io_cq icq
; /* must be the first member */
355 /* array of two process queues, the sync and the async */
356 struct bfq_queue
*bfqq
[2];
357 /* per (request_queue, blkcg) ioprio */
359 #ifdef CONFIG_BFQ_GROUP_IOSCHED
360 uint64_t blkcg_serial_nr
; /* the current blkcg serial */
363 * Snapshot of the idle window before merging; taken to
364 * remember this value while the queue is merged, so as to be
365 * able to restore it in case of split.
367 bool saved_idle_window
;
369 * Same purpose as the previous two fields for the I/O bound
370 * classification of a queue.
375 * Same purpose as the previous fields for the value of the
376 * field keeping the queue's belonging to a large burst
378 bool saved_in_large_burst
;
380 * True if the queue belonged to a burst list before its merge
381 * with another cooperating queue.
383 bool was_in_burst_list
;
386 * Similar to previous fields: save wr information.
388 unsigned long saved_wr_coeff
;
389 unsigned long saved_last_wr_start_finish
;
390 unsigned long saved_wr_start_at_switch_to_srt
;
391 unsigned int saved_wr_cur_max_time
;
392 struct bfq_ttime saved_ttime
;
395 enum bfq_device_speed
{
401 * struct bfq_data - per-device data structure.
403 * All the fields are protected by @lock.
406 /* device request queue */
407 struct request_queue
*queue
;
409 struct list_head dispatch
;
411 /* root bfq_group for the device */
412 struct bfq_group
*root_group
;
415 * rbtree of weight counters of @bfq_queues, sorted by
416 * weight. Used to keep track of whether all @bfq_queues have
417 * the same weight. The tree contains one counter for each
418 * distinct weight associated to some active and not
419 * weight-raised @bfq_queue (see the comments to the functions
420 * bfq_weights_tree_[add|remove] for further details).
422 struct rb_root queue_weights_tree
;
424 * rbtree of non-queue @bfq_entity weight counters, sorted by
425 * weight. Used to keep track of whether all @bfq_groups have
426 * the same weight. The tree contains one counter for each
427 * distinct weight associated to some active @bfq_group (see
428 * the comments to the functions bfq_weights_tree_[add|remove]
429 * for further details).
431 struct rb_root group_weights_tree
;
434 * Number of bfq_queues containing requests (including the
435 * queue in service, even if it is idling).
438 /* number of weight-raised busy @bfq_queues */
440 /* number of queued requests */
442 /* number of requests dispatched and waiting for completion */
446 * Maximum number of requests in driver in the last
447 * @hw_tag_samples completed requests.
449 int max_rq_in_driver
;
450 /* number of samples used to calculate hw_tag */
452 /* flag set to one if the driver is showing a queueing behavior */
455 /* number of budgets assigned */
456 int budgets_assigned
;
459 * Timer set when idling (waiting) for the next request from
460 * the queue in service.
462 struct hrtimer idle_slice_timer
;
464 /* bfq_queue in service */
465 struct bfq_queue
*in_service_queue
;
467 /* on-disk position of the last served request */
468 sector_t last_position
;
470 /* time of last request completion (ns) */
473 /* time of first rq dispatch in current observation interval (ns) */
475 /* time of last rq dispatch in current observation interval (ns) */
478 /* beginning of the last budget */
479 ktime_t last_budget_start
;
480 /* beginning of the last idle slice */
481 ktime_t last_idling_start
;
483 /* number of samples in current observation interval */
484 int peak_rate_samples
;
485 /* num of samples of seq dispatches in current observation interval */
486 u32 sequential_samples
;
487 /* total num of sectors transferred in current observation interval */
488 u64 tot_sectors_dispatched
;
489 /* max rq size seen during current observation interval (sectors) */
490 u32 last_rq_max_size
;
491 /* time elapsed from first dispatch in current observ. interval (us) */
492 u64 delta_from_first
;
494 * Current estimate of the device peak rate, measured in
495 * [BFQ_RATE_SHIFT * sectors/usec]. The left-shift by
496 * BFQ_RATE_SHIFT is performed to increase precision in
497 * fixed-point calculations.
501 /* maximum budget allotted to a bfq_queue before rescheduling */
504 /* list of all the bfq_queues active on the device */
505 struct list_head active_list
;
506 /* list of all the bfq_queues idle on the device */
507 struct list_head idle_list
;
510 * Timeout for async/sync requests; when it fires, requests
511 * are served in fifo order.
513 u64 bfq_fifo_expire
[2];
514 /* weight of backward seeks wrt forward ones */
515 unsigned int bfq_back_penalty
;
516 /* maximum allowed backward seek */
517 unsigned int bfq_back_max
;
518 /* maximum idling time */
521 /* user-configured max budget value (0 for auto-tuning) */
522 int bfq_user_max_budget
;
524 * Timeout for bfq_queues to consume their budget; used to
525 * prevent seeky queues from imposing long latencies to
526 * sequential or quasi-sequential ones (this also implies that
527 * seeky queues cannot receive guarantees in the service
528 * domain; after a timeout they are charged for the time they
529 * have been in service, to preserve fairness among them, but
530 * without service-domain guarantees).
532 unsigned int bfq_timeout
;
535 * Number of consecutive requests that must be issued within
536 * the idle time slice to set again idling to a queue which
537 * was marked as non-I/O-bound (see the definition of the
538 * IO_bound flag for further details).
540 unsigned int bfq_requests_within_timer
;
543 * Force device idling whenever needed to provide accurate
544 * service guarantees, without caring about throughput
545 * issues. CAVEAT: this may even increase latencies, in case
546 * of useless idling for processes that did stop doing I/O.
548 bool strict_guarantees
;
551 * Last time at which a queue entered the current burst of
552 * queues being activated shortly after each other; for more
553 * details about this and the following parameters related to
554 * a burst of activations, see the comments on the function
557 unsigned long last_ins_in_burst
;
559 * Reference time interval used to decide whether a queue has
560 * been activated shortly after @last_ins_in_burst.
562 unsigned long bfq_burst_interval
;
563 /* number of queues in the current burst of queue activations */
566 /* common parent entity for the queues in the burst */
567 struct bfq_entity
*burst_parent_entity
;
568 /* Maximum burst size above which the current queue-activation
569 * burst is deemed as 'large'.
571 unsigned long bfq_large_burst_thresh
;
572 /* true if a large queue-activation burst is in progress */
575 * Head of the burst list (as for the above fields, more
576 * details in the comments on the function bfq_handle_burst).
578 struct hlist_head burst_list
;
580 /* if set to true, low-latency heuristics are enabled */
583 * Maximum factor by which the weight of a weight-raised queue
586 unsigned int bfq_wr_coeff
;
587 /* maximum duration of a weight-raising period (jiffies) */
588 unsigned int bfq_wr_max_time
;
590 /* Maximum weight-raising duration for soft real-time processes */
591 unsigned int bfq_wr_rt_max_time
;
593 * Minimum idle period after which weight-raising may be
594 * reactivated for a queue (in jiffies).
596 unsigned int bfq_wr_min_idle_time
;
598 * Minimum period between request arrivals after which
599 * weight-raising may be reactivated for an already busy async
600 * queue (in jiffies).
602 unsigned long bfq_wr_min_inter_arr_async
;
604 /* Max service-rate for a soft real-time queue, in sectors/sec */
605 unsigned int bfq_wr_max_softrt_rate
;
607 * Cached value of the product R*T, used for computing the
608 * maximum duration of weight raising automatically.
611 /* device-speed class for the low-latency heuristic */
612 enum bfq_device_speed device_speed
;
614 /* fallback dummy bfqq for extreme OOM conditions */
615 struct bfq_queue oom_bfqq
;
620 * bic associated with the task issuing current bio for
621 * merging. This and the next field are used as a support to
622 * be able to perform the bic lookup, needed by bio-merge
623 * functions, before the scheduler lock is taken, and thus
624 * avoid taking the request-queue lock while the scheduler
625 * lock is being held.
627 struct bfq_io_cq
*bio_bic
;
628 /* bfqq associated with the task issuing current bio for merging */
629 struct bfq_queue
*bio_bfqq
;
632 enum bfqq_state_flags
{
633 BFQQF_just_created
= 0, /* queue just allocated */
634 BFQQF_busy
, /* has requests or is in service */
635 BFQQF_wait_request
, /* waiting for a request */
636 BFQQF_non_blocking_wait_rq
, /*
637 * waiting for a request
638 * without idling the device
640 BFQQF_fifo_expire
, /* FIFO checked in this slice */
641 BFQQF_idle_window
, /* slice idling enabled */
642 BFQQF_sync
, /* synchronous queue */
644 * bfqq has timed-out at least once
645 * having consumed at most 2/10 of
648 BFQQF_in_large_burst
, /*
649 * bfqq activated in a large burst,
650 * see comments to bfq_handle_burst.
652 BFQQF_softrt_update
, /*
653 * may need softrt-next-start
656 BFQQF_coop
, /* bfqq is shared */
657 BFQQF_split_coop
/* shared bfqq will be split */
660 #define BFQ_BFQQ_FNS(name) \
661 void bfq_mark_bfqq_##name(struct bfq_queue *bfqq); \
662 void bfq_clear_bfqq_##name(struct bfq_queue *bfqq); \
663 int bfq_bfqq_##name(const struct bfq_queue *bfqq);
665 BFQ_BFQQ_FNS(just_created
);
667 BFQ_BFQQ_FNS(wait_request
);
668 BFQ_BFQQ_FNS(non_blocking_wait_rq
);
669 BFQ_BFQQ_FNS(fifo_expire
);
670 BFQ_BFQQ_FNS(idle_window
);
672 BFQ_BFQQ_FNS(IO_bound
);
673 BFQ_BFQQ_FNS(in_large_burst
);
675 BFQ_BFQQ_FNS(split_coop
);
676 BFQ_BFQQ_FNS(softrt_update
);
679 /* Expiration reasons. */
680 enum bfqq_expiration
{
681 BFQQE_TOO_IDLE
= 0, /*
682 * queue has been idling for
685 BFQQE_BUDGET_TIMEOUT
, /* budget took too long to be used */
686 BFQQE_BUDGET_EXHAUSTED
, /* budget consumed */
687 BFQQE_NO_MORE_REQUESTS
, /* the queue has no more requests */
688 BFQQE_PREEMPTED
/* preemption in progress */
692 #ifdef CONFIG_BFQ_GROUP_IOSCHED
693 /* number of ios merged */
694 struct blkg_rwstat merged
;
695 /* total time spent on device in ns, may not be accurate w/ queueing */
696 struct blkg_rwstat service_time
;
697 /* total time spent waiting in scheduler queue in ns */
698 struct blkg_rwstat wait_time
;
699 /* number of IOs queued up */
700 struct blkg_rwstat queued
;
701 /* total disk time and nr sectors dispatched by this group */
702 struct blkg_stat time
;
703 /* sum of number of ios queued across all samples */
704 struct blkg_stat avg_queue_size_sum
;
705 /* count of samples taken for average */
706 struct blkg_stat avg_queue_size_samples
;
707 /* how many times this group has been removed from service tree */
708 struct blkg_stat dequeue
;
709 /* total time spent waiting for it to be assigned a timeslice. */
710 struct blkg_stat group_wait_time
;
711 /* time spent idling for this blkcg_gq */
712 struct blkg_stat idle_time
;
713 /* total time with empty current active q with other requests queued */
714 struct blkg_stat empty_time
;
715 /* fields after this shouldn't be cleared on stat reset */
716 uint64_t start_group_wait_time
;
717 uint64_t start_idle_time
;
718 uint64_t start_empty_time
;
720 #endif /* CONFIG_BFQ_GROUP_IOSCHED */
723 #ifdef CONFIG_BFQ_GROUP_IOSCHED
726 * struct bfq_group_data - per-blkcg storage for the blkio subsystem.
728 * @ps: @blkcg_policy_storage that this structure inherits
729 * @weight: weight of the bfq_group
731 struct bfq_group_data
{
732 /* must be the first member */
733 struct blkcg_policy_data pd
;
739 * struct bfq_group - per (device, cgroup) data structure.
740 * @entity: schedulable entity to insert into the parent group sched_data.
741 * @sched_data: own sched_data, to contain child entities (they may be
742 * both bfq_queues and bfq_groups).
743 * @bfqd: the bfq_data for the device this group acts upon.
744 * @async_bfqq: array of async queues for all the tasks belonging to
745 * the group, one queue per ioprio value per ioprio_class,
746 * except for the idle class that has only one queue.
747 * @async_idle_bfqq: async queue for the idle class (ioprio is ignored).
748 * @my_entity: pointer to @entity, %NULL for the toplevel group; used
749 * to avoid too many special cases during group creation/
751 * @stats: stats for this bfqg.
752 * @active_entities: number of active entities belonging to the group;
753 * unused for the root group. Used to know whether there
754 * are groups with more than one active @bfq_entity
755 * (see the comments to the function
756 * bfq_bfqq_may_idle()).
757 * @rq_pos_tree: rbtree sorted by next_request position, used when
758 * determining if two or more queues have interleaving
759 * requests (see bfq_find_close_cooperator()).
761 * Each (device, cgroup) pair has its own bfq_group, i.e., for each cgroup
762 * there is a set of bfq_groups, each one collecting the lower-level
763 * entities belonging to the group that are acting on the same device.
765 * Locking works as follows:
766 * o @bfqd is protected by the queue lock, RCU is used to access it
768 * o All the other fields are protected by the @bfqd queue lock.
771 /* must be the first member */
772 struct blkg_policy_data pd
;
774 /* cached path for this blkg (see comments in bfq_bic_update_cgroup) */
777 /* reference counter (see comments in bfq_bic_update_cgroup) */
780 struct bfq_entity entity
;
781 struct bfq_sched_data sched_data
;
785 struct bfq_queue
*async_bfqq
[2][IOPRIO_BE_NR
];
786 struct bfq_queue
*async_idle_bfqq
;
788 struct bfq_entity
*my_entity
;
792 struct rb_root rq_pos_tree
;
794 struct bfqg_stats stats
;
799 struct bfq_sched_data sched_data
;
801 struct bfq_queue
*async_bfqq
[2][IOPRIO_BE_NR
];
802 struct bfq_queue
*async_idle_bfqq
;
804 struct rb_root rq_pos_tree
;
808 struct bfq_queue
*bfq_entity_to_bfqq(struct bfq_entity
*entity
);
810 /* --------------- main algorithm interface ----------------- */
812 #define BFQ_SERVICE_TREE_INIT ((struct bfq_service_tree) \
813 { RB_ROOT, RB_ROOT, NULL, NULL, 0, 0 })
815 extern const int bfq_timeout
;
817 struct bfq_queue
*bic_to_bfqq(struct bfq_io_cq
*bic
, bool is_sync
);
818 void bic_set_bfqq(struct bfq_io_cq
*bic
, struct bfq_queue
*bfqq
, bool is_sync
);
819 struct bfq_data
*bic_to_bfqd(struct bfq_io_cq
*bic
);
820 void bfq_requeue_bfqq(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
);
821 void bfq_pos_tree_add_move(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
);
822 void bfq_weights_tree_add(struct bfq_data
*bfqd
, struct bfq_entity
*entity
,
823 struct rb_root
*root
);
824 void bfq_weights_tree_remove(struct bfq_data
*bfqd
, struct bfq_entity
*entity
,
825 struct rb_root
*root
);
826 void bfq_bfqq_expire(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
,
827 bool compensate
, enum bfqq_expiration reason
);
828 void bfq_put_queue(struct bfq_queue
*bfqq
);
829 void bfq_end_wr_async_queues(struct bfq_data
*bfqd
, struct bfq_group
*bfqg
);
830 void bfq_schedule_dispatch(struct bfq_data
*bfqd
);
831 void bfq_put_async_queues(struct bfq_data
*bfqd
, struct bfq_group
*bfqg
);
833 /* ------------ end of main algorithm interface -------------- */
835 /* ---------------- cgroups-support interface ---------------- */
837 void bfqg_stats_update_io_add(struct bfq_group
*bfqg
, struct bfq_queue
*bfqq
,
839 void bfqg_stats_update_io_remove(struct bfq_group
*bfqg
, unsigned int op
);
840 void bfqg_stats_update_io_merged(struct bfq_group
*bfqg
, unsigned int op
);
841 void bfqg_stats_update_completion(struct bfq_group
*bfqg
, uint64_t start_time
,
842 uint64_t io_start_time
, unsigned int op
);
843 void bfqg_stats_update_dequeue(struct bfq_group
*bfqg
);
844 void bfqg_stats_set_start_empty_time(struct bfq_group
*bfqg
);
845 void bfqg_stats_update_idle_time(struct bfq_group
*bfqg
);
846 void bfqg_stats_set_start_idle_time(struct bfq_group
*bfqg
);
847 void bfqg_stats_update_avg_queue_size(struct bfq_group
*bfqg
);
848 void bfq_bfqq_move(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
,
849 struct bfq_group
*bfqg
);
851 void bfq_init_entity(struct bfq_entity
*entity
, struct bfq_group
*bfqg
);
852 void bfq_bic_update_cgroup(struct bfq_io_cq
*bic
, struct bio
*bio
);
853 void bfq_end_wr_async(struct bfq_data
*bfqd
);
854 struct bfq_group
*bfq_find_set_group(struct bfq_data
*bfqd
,
855 struct blkcg
*blkcg
);
856 struct blkcg_gq
*bfqg_to_blkg(struct bfq_group
*bfqg
);
857 struct bfq_group
*bfqq_group(struct bfq_queue
*bfqq
);
858 struct bfq_group
*bfq_create_group_hierarchy(struct bfq_data
*bfqd
, int node
);
859 void bfqg_and_blkg_put(struct bfq_group
*bfqg
);
861 #ifdef CONFIG_BFQ_GROUP_IOSCHED
862 extern struct cftype bfq_blkcg_legacy_files
[];
863 extern struct cftype bfq_blkg_files
[];
864 extern struct blkcg_policy blkcg_policy_bfq
;
867 /* ------------- end of cgroups-support interface ------------- */
869 /* - interface of the internal hierarchical B-WF2Q+ scheduler - */
871 #ifdef CONFIG_BFQ_GROUP_IOSCHED
872 /* both next loops stop at one of the child entities of the root group */
873 #define for_each_entity(entity) \
874 for (; entity ; entity = entity->parent)
877 * For each iteration, compute parent in advance, so as to be safe if
878 * entity is deallocated during the iteration. Such a deallocation may
879 * happen as a consequence of a bfq_put_queue that frees the bfq_queue
882 #define for_each_entity_safe(entity, parent) \
883 for (; entity && ({ parent = entity->parent; 1; }); entity = parent)
885 #else /* CONFIG_BFQ_GROUP_IOSCHED */
887 * Next two macros are fake loops when cgroups support is not
888 * enabled. I fact, in such a case, there is only one level to go up
889 * (to reach the root group).
891 #define for_each_entity(entity) \
892 for (; entity ; entity = NULL)
894 #define for_each_entity_safe(entity, parent) \
895 for (parent = NULL; entity ; entity = parent)
896 #endif /* CONFIG_BFQ_GROUP_IOSCHED */
898 struct bfq_group
*bfq_bfqq_to_bfqg(struct bfq_queue
*bfqq
);
899 struct bfq_queue
*bfq_entity_to_bfqq(struct bfq_entity
*entity
);
900 struct bfq_service_tree
*bfq_entity_service_tree(struct bfq_entity
*entity
);
901 struct bfq_entity
*bfq_entity_of(struct rb_node
*node
);
902 unsigned short bfq_ioprio_to_weight(int ioprio
);
903 void bfq_put_idle_entity(struct bfq_service_tree
*st
,
904 struct bfq_entity
*entity
);
905 struct bfq_service_tree
*
906 __bfq_entity_update_weight_prio(struct bfq_service_tree
*old_st
,
907 struct bfq_entity
*entity
,
908 bool update_class_too
);
909 void bfq_bfqq_served(struct bfq_queue
*bfqq
, int served
);
910 void bfq_bfqq_charge_time(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
,
911 unsigned long time_ms
);
912 bool __bfq_deactivate_entity(struct bfq_entity
*entity
,
913 bool ins_into_idle_tree
);
914 bool next_queue_may_preempt(struct bfq_data
*bfqd
);
915 struct bfq_queue
*bfq_get_next_queue(struct bfq_data
*bfqd
);
916 void __bfq_bfqd_reset_in_service(struct bfq_data
*bfqd
);
917 void bfq_deactivate_bfqq(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
,
918 bool ins_into_idle_tree
, bool expiration
);
919 void bfq_activate_bfqq(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
);
920 void bfq_requeue_bfqq(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
);
921 void bfq_del_bfqq_busy(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
,
923 void bfq_add_bfqq_busy(struct bfq_data
*bfqd
, struct bfq_queue
*bfqq
);
925 /* --------------- end of interface of B-WF2Q+ ---------------- */
927 /* Logging facilities. */
928 #ifdef CONFIG_BFQ_GROUP_IOSCHED
929 struct bfq_group
*bfqq_group(struct bfq_queue
*bfqq
);
931 #define bfq_log_bfqq(bfqd, bfqq, fmt, args...) do { \
932 blk_add_trace_msg((bfqd)->queue, "bfq%d%c %s " fmt, (bfqq)->pid,\
933 bfq_bfqq_sync((bfqq)) ? 'S' : 'A', \
934 bfqq_group(bfqq)->blkg_path, ##args); \
937 #define bfq_log_bfqg(bfqd, bfqg, fmt, args...) \
938 blk_add_trace_msg((bfqd)->queue, "%s " fmt, (bfqg)->blkg_path, ##args)
940 #else /* CONFIG_BFQ_GROUP_IOSCHED */
942 #define bfq_log_bfqq(bfqd, bfqq, fmt, args...) \
943 blk_add_trace_msg((bfqd)->queue, "bfq%d%c " fmt, (bfqq)->pid, \
944 bfq_bfqq_sync((bfqq)) ? 'S' : 'A', \
946 #define bfq_log_bfqg(bfqd, bfqg, fmt, args...) do {} while (0)
948 #endif /* CONFIG_BFQ_GROUP_IOSCHED */
950 #define bfq_log(bfqd, fmt, args...) \
951 blk_add_trace_msg((bfqd)->queue, "bfq " fmt, ##args)