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