block, bfq: turn bfqq_data into an array in bfq_io_cq
[linux-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 420 * Snapshot of the has_short_time flag before merging; taken
fd571df0 421 * to remember its values while the queue is merged, so as to
d5be3fef 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 434 /*
fd571df0 435 * Same purpose as the previous fields for the values of the
ea25da48
PV
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
fd571df0
PV
498 /*
499 * Persistent data for associated synchronous process queues
500 * (one queue per actuator, see field bfqq above). In
501 * particular, each of these queues may undergo a merge.
502 */
503 struct bfq_iocq_bfqq_data bfqq_data[BFQ_MAX_ACTUATORS];
a6123047 504
f9506673 505 unsigned int requests; /* Number of requests this process has in flight */
ea25da48
PV
506};
507
ea25da48
PV
508/**
509 * struct bfq_data - per-device data structure.
510 *
511 * All the fields are protected by @lock.
512 */
513struct bfq_data {
514 /* device request queue */
515 struct request_queue *queue;
516 /* dispatch queue */
517 struct list_head dispatch;
518
519 /* root bfq_group for the device */
520 struct bfq_group *root_group;
521
522 /*
523 * rbtree of weight counters of @bfq_queues, sorted by
524 * weight. Used to keep track of whether all @bfq_queues have
525 * the same weight. The tree contains one counter for each
526 * distinct weight associated to some active and not
527 * weight-raised @bfq_queue (see the comments to the functions
528 * bfq_weights_tree_[add|remove] for further details).
529 */
fb53ac6c 530 struct rb_root_cached queue_weights_tree;
ba7aeae5 531
1eb20620 532#ifdef CONFIG_BFQ_GROUP_IOSCHED
ea25da48 533 /*
71f8ca77 534 * Number of groups with at least one process that
ba7aeae5
PV
535 * has at least one request waiting for completion. Note that
536 * this accounts for also requests already dispatched, but not
537 * yet completed. Therefore this number of groups may differ
538 * (be larger) than the number of active groups, as a group is
539 * considered active only if its corresponding entity has
71f8ca77 540 * queues with at least one request queued. This
ba7aeae5
PV
541 * number is used to decide whether a scenario is symmetric.
542 * For a detailed explanation see comments on the computation
543 * of the variable asymmetric_scenario in the function
544 * bfq_better_to_idle().
545 *
546 * However, it is hard to compute this number exactly, for
71f8ca77
YK
547 * groups with multiple processes. Consider a group
548 * that is inactive, i.e., that has no process with
ba7aeae5
PV
549 * pending I/O inside BFQ queues. Then suppose that
550 * num_groups_with_pending_reqs is still accounting for this
71f8ca77 551 * group, because the group has processes with some
ba7aeae5
PV
552 * I/O request still in flight. num_groups_with_pending_reqs
553 * should be decremented when the in-flight request of the
71f8ca77 554 * last process is finally completed (assuming that
ba7aeae5
PV
555 * nothing else has changed for the group in the meantime, in
556 * terms of composition of the group and active/inactive state of child
557 * groups and processes). To accomplish this, an additional
558 * pending-request counter must be added to entities, and must
559 * be updated correctly. To avoid this additional field and operations,
560 * we resort to the following tradeoff between simplicity and
561 * accuracy: for an inactive group that is still counted in
562 * num_groups_with_pending_reqs, we decrement
71f8ca77 563 * num_groups_with_pending_reqs when the first
ba7aeae5
PV
564 * process of the group remains with no request waiting for
565 * completion.
566 *
567 * Even this simpler decrement strategy requires a little
568 * carefulness: to avoid multiple decrements, we flag a group,
569 * more precisely an entity representing a group, as still
570 * counted in num_groups_with_pending_reqs when it becomes
71f8ca77 571 * inactive. Then, when the first queue of the
ba7aeae5
PV
572 * entity remains with no request waiting for completion,
573 * num_groups_with_pending_reqs is decremented, and this flag
574 * is reset. After this flag is reset for the entity,
575 * num_groups_with_pending_reqs won't be decremented any
71f8ca77 576 * longer in case a new queue of the entity remains
ba7aeae5 577 * with no request waiting for completion.
ea25da48 578 */
ba7aeae5 579 unsigned int num_groups_with_pending_reqs;
1eb20620 580#endif
ea25da48
PV
581
582 /*
73d58118
PV
583 * Per-class (RT, BE, IDLE) number of bfq_queues containing
584 * requests (including the queue in service, even if it is
585 * idling).
ea25da48 586 */
73d58118 587 unsigned int busy_queues[3];
ea25da48
PV
588 /* number of weight-raised busy @bfq_queues */
589 int wr_busy_queues;
590 /* number of queued requests */
591 int queued;
592 /* number of requests dispatched and waiting for completion */
593 int rq_in_driver;
594
8cacc5ab
PV
595 /* true if the device is non rotational and performs queueing */
596 bool nonrot_with_queueing;
597
ea25da48
PV
598 /*
599 * Maximum number of requests in driver in the last
600 * @hw_tag_samples completed requests.
601 */
602 int max_rq_in_driver;
603 /* number of samples used to calculate hw_tag */
604 int hw_tag_samples;
605 /* flag set to one if the driver is showing a queueing behavior */
606 int hw_tag;
607
608 /* number of budgets assigned */
609 int budgets_assigned;
610
611 /*
612 * Timer set when idling (waiting) for the next request from
613 * the queue in service.
614 */
615 struct hrtimer idle_slice_timer;
616
617 /* bfq_queue in service */
618 struct bfq_queue *in_service_queue;
619
620 /* on-disk position of the last served request */
621 sector_t last_position;
622
058fdecc
PV
623 /* position of the last served request for the in-service queue */
624 sector_t in_serv_last_pos;
625
ea25da48
PV
626 /* time of last request completion (ns) */
627 u64 last_completion;
628
13a857a4
PV
629 /* bfqq owning the last completed rq */
630 struct bfq_queue *last_completed_rq_bfqq;
631
430a67f9
PV
632 /* last bfqq created, among those in the root group */
633 struct bfq_queue *last_bfqq_created;
634
2341d662
PV
635 /* time of last transition from empty to non-empty (ns) */
636 u64 last_empty_occupied_ns;
637
638 /*
639 * Flag set to activate the sampling of the total service time
640 * of a just-arrived first I/O request (see
641 * bfq_update_inject_limit()). This will cause the setting of
642 * waited_rq when the request is finally dispatched.
643 */
644 bool wait_dispatch;
645 /*
646 * If set, then bfq_update_inject_limit() is invoked when
647 * waited_rq is eventually completed.
648 */
649 struct request *waited_rq;
650 /*
651 * True if some request has been injected during the last service hole.
652 */
653 bool rqs_injected;
654
ea25da48
PV
655 /* time of first rq dispatch in current observation interval (ns) */
656 u64 first_dispatch;
657 /* time of last rq dispatch in current observation interval (ns) */
658 u64 last_dispatch;
659
660 /* beginning of the last budget */
661 ktime_t last_budget_start;
662 /* beginning of the last idle slice */
663 ktime_t last_idling_start;
2341d662 664 unsigned long last_idling_start_jiffies;
ea25da48
PV
665
666 /* number of samples in current observation interval */
667 int peak_rate_samples;
668 /* num of samples of seq dispatches in current observation interval */
669 u32 sequential_samples;
670 /* total num of sectors transferred in current observation interval */
671 u64 tot_sectors_dispatched;
672 /* max rq size seen during current observation interval (sectors) */
673 u32 last_rq_max_size;
674 /* time elapsed from first dispatch in current observ. interval (us) */
675 u64 delta_from_first;
676 /*
677 * Current estimate of the device peak rate, measured in
bc56e2ca 678 * [(sectors/usec) / 2^BFQ_RATE_SHIFT]. The left-shift by
ea25da48
PV
679 * BFQ_RATE_SHIFT is performed to increase precision in
680 * fixed-point calculations.
681 */
682 u32 peak_rate;
683
684 /* maximum budget allotted to a bfq_queue before rescheduling */
685 int bfq_max_budget;
686
687 /* list of all the bfq_queues active on the device */
688 struct list_head active_list;
689 /* list of all the bfq_queues idle on the device */
690 struct list_head idle_list;
691
692 /*
693 * Timeout for async/sync requests; when it fires, requests
694 * are served in fifo order.
695 */
696 u64 bfq_fifo_expire[2];
697 /* weight of backward seeks wrt forward ones */
698 unsigned int bfq_back_penalty;
699 /* maximum allowed backward seek */
700 unsigned int bfq_back_max;
701 /* maximum idling time */
702 u32 bfq_slice_idle;
703
704 /* user-configured max budget value (0 for auto-tuning) */
705 int bfq_user_max_budget;
706 /*
707 * Timeout for bfq_queues to consume their budget; used to
708 * prevent seeky queues from imposing long latencies to
709 * sequential or quasi-sequential ones (this also implies that
710 * seeky queues cannot receive guarantees in the service
711 * domain; after a timeout they are charged for the time they
712 * have been in service, to preserve fairness among them, but
713 * without service-domain guarantees).
714 */
715 unsigned int bfq_timeout;
716
ea25da48
PV
717 /*
718 * Force device idling whenever needed to provide accurate
719 * service guarantees, without caring about throughput
720 * issues. CAVEAT: this may even increase latencies, in case
721 * of useless idling for processes that did stop doing I/O.
722 */
723 bool strict_guarantees;
724
725 /*
726 * Last time at which a queue entered the current burst of
727 * queues being activated shortly after each other; for more
728 * details about this and the following parameters related to
729 * a burst of activations, see the comments on the function
730 * bfq_handle_burst.
731 */
732 unsigned long last_ins_in_burst;
733 /*
734 * Reference time interval used to decide whether a queue has
735 * been activated shortly after @last_ins_in_burst.
736 */
737 unsigned long bfq_burst_interval;
738 /* number of queues in the current burst of queue activations */
739 int burst_size;
740
741 /* common parent entity for the queues in the burst */
742 struct bfq_entity *burst_parent_entity;
743 /* Maximum burst size above which the current queue-activation
744 * burst is deemed as 'large'.
745 */
746 unsigned long bfq_large_burst_thresh;
747 /* true if a large queue-activation burst is in progress */
748 bool large_burst;
749 /*
750 * Head of the burst list (as for the above fields, more
751 * details in the comments on the function bfq_handle_burst).
752 */
753 struct hlist_head burst_list;
754
755 /* if set to true, low-latency heuristics are enabled */
756 bool low_latency;
757 /*
758 * Maximum factor by which the weight of a weight-raised queue
759 * is multiplied.
760 */
761 unsigned int bfq_wr_coeff;
762 /* maximum duration of a weight-raising period (jiffies) */
763 unsigned int bfq_wr_max_time;
764
765 /* Maximum weight-raising duration for soft real-time processes */
766 unsigned int bfq_wr_rt_max_time;
767 /*
768 * Minimum idle period after which weight-raising may be
769 * reactivated for a queue (in jiffies).
770 */
771 unsigned int bfq_wr_min_idle_time;
772 /*
773 * Minimum period between request arrivals after which
774 * weight-raising may be reactivated for an already busy async
775 * queue (in jiffies).
776 */
777 unsigned long bfq_wr_min_inter_arr_async;
778
779 /* Max service-rate for a soft real-time queue, in sectors/sec */
780 unsigned int bfq_wr_max_softrt_rate;
781 /*
e24f1c24
PV
782 * Cached value of the product ref_rate*ref_wr_duration, used
783 * for computing the maximum duration of weight raising
784 * automatically.
ea25da48 785 */
e24f1c24 786 u64 rate_dur_prod;
ea25da48
PV
787
788 /* fallback dummy bfqq for extreme OOM conditions */
789 struct bfq_queue oom_bfqq;
790
791 spinlock_t lock;
792
793 /*
794 * bic associated with the task issuing current bio for
795 * merging. This and the next field are used as a support to
796 * be able to perform the bic lookup, needed by bio-merge
797 * functions, before the scheduler lock is taken, and thus
798 * avoid taking the request-queue lock while the scheduler
799 * lock is being held.
800 */
801 struct bfq_io_cq *bio_bic;
802 /* bfqq associated with the task issuing current bio for merging */
803 struct bfq_queue *bio_bfqq;
a52a69ea 804
a52a69ea
PV
805 /*
806 * Depth limits used in bfq_limit_depth (see comments on the
807 * function)
808 */
809 unsigned int word_depths[2][2];
44dfa279 810 unsigned int full_depth_shift;
9778369a
PV
811
812 /*
813 * Number of independent actuators. This is equal to 1 in
814 * case of single-actuator drives.
815 */
816 unsigned int num_actuators;
817
ea25da48
PV
818};
819
820enum bfqq_state_flags {
821 BFQQF_just_created = 0, /* queue just allocated */
822 BFQQF_busy, /* has requests or is in service */
823 BFQQF_wait_request, /* waiting for a request */
824 BFQQF_non_blocking_wait_rq, /*
825 * waiting for a request
826 * without idling the device
827 */
828 BFQQF_fifo_expire, /* FIFO checked in this slice */
d5be3fef 829 BFQQF_has_short_ttime, /* queue has a short think time */
ea25da48
PV
830 BFQQF_sync, /* synchronous queue */
831 BFQQF_IO_bound, /*
832 * bfqq has timed-out at least once
833 * having consumed at most 2/10 of
834 * its budget
835 */
836 BFQQF_in_large_burst, /*
837 * bfqq activated in a large burst,
838 * see comments to bfq_handle_burst.
839 */
840 BFQQF_softrt_update, /*
841 * may need softrt-next-start
842 * update
843 */
844 BFQQF_coop, /* bfqq is shared */
13a857a4 845 BFQQF_split_coop, /* shared bfqq will be split */
ea25da48
PV
846};
847
848#define BFQ_BFQQ_FNS(name) \
849void bfq_mark_bfqq_##name(struct bfq_queue *bfqq); \
850void bfq_clear_bfqq_##name(struct bfq_queue *bfqq); \
851int bfq_bfqq_##name(const struct bfq_queue *bfqq);
852
853BFQ_BFQQ_FNS(just_created);
854BFQ_BFQQ_FNS(busy);
855BFQ_BFQQ_FNS(wait_request);
856BFQ_BFQQ_FNS(non_blocking_wait_rq);
857BFQ_BFQQ_FNS(fifo_expire);
d5be3fef 858BFQ_BFQQ_FNS(has_short_ttime);
ea25da48
PV
859BFQ_BFQQ_FNS(sync);
860BFQ_BFQQ_FNS(IO_bound);
861BFQ_BFQQ_FNS(in_large_burst);
862BFQ_BFQQ_FNS(coop);
863BFQ_BFQQ_FNS(split_coop);
864BFQ_BFQQ_FNS(softrt_update);
865#undef BFQ_BFQQ_FNS
866
867/* Expiration reasons. */
868enum bfqq_expiration {
869 BFQQE_TOO_IDLE = 0, /*
870 * queue has been idling for
871 * too long
872 */
873 BFQQE_BUDGET_TIMEOUT, /* budget took too long to be used */
874 BFQQE_BUDGET_EXHAUSTED, /* budget consumed */
875 BFQQE_NO_MORE_REQUESTS, /* the queue has no more requests */
876 BFQQE_PREEMPTED /* preemption in progress */
877};
878
c0ce79dc
CH
879struct bfq_stat {
880 struct percpu_counter cpu_cnt;
881 atomic64_t aux_cnt;
882};
883
ea25da48 884struct bfqg_stats {
fd41e603
TH
885 /* basic stats */
886 struct blkg_rwstat bytes;
887 struct blkg_rwstat ios;
8060c47b 888#ifdef CONFIG_BFQ_CGROUP_DEBUG
ea25da48
PV
889 /* number of ios merged */
890 struct blkg_rwstat merged;
891 /* total time spent on device in ns, may not be accurate w/ queueing */
892 struct blkg_rwstat service_time;
893 /* total time spent waiting in scheduler queue in ns */
894 struct blkg_rwstat wait_time;
895 /* number of IOs queued up */
896 struct blkg_rwstat queued;
897 /* total disk time and nr sectors dispatched by this group */
c0ce79dc 898 struct bfq_stat time;
ea25da48 899 /* sum of number of ios queued across all samples */
c0ce79dc 900 struct bfq_stat avg_queue_size_sum;
ea25da48 901 /* count of samples taken for average */
c0ce79dc 902 struct bfq_stat avg_queue_size_samples;
ea25da48 903 /* how many times this group has been removed from service tree */
c0ce79dc 904 struct bfq_stat dequeue;
ea25da48 905 /* total time spent waiting for it to be assigned a timeslice. */
c0ce79dc 906 struct bfq_stat group_wait_time;
ea25da48 907 /* time spent idling for this blkcg_gq */
c0ce79dc 908 struct bfq_stat idle_time;
ea25da48 909 /* total time with empty current active q with other requests queued */
c0ce79dc 910 struct bfq_stat empty_time;
ea25da48 911 /* fields after this shouldn't be cleared on stat reset */
84c7afce
OS
912 u64 start_group_wait_time;
913 u64 start_idle_time;
914 u64 start_empty_time;
ea25da48 915 uint16_t flags;
8060c47b 916#endif /* CONFIG_BFQ_CGROUP_DEBUG */
ea25da48
PV
917};
918
919#ifdef CONFIG_BFQ_GROUP_IOSCHED
920
921/*
922 * struct bfq_group_data - per-blkcg storage for the blkio subsystem.
923 *
924 * @ps: @blkcg_policy_storage that this structure inherits
925 * @weight: weight of the bfq_group
926 */
927struct bfq_group_data {
928 /* must be the first member */
929 struct blkcg_policy_data pd;
930
931 unsigned int weight;
932};
933
934/**
935 * struct bfq_group - per (device, cgroup) data structure.
936 * @entity: schedulable entity to insert into the parent group sched_data.
937 * @sched_data: own sched_data, to contain child entities (they may be
938 * both bfq_queues and bfq_groups).
939 * @bfqd: the bfq_data for the device this group acts upon.
940 * @async_bfqq: array of async queues for all the tasks belonging to
941 * the group, one queue per ioprio value per ioprio_class,
942 * except for the idle class that has only one queue.
943 * @async_idle_bfqq: async queue for the idle class (ioprio is ignored).
944 * @my_entity: pointer to @entity, %NULL for the toplevel group; used
945 * to avoid too many special cases during group creation/
946 * migration.
947 * @stats: stats for this bfqg.
948 * @active_entities: number of active entities belonging to the group;
949 * unused for the root group. Used to know whether there
950 * are groups with more than one active @bfq_entity
951 * (see the comments to the function
952 * bfq_bfqq_may_idle()).
953 * @rq_pos_tree: rbtree sorted by next_request position, used when
954 * determining if two or more queues have interleaving
955 * requests (see bfq_find_close_cooperator()).
956 *
957 * Each (device, cgroup) pair has its own bfq_group, i.e., for each cgroup
958 * there is a set of bfq_groups, each one collecting the lower-level
959 * entities belonging to the group that are acting on the same device.
960 *
961 * Locking works as follows:
962 * o @bfqd is protected by the queue lock, RCU is used to access it
963 * from the readers.
964 * o All the other fields are protected by the @bfqd queue lock.
965 */
966struct bfq_group {
967 /* must be the first member */
968 struct blkg_policy_data pd;
969
8f9bebc3
PV
970 /* cached path for this blkg (see comments in bfq_bic_update_cgroup) */
971 char blkg_path[128];
972
973 /* reference counter (see comments in bfq_bic_update_cgroup) */
216f7647 974 refcount_t ref;
09f87186
JK
975 /* Is bfq_group still online? */
976 bool online;
8f9bebc3 977
ea25da48
PV
978 struct bfq_entity entity;
979 struct bfq_sched_data sched_data;
980
aa625117 981 struct bfq_data *bfqd;
ea25da48 982
202bc942 983 struct bfq_queue *async_bfqq[2][IOPRIO_NR_LEVELS];
ea25da48
PV
984 struct bfq_queue *async_idle_bfqq;
985
986 struct bfq_entity *my_entity;
987
988 int active_entities;
60a6e10c 989 int num_queues_with_pending_reqs;
ea25da48
PV
990
991 struct rb_root rq_pos_tree;
992
993 struct bfqg_stats stats;
994};
995
996#else
997struct bfq_group {
4d8340d0 998 struct bfq_entity entity;
ea25da48
PV
999 struct bfq_sched_data sched_data;
1000
202bc942 1001 struct bfq_queue *async_bfqq[2][IOPRIO_NR_LEVELS];
ea25da48
PV
1002 struct bfq_queue *async_idle_bfqq;
1003
1004 struct rb_root rq_pos_tree;
1005};
1006#endif
1007
ea25da48
PV
1008/* --------------- main algorithm interface ----------------- */
1009
1010#define BFQ_SERVICE_TREE_INIT ((struct bfq_service_tree) \
1011 { RB_ROOT, RB_ROOT, NULL, NULL, 0, 0 })
1012
1013extern const int bfq_timeout;
1014
9778369a
PV
1015struct bfq_queue *bic_to_bfqq(struct bfq_io_cq *bic, bool is_sync,
1016 unsigned int actuator_idx);
1017void bic_set_bfqq(struct bfq_io_cq *bic, struct bfq_queue *bfqq, bool is_sync,
1018 unsigned int actuator_idx);
ea25da48 1019struct bfq_data *bic_to_bfqd(struct bfq_io_cq *bic);
ea25da48 1020void bfq_pos_tree_add_move(struct bfq_data *bfqd, struct bfq_queue *bfqq);
afdba146 1021void bfq_weights_tree_add(struct bfq_queue *bfqq);
afdba146 1022void bfq_weights_tree_remove(struct bfq_queue *bfqq);
ea25da48
PV
1023void bfq_bfqq_expire(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1024 bool compensate, enum bfqq_expiration reason);
1025void bfq_put_queue(struct bfq_queue *bfqq);
3bc5e683 1026void bfq_put_cooperator(struct bfq_queue *bfqq);
ea25da48 1027void bfq_end_wr_async_queues(struct bfq_data *bfqd, struct bfq_group *bfqg);
c8997736 1028void bfq_release_process_ref(struct bfq_data *bfqd, struct bfq_queue *bfqq);
ea25da48
PV
1029void bfq_schedule_dispatch(struct bfq_data *bfqd);
1030void bfq_put_async_queues(struct bfq_data *bfqd, struct bfq_group *bfqg);
1031
1032/* ------------ end of main algorithm interface -------------- */
1033
1034/* ---------------- cgroups-support interface ---------------- */
1035
fd41e603 1036void bfqg_stats_update_legacy_io(struct request_queue *q, struct request *rq);
dc469ba2
BVA
1037void bfqg_stats_update_io_remove(struct bfq_group *bfqg, blk_opf_t opf);
1038void bfqg_stats_update_io_merged(struct bfq_group *bfqg, blk_opf_t opf);
84c7afce 1039void bfqg_stats_update_completion(struct bfq_group *bfqg, u64 start_time_ns,
dc469ba2 1040 u64 io_start_time_ns, blk_opf_t opf);
ea25da48 1041void bfqg_stats_update_dequeue(struct bfq_group *bfqg);
ea25da48 1042void bfqg_stats_set_start_idle_time(struct bfq_group *bfqg);
ea25da48
PV
1043void bfq_bfqq_move(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1044 struct bfq_group *bfqg);
1045
c2090eab
YK
1046#ifdef CONFIG_BFQ_CGROUP_DEBUG
1047void bfqg_stats_update_io_add(struct bfq_group *bfqg, struct bfq_queue *bfqq,
1048 blk_opf_t opf);
1049void bfqg_stats_set_start_empty_time(struct bfq_group *bfqg);
1050void bfqg_stats_update_idle_time(struct bfq_group *bfqg);
1051void bfqg_stats_update_avg_queue_size(struct bfq_group *bfqg);
1052#endif
1053
ea25da48
PV
1054void bfq_init_entity(struct bfq_entity *entity, struct bfq_group *bfqg);
1055void bfq_bic_update_cgroup(struct bfq_io_cq *bic, struct bio *bio);
1056void bfq_end_wr_async(struct bfq_data *bfqd);
4e54a249 1057struct bfq_group *bfq_bio_bfqg(struct bfq_data *bfqd, struct bio *bio);
ea25da48
PV
1058struct blkcg_gq *bfqg_to_blkg(struct bfq_group *bfqg);
1059struct bfq_group *bfqq_group(struct bfq_queue *bfqq);
1060struct bfq_group *bfq_create_group_hierarchy(struct bfq_data *bfqd, int node);
8f9bebc3 1061void bfqg_and_blkg_put(struct bfq_group *bfqg);
ea25da48
PV
1062
1063#ifdef CONFIG_BFQ_GROUP_IOSCHED
659b3394
JA
1064extern struct cftype bfq_blkcg_legacy_files[];
1065extern struct cftype bfq_blkg_files[];
ea25da48
PV
1066extern struct blkcg_policy blkcg_policy_bfq;
1067#endif
1068
1069/* ------------- end of cgroups-support interface ------------- */
1070
1071/* - interface of the internal hierarchical B-WF2Q+ scheduler - */
1072
1073#ifdef CONFIG_BFQ_GROUP_IOSCHED
1074/* both next loops stop at one of the child entities of the root group */
1075#define for_each_entity(entity) \
1076 for (; entity ; entity = entity->parent)
1077
1078/*
1079 * For each iteration, compute parent in advance, so as to be safe if
1080 * entity is deallocated during the iteration. Such a deallocation may
1081 * happen as a consequence of a bfq_put_queue that frees the bfq_queue
1082 * containing entity.
1083 */
1084#define for_each_entity_safe(entity, parent) \
1085 for (; entity && ({ parent = entity->parent; 1; }); entity = parent)
1086
1087#else /* CONFIG_BFQ_GROUP_IOSCHED */
1088/*
1089 * Next two macros are fake loops when cgroups support is not
1090 * enabled. I fact, in such a case, there is only one level to go up
1091 * (to reach the root group).
1092 */
1093#define for_each_entity(entity) \
1094 for (; entity ; entity = NULL)
1095
1096#define for_each_entity_safe(entity, parent) \
1097 for (parent = NULL; entity ; entity = parent)
1098#endif /* CONFIG_BFQ_GROUP_IOSCHED */
1099
ea25da48 1100struct bfq_queue *bfq_entity_to_bfqq(struct bfq_entity *entity);
73d58118 1101unsigned int bfq_tot_busy_queues(struct bfq_data *bfqd);
ea25da48
PV
1102struct bfq_service_tree *bfq_entity_service_tree(struct bfq_entity *entity);
1103struct bfq_entity *bfq_entity_of(struct rb_node *node);
1104unsigned short bfq_ioprio_to_weight(int ioprio);
1105void bfq_put_idle_entity(struct bfq_service_tree *st,
1106 struct bfq_entity *entity);
1107struct bfq_service_tree *
1108__bfq_entity_update_weight_prio(struct bfq_service_tree *old_st,
431b17f9
PV
1109 struct bfq_entity *entity,
1110 bool update_class_too);
ea25da48
PV
1111void bfq_bfqq_served(struct bfq_queue *bfqq, int served);
1112void bfq_bfqq_charge_time(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1113 unsigned long time_ms);
1114bool __bfq_deactivate_entity(struct bfq_entity *entity,
1115 bool ins_into_idle_tree);
1116bool next_queue_may_preempt(struct bfq_data *bfqd);
1117struct bfq_queue *bfq_get_next_queue(struct bfq_data *bfqd);
eed47d19 1118bool __bfq_bfqd_reset_in_service(struct bfq_data *bfqd);
ea25da48
PV
1119void bfq_deactivate_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1120 bool ins_into_idle_tree, bool expiration);
1121void bfq_activate_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq);
80294c3b
PV
1122void bfq_requeue_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq,
1123 bool expiration);
d322f355
YK
1124void bfq_del_bfqq_busy(struct bfq_queue *bfqq, bool expiration);
1125void bfq_add_bfqq_busy(struct bfq_queue *bfqq);
3d89bd12
YK
1126void bfq_add_bfqq_in_groups_with_pending_reqs(struct bfq_queue *bfqq);
1127void bfq_del_bfqq_in_groups_with_pending_reqs(struct bfq_queue *bfqq);
ea25da48
PV
1128
1129/* --------------- end of interface of B-WF2Q+ ---------------- */
1130
1131/* Logging facilities. */
582f04e1 1132static inline void bfq_bfqq_name(struct bfq_queue *bfqq, char *str, int len)
1e66413c 1133{
582f04e1
JK
1134 char type = bfq_bfqq_sync(bfqq) ? 'S' : 'A';
1135
1136 if (bfqq->pid != -1)
1137 snprintf(str, len, "bfq%d%c", bfqq->pid, type);
1e66413c 1138 else
582f04e1 1139 snprintf(str, len, "bfqSHARED-%c", type);
1e66413c
FP
1140}
1141
ea25da48
PV
1142#ifdef CONFIG_BFQ_GROUP_IOSCHED
1143struct bfq_group *bfqq_group(struct bfq_queue *bfqq);
1144
1145#define bfq_log_bfqq(bfqd, bfqq, fmt, args...) do { \
582f04e1 1146 char pid_str[MAX_BFQQ_NAME_LENGTH]; \
40d47c15
DM
1147 if (likely(!blk_trace_note_message_enabled((bfqd)->queue))) \
1148 break; \
582f04e1 1149 bfq_bfqq_name((bfqq), pid_str, MAX_BFQQ_NAME_LENGTH); \
35fe6d76 1150 blk_add_cgroup_trace_msg((bfqd)->queue, \
f4a6a61c 1151 &bfqg_to_blkg(bfqq_group(bfqq))->blkcg->css, \
582f04e1 1152 "%s " fmt, pid_str, ##args); \
ea25da48
PV
1153} while (0)
1154
35fe6d76
SL
1155#define bfq_log_bfqg(bfqd, bfqg, fmt, args...) do { \
1156 blk_add_cgroup_trace_msg((bfqd)->queue, \
f4a6a61c 1157 &bfqg_to_blkg(bfqg)->blkcg->css, fmt, ##args); \
35fe6d76 1158} while (0)
ea25da48
PV
1159
1160#else /* CONFIG_BFQ_GROUP_IOSCHED */
1161
1e66413c 1162#define bfq_log_bfqq(bfqd, bfqq, fmt, args...) do { \
582f04e1 1163 char pid_str[MAX_BFQQ_NAME_LENGTH]; \
40d47c15
DM
1164 if (likely(!blk_trace_note_message_enabled((bfqd)->queue))) \
1165 break; \
582f04e1
JK
1166 bfq_bfqq_name((bfqq), pid_str, MAX_BFQQ_NAME_LENGTH); \
1167 blk_add_trace_msg((bfqd)->queue, "%s " fmt, pid_str, ##args); \
1e66413c 1168} while (0)
ea25da48
PV
1169#define bfq_log_bfqg(bfqd, bfqg, fmt, args...) do {} while (0)
1170
1171#endif /* CONFIG_BFQ_GROUP_IOSCHED */
1172
1173#define bfq_log(bfqd, fmt, args...) \
1174 blk_add_trace_msg((bfqd)->queue, "bfq " fmt, ##args)
1175
1176#endif /* _BFQ_H */