]>
Commit | Line | Data |
---|---|---|
3dcf60bc | 1 | // SPDX-License-Identifier: GPL-2.0 |
945ffb60 JA |
2 | /* |
3 | * MQ Deadline i/o scheduler - adaptation of the legacy deadline scheduler, | |
4 | * for the blk-mq scheduling framework | |
5 | * | |
6 | * Copyright (C) 2016 Jens Axboe <[email protected]> | |
7 | */ | |
8 | #include <linux/kernel.h> | |
9 | #include <linux/fs.h> | |
10 | #include <linux/blkdev.h> | |
945ffb60 JA |
11 | #include <linux/bio.h> |
12 | #include <linux/module.h> | |
13 | #include <linux/slab.h> | |
14 | #include <linux/init.h> | |
15 | #include <linux/compiler.h> | |
16 | #include <linux/rbtree.h> | |
17 | #include <linux/sbitmap.h> | |
18 | ||
b357e4a6 CK |
19 | #include <trace/events/block.h> |
20 | ||
2e9bc346 | 21 | #include "elevator.h" |
945ffb60 JA |
22 | #include "blk.h" |
23 | #include "blk-mq.h" | |
daaadb3e | 24 | #include "blk-mq-debugfs.h" |
945ffb60 JA |
25 | #include "blk-mq-sched.h" |
26 | ||
27 | /* | |
898bd37a | 28 | * See Documentation/block/deadline-iosched.rst |
945ffb60 JA |
29 | */ |
30 | static const int read_expire = HZ / 2; /* max time before a read is submitted. */ | |
31 | static const int write_expire = 5 * HZ; /* ditto for writes, these limits are SOFT! */ | |
322cff70 BVA |
32 | /* |
33 | * Time after which to dispatch lower priority requests even if higher | |
34 | * priority requests are pending. | |
35 | */ | |
36 | static const int prio_aging_expire = 10 * HZ; | |
945ffb60 JA |
37 | static const int writes_starved = 2; /* max times reads can starve a write */ |
38 | static const int fifo_batch = 16; /* # of sequential requests treated as one | |
39 | by the above parameters. For throughput. */ | |
40 | ||
004a26b3 BVA |
41 | enum dd_data_dir { |
42 | DD_READ = READ, | |
43 | DD_WRITE = WRITE, | |
44 | }; | |
45 | ||
46 | enum { DD_DIR_COUNT = 2 }; | |
47 | ||
c807ab52 BVA |
48 | enum dd_prio { |
49 | DD_RT_PRIO = 0, | |
50 | DD_BE_PRIO = 1, | |
51 | DD_IDLE_PRIO = 2, | |
52 | DD_PRIO_MAX = 2, | |
53 | }; | |
54 | ||
55 | enum { DD_PRIO_COUNT = 3 }; | |
56 | ||
bce0363e BVA |
57 | /* |
58 | * I/O statistics per I/O priority. It is fine if these counters overflow. | |
59 | * What matters is that these counters are at least as wide as | |
60 | * log2(max_outstanding_requests). | |
61 | */ | |
0f783995 | 62 | struct io_stats_per_prio { |
bce0363e BVA |
63 | uint32_t inserted; |
64 | uint32_t merged; | |
65 | uint32_t dispatched; | |
66 | atomic_t completed; | |
38ba64d1 BVA |
67 | }; |
68 | ||
c807ab52 BVA |
69 | /* |
70 | * Deadline scheduler data per I/O priority (enum dd_prio). Requests are | |
71 | * present on both sort_list[] and fifo_list[]. | |
72 | */ | |
73 | struct dd_per_prio { | |
74 | struct list_head dispatch; | |
75 | struct rb_root sort_list[DD_DIR_COUNT]; | |
76 | struct list_head fifo_list[DD_DIR_COUNT]; | |
77 | /* Next request in FIFO order. Read, write or both are NULL. */ | |
78 | struct request *next_rq[DD_DIR_COUNT]; | |
bce0363e | 79 | struct io_stats_per_prio stats; |
c807ab52 BVA |
80 | }; |
81 | ||
945ffb60 JA |
82 | struct deadline_data { |
83 | /* | |
84 | * run time data | |
85 | */ | |
86 | ||
c807ab52 | 87 | struct dd_per_prio per_prio[DD_PRIO_COUNT]; |
945ffb60 | 88 | |
d672d325 BVA |
89 | /* Data direction of latest dispatched request. */ |
90 | enum dd_data_dir last_dir; | |
945ffb60 JA |
91 | unsigned int batching; /* number of sequential requests made */ |
92 | unsigned int starved; /* times reads have starved writes */ | |
93 | ||
94 | /* | |
95 | * settings that change how the i/o scheduler behaves | |
96 | */ | |
004a26b3 | 97 | int fifo_expire[DD_DIR_COUNT]; |
945ffb60 JA |
98 | int fifo_batch; |
99 | int writes_starved; | |
100 | int front_merges; | |
07757588 | 101 | u32 async_depth; |
322cff70 | 102 | int prio_aging_expire; |
945ffb60 JA |
103 | |
104 | spinlock_t lock; | |
5700f691 | 105 | spinlock_t zone_lock; |
c807ab52 BVA |
106 | }; |
107 | ||
108 | /* Maps an I/O priority class to a deadline scheduler priority. */ | |
109 | static const enum dd_prio ioprio_class_to_prio[] = { | |
110 | [IOPRIO_CLASS_NONE] = DD_BE_PRIO, | |
111 | [IOPRIO_CLASS_RT] = DD_RT_PRIO, | |
112 | [IOPRIO_CLASS_BE] = DD_BE_PRIO, | |
113 | [IOPRIO_CLASS_IDLE] = DD_IDLE_PRIO, | |
945ffb60 JA |
114 | }; |
115 | ||
116 | static inline struct rb_root * | |
c807ab52 | 117 | deadline_rb_root(struct dd_per_prio *per_prio, struct request *rq) |
945ffb60 | 118 | { |
c807ab52 BVA |
119 | return &per_prio->sort_list[rq_data_dir(rq)]; |
120 | } | |
121 | ||
122 | /* | |
123 | * Returns the I/O priority class (IOPRIO_CLASS_*) that has been assigned to a | |
124 | * request. | |
125 | */ | |
126 | static u8 dd_rq_ioclass(struct request *rq) | |
127 | { | |
128 | return IOPRIO_PRIO_CLASS(req_get_ioprio(rq)); | |
945ffb60 JA |
129 | } |
130 | ||
015d02f4 DLM |
131 | /* |
132 | * get the request before `rq' in sector-sorted order | |
133 | */ | |
134 | static inline struct request * | |
135 | deadline_earlier_request(struct request *rq) | |
136 | { | |
137 | struct rb_node *node = rb_prev(&rq->rb_node); | |
138 | ||
139 | if (node) | |
140 | return rb_entry_rq(node); | |
141 | ||
142 | return NULL; | |
143 | } | |
144 | ||
945ffb60 JA |
145 | /* |
146 | * get the request after `rq' in sector-sorted order | |
147 | */ | |
148 | static inline struct request * | |
149 | deadline_latter_request(struct request *rq) | |
150 | { | |
151 | struct rb_node *node = rb_next(&rq->rb_node); | |
152 | ||
153 | if (node) | |
154 | return rb_entry_rq(node); | |
155 | ||
156 | return NULL; | |
157 | } | |
158 | ||
159 | static void | |
c807ab52 | 160 | deadline_add_rq_rb(struct dd_per_prio *per_prio, struct request *rq) |
945ffb60 | 161 | { |
c807ab52 | 162 | struct rb_root *root = deadline_rb_root(per_prio, rq); |
945ffb60 JA |
163 | |
164 | elv_rb_add(root, rq); | |
165 | } | |
166 | ||
167 | static inline void | |
c807ab52 | 168 | deadline_del_rq_rb(struct dd_per_prio *per_prio, struct request *rq) |
945ffb60 | 169 | { |
004a26b3 | 170 | const enum dd_data_dir data_dir = rq_data_dir(rq); |
945ffb60 | 171 | |
c807ab52 BVA |
172 | if (per_prio->next_rq[data_dir] == rq) |
173 | per_prio->next_rq[data_dir] = deadline_latter_request(rq); | |
945ffb60 | 174 | |
c807ab52 | 175 | elv_rb_del(deadline_rb_root(per_prio, rq), rq); |
945ffb60 JA |
176 | } |
177 | ||
178 | /* | |
179 | * remove rq from rbtree and fifo. | |
180 | */ | |
c807ab52 BVA |
181 | static void deadline_remove_request(struct request_queue *q, |
182 | struct dd_per_prio *per_prio, | |
183 | struct request *rq) | |
945ffb60 | 184 | { |
945ffb60 JA |
185 | list_del_init(&rq->queuelist); |
186 | ||
187 | /* | |
188 | * We might not be on the rbtree, if we are doing an insert merge | |
189 | */ | |
190 | if (!RB_EMPTY_NODE(&rq->rb_node)) | |
c807ab52 | 191 | deadline_del_rq_rb(per_prio, rq); |
945ffb60 JA |
192 | |
193 | elv_rqhash_del(q, rq); | |
194 | if (q->last_merge == rq) | |
195 | q->last_merge = NULL; | |
196 | } | |
197 | ||
198 | static void dd_request_merged(struct request_queue *q, struct request *req, | |
34fe7c05 | 199 | enum elv_merge type) |
945ffb60 JA |
200 | { |
201 | struct deadline_data *dd = q->elevator->elevator_data; | |
c807ab52 BVA |
202 | const u8 ioprio_class = dd_rq_ioclass(req); |
203 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; | |
204 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; | |
945ffb60 JA |
205 | |
206 | /* | |
207 | * if the merge was a front merge, we need to reposition request | |
208 | */ | |
209 | if (type == ELEVATOR_FRONT_MERGE) { | |
c807ab52 BVA |
210 | elv_rb_del(deadline_rb_root(per_prio, req), req); |
211 | deadline_add_rq_rb(per_prio, req); | |
945ffb60 JA |
212 | } |
213 | } | |
214 | ||
46eae2e3 BVA |
215 | /* |
216 | * Callback function that is invoked after @next has been merged into @req. | |
217 | */ | |
945ffb60 JA |
218 | static void dd_merged_requests(struct request_queue *q, struct request *req, |
219 | struct request *next) | |
220 | { | |
38ba64d1 | 221 | struct deadline_data *dd = q->elevator->elevator_data; |
c807ab52 BVA |
222 | const u8 ioprio_class = dd_rq_ioclass(next); |
223 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; | |
224 | ||
bce0363e BVA |
225 | lockdep_assert_held(&dd->lock); |
226 | ||
227 | dd->per_prio[prio].stats.merged++; | |
38ba64d1 | 228 | |
945ffb60 JA |
229 | /* |
230 | * if next expires before rq, assign its expire time to rq | |
231 | * and move into next position (next will be deleted) in fifo | |
232 | */ | |
233 | if (!list_empty(&req->queuelist) && !list_empty(&next->queuelist)) { | |
234 | if (time_before((unsigned long)next->fifo_time, | |
235 | (unsigned long)req->fifo_time)) { | |
236 | list_move(&req->queuelist, &next->queuelist); | |
237 | req->fifo_time = next->fifo_time; | |
238 | } | |
239 | } | |
240 | ||
241 | /* | |
242 | * kill knowledge of next, this one is a goner | |
243 | */ | |
c807ab52 | 244 | deadline_remove_request(q, &dd->per_prio[prio], next); |
945ffb60 JA |
245 | } |
246 | ||
247 | /* | |
248 | * move an entry to dispatch queue | |
249 | */ | |
250 | static void | |
c807ab52 BVA |
251 | deadline_move_request(struct deadline_data *dd, struct dd_per_prio *per_prio, |
252 | struct request *rq) | |
945ffb60 | 253 | { |
004a26b3 | 254 | const enum dd_data_dir data_dir = rq_data_dir(rq); |
945ffb60 | 255 | |
c807ab52 | 256 | per_prio->next_rq[data_dir] = deadline_latter_request(rq); |
945ffb60 JA |
257 | |
258 | /* | |
259 | * take it off the sort and fifo list | |
260 | */ | |
c807ab52 | 261 | deadline_remove_request(rq->q, per_prio, rq); |
945ffb60 JA |
262 | } |
263 | ||
32f64cad BVA |
264 | /* Number of requests queued for a given priority level. */ |
265 | static u32 dd_queued(struct deadline_data *dd, enum dd_prio prio) | |
266 | { | |
bce0363e BVA |
267 | const struct io_stats_per_prio *stats = &dd->per_prio[prio].stats; |
268 | ||
269 | lockdep_assert_held(&dd->lock); | |
270 | ||
271 | return stats->inserted - atomic_read(&stats->completed); | |
32f64cad BVA |
272 | } |
273 | ||
945ffb60 JA |
274 | /* |
275 | * deadline_check_fifo returns 0 if there are no expired requests on the fifo, | |
276 | * 1 otherwise. Requires !list_empty(&dd->fifo_list[data_dir]) | |
277 | */ | |
c807ab52 | 278 | static inline int deadline_check_fifo(struct dd_per_prio *per_prio, |
004a26b3 | 279 | enum dd_data_dir data_dir) |
945ffb60 | 280 | { |
c807ab52 | 281 | struct request *rq = rq_entry_fifo(per_prio->fifo_list[data_dir].next); |
945ffb60 JA |
282 | |
283 | /* | |
284 | * rq is expired! | |
285 | */ | |
286 | if (time_after_eq(jiffies, (unsigned long)rq->fifo_time)) | |
287 | return 1; | |
288 | ||
289 | return 0; | |
290 | } | |
291 | ||
015d02f4 DLM |
292 | /* |
293 | * Check if rq has a sequential request preceding it. | |
294 | */ | |
3692fec8 | 295 | static bool deadline_is_seq_write(struct deadline_data *dd, struct request *rq) |
015d02f4 DLM |
296 | { |
297 | struct request *prev = deadline_earlier_request(rq); | |
298 | ||
299 | if (!prev) | |
300 | return false; | |
301 | ||
302 | return blk_rq_pos(prev) + blk_rq_sectors(prev) == blk_rq_pos(rq); | |
303 | } | |
304 | ||
305 | /* | |
306 | * Skip all write requests that are sequential from @rq, even if we cross | |
307 | * a zone boundary. | |
308 | */ | |
309 | static struct request *deadline_skip_seq_writes(struct deadline_data *dd, | |
310 | struct request *rq) | |
311 | { | |
312 | sector_t pos = blk_rq_pos(rq); | |
313 | sector_t skipped_sectors = 0; | |
314 | ||
315 | while (rq) { | |
316 | if (blk_rq_pos(rq) != pos + skipped_sectors) | |
317 | break; | |
318 | skipped_sectors += blk_rq_sectors(rq); | |
319 | rq = deadline_latter_request(rq); | |
320 | } | |
321 | ||
322 | return rq; | |
323 | } | |
324 | ||
bf09ce56 DLM |
325 | /* |
326 | * For the specified data direction, return the next request to | |
327 | * dispatch using arrival ordered lists. | |
328 | */ | |
329 | static struct request * | |
c807ab52 BVA |
330 | deadline_fifo_request(struct deadline_data *dd, struct dd_per_prio *per_prio, |
331 | enum dd_data_dir data_dir) | |
bf09ce56 | 332 | { |
5700f691 DLM |
333 | struct request *rq; |
334 | unsigned long flags; | |
335 | ||
c807ab52 | 336 | if (list_empty(&per_prio->fifo_list[data_dir])) |
bf09ce56 DLM |
337 | return NULL; |
338 | ||
c807ab52 | 339 | rq = rq_entry_fifo(per_prio->fifo_list[data_dir].next); |
004a26b3 | 340 | if (data_dir == DD_READ || !blk_queue_is_zoned(rq->q)) |
5700f691 DLM |
341 | return rq; |
342 | ||
343 | /* | |
344 | * Look for a write request that can be dispatched, that is one with | |
015d02f4 DLM |
345 | * an unlocked target zone. For some HDDs, breaking a sequential |
346 | * write stream can lead to lower throughput, so make sure to preserve | |
347 | * sequential write streams, even if that stream crosses into the next | |
348 | * zones and these zones are unlocked. | |
5700f691 DLM |
349 | */ |
350 | spin_lock_irqsave(&dd->zone_lock, flags); | |
c807ab52 | 351 | list_for_each_entry(rq, &per_prio->fifo_list[DD_WRITE], queuelist) { |
015d02f4 DLM |
352 | if (blk_req_can_dispatch_to_zone(rq) && |
353 | (blk_queue_nonrot(rq->q) || | |
3692fec8 | 354 | !deadline_is_seq_write(dd, rq))) |
5700f691 DLM |
355 | goto out; |
356 | } | |
357 | rq = NULL; | |
358 | out: | |
359 | spin_unlock_irqrestore(&dd->zone_lock, flags); | |
360 | ||
361 | return rq; | |
bf09ce56 DLM |
362 | } |
363 | ||
364 | /* | |
365 | * For the specified data direction, return the next request to | |
366 | * dispatch using sector position sorted lists. | |
367 | */ | |
368 | static struct request * | |
c807ab52 BVA |
369 | deadline_next_request(struct deadline_data *dd, struct dd_per_prio *per_prio, |
370 | enum dd_data_dir data_dir) | |
bf09ce56 | 371 | { |
5700f691 DLM |
372 | struct request *rq; |
373 | unsigned long flags; | |
374 | ||
c807ab52 | 375 | rq = per_prio->next_rq[data_dir]; |
5700f691 DLM |
376 | if (!rq) |
377 | return NULL; | |
378 | ||
004a26b3 | 379 | if (data_dir == DD_READ || !blk_queue_is_zoned(rq->q)) |
5700f691 DLM |
380 | return rq; |
381 | ||
382 | /* | |
383 | * Look for a write request that can be dispatched, that is one with | |
015d02f4 DLM |
384 | * an unlocked target zone. For some HDDs, breaking a sequential |
385 | * write stream can lead to lower throughput, so make sure to preserve | |
386 | * sequential write streams, even if that stream crosses into the next | |
387 | * zones and these zones are unlocked. | |
5700f691 DLM |
388 | */ |
389 | spin_lock_irqsave(&dd->zone_lock, flags); | |
390 | while (rq) { | |
391 | if (blk_req_can_dispatch_to_zone(rq)) | |
392 | break; | |
015d02f4 DLM |
393 | if (blk_queue_nonrot(rq->q)) |
394 | rq = deadline_latter_request(rq); | |
395 | else | |
396 | rq = deadline_skip_seq_writes(dd, rq); | |
5700f691 DLM |
397 | } |
398 | spin_unlock_irqrestore(&dd->zone_lock, flags); | |
399 | ||
400 | return rq; | |
bf09ce56 DLM |
401 | } |
402 | ||
322cff70 BVA |
403 | /* |
404 | * Returns true if and only if @rq started after @latest_start where | |
405 | * @latest_start is in jiffies. | |
406 | */ | |
407 | static bool started_after(struct deadline_data *dd, struct request *rq, | |
408 | unsigned long latest_start) | |
409 | { | |
410 | unsigned long start_time = (unsigned long)rq->fifo_time; | |
411 | ||
412 | start_time -= dd->fifo_expire[rq_data_dir(rq)]; | |
413 | ||
414 | return time_after(start_time, latest_start); | |
415 | } | |
416 | ||
945ffb60 JA |
417 | /* |
418 | * deadline_dispatch_requests selects the best request according to | |
322cff70 | 419 | * read/write expire, fifo_batch, etc and with a start time <= @latest_start. |
945ffb60 | 420 | */ |
c807ab52 | 421 | static struct request *__dd_dispatch_request(struct deadline_data *dd, |
322cff70 BVA |
422 | struct dd_per_prio *per_prio, |
423 | unsigned long latest_start) | |
945ffb60 | 424 | { |
bf09ce56 | 425 | struct request *rq, *next_rq; |
004a26b3 | 426 | enum dd_data_dir data_dir; |
38ba64d1 BVA |
427 | enum dd_prio prio; |
428 | u8 ioprio_class; | |
945ffb60 | 429 | |
3bd473f4 BVA |
430 | lockdep_assert_held(&dd->lock); |
431 | ||
c807ab52 BVA |
432 | if (!list_empty(&per_prio->dispatch)) { |
433 | rq = list_first_entry(&per_prio->dispatch, struct request, | |
434 | queuelist); | |
322cff70 BVA |
435 | if (started_after(dd, rq, latest_start)) |
436 | return NULL; | |
945ffb60 JA |
437 | list_del_init(&rq->queuelist); |
438 | goto done; | |
439 | } | |
440 | ||
945ffb60 JA |
441 | /* |
442 | * batches are currently reads XOR writes | |
443 | */ | |
c807ab52 | 444 | rq = deadline_next_request(dd, per_prio, dd->last_dir); |
945ffb60 JA |
445 | if (rq && dd->batching < dd->fifo_batch) |
446 | /* we have a next request are still entitled to batch */ | |
447 | goto dispatch_request; | |
448 | ||
449 | /* | |
450 | * at this point we are not running a batch. select the appropriate | |
451 | * data direction (read / write) | |
452 | */ | |
453 | ||
c807ab52 BVA |
454 | if (!list_empty(&per_prio->fifo_list[DD_READ])) { |
455 | BUG_ON(RB_EMPTY_ROOT(&per_prio->sort_list[DD_READ])); | |
945ffb60 | 456 | |
c807ab52 | 457 | if (deadline_fifo_request(dd, per_prio, DD_WRITE) && |
5700f691 | 458 | (dd->starved++ >= dd->writes_starved)) |
945ffb60 JA |
459 | goto dispatch_writes; |
460 | ||
004a26b3 | 461 | data_dir = DD_READ; |
945ffb60 JA |
462 | |
463 | goto dispatch_find_request; | |
464 | } | |
465 | ||
466 | /* | |
467 | * there are either no reads or writes have been starved | |
468 | */ | |
469 | ||
c807ab52 | 470 | if (!list_empty(&per_prio->fifo_list[DD_WRITE])) { |
945ffb60 | 471 | dispatch_writes: |
c807ab52 | 472 | BUG_ON(RB_EMPTY_ROOT(&per_prio->sort_list[DD_WRITE])); |
945ffb60 JA |
473 | |
474 | dd->starved = 0; | |
475 | ||
004a26b3 | 476 | data_dir = DD_WRITE; |
945ffb60 JA |
477 | |
478 | goto dispatch_find_request; | |
479 | } | |
480 | ||
481 | return NULL; | |
482 | ||
483 | dispatch_find_request: | |
484 | /* | |
485 | * we are not running a batch, find best request for selected data_dir | |
486 | */ | |
c807ab52 BVA |
487 | next_rq = deadline_next_request(dd, per_prio, data_dir); |
488 | if (deadline_check_fifo(per_prio, data_dir) || !next_rq) { | |
945ffb60 JA |
489 | /* |
490 | * A deadline has expired, the last request was in the other | |
491 | * direction, or we have run out of higher-sectored requests. | |
492 | * Start again from the request with the earliest expiry time. | |
493 | */ | |
c807ab52 | 494 | rq = deadline_fifo_request(dd, per_prio, data_dir); |
945ffb60 JA |
495 | } else { |
496 | /* | |
497 | * The last req was the same dir and we have a next request in | |
498 | * sort order. No expired requests so continue on from here. | |
499 | */ | |
bf09ce56 | 500 | rq = next_rq; |
945ffb60 JA |
501 | } |
502 | ||
5700f691 DLM |
503 | /* |
504 | * For a zoned block device, if we only have writes queued and none of | |
505 | * them can be dispatched, rq will be NULL. | |
506 | */ | |
507 | if (!rq) | |
508 | return NULL; | |
509 | ||
d672d325 | 510 | dd->last_dir = data_dir; |
945ffb60 JA |
511 | dd->batching = 0; |
512 | ||
513 | dispatch_request: | |
322cff70 BVA |
514 | if (started_after(dd, rq, latest_start)) |
515 | return NULL; | |
516 | ||
945ffb60 JA |
517 | /* |
518 | * rq is the selected appropriate request. | |
519 | */ | |
520 | dd->batching++; | |
c807ab52 | 521 | deadline_move_request(dd, per_prio, rq); |
945ffb60 | 522 | done: |
38ba64d1 BVA |
523 | ioprio_class = dd_rq_ioclass(rq); |
524 | prio = ioprio_class_to_prio[ioprio_class]; | |
bce0363e | 525 | dd->per_prio[prio].stats.dispatched++; |
5700f691 DLM |
526 | /* |
527 | * If the request needs its target zone locked, do it. | |
528 | */ | |
529 | blk_req_zone_write_lock(rq); | |
945ffb60 JA |
530 | rq->rq_flags |= RQF_STARTED; |
531 | return rq; | |
532 | } | |
533 | ||
322cff70 BVA |
534 | /* |
535 | * Check whether there are any requests with priority other than DD_RT_PRIO | |
536 | * that were inserted more than prio_aging_expire jiffies ago. | |
537 | */ | |
538 | static struct request *dd_dispatch_prio_aged_requests(struct deadline_data *dd, | |
539 | unsigned long now) | |
540 | { | |
541 | struct request *rq; | |
542 | enum dd_prio prio; | |
543 | int prio_cnt; | |
544 | ||
545 | lockdep_assert_held(&dd->lock); | |
546 | ||
547 | prio_cnt = !!dd_queued(dd, DD_RT_PRIO) + !!dd_queued(dd, DD_BE_PRIO) + | |
548 | !!dd_queued(dd, DD_IDLE_PRIO); | |
549 | if (prio_cnt < 2) | |
550 | return NULL; | |
551 | ||
552 | for (prio = DD_BE_PRIO; prio <= DD_PRIO_MAX; prio++) { | |
553 | rq = __dd_dispatch_request(dd, &dd->per_prio[prio], | |
554 | now - dd->prio_aging_expire); | |
555 | if (rq) | |
556 | return rq; | |
557 | } | |
558 | ||
559 | return NULL; | |
560 | } | |
561 | ||
ca11f209 | 562 | /* |
46eae2e3 BVA |
563 | * Called from blk_mq_run_hw_queue() -> __blk_mq_sched_dispatch_requests(). |
564 | * | |
ca11f209 | 565 | * One confusing aspect here is that we get called for a specific |
7211aef8 | 566 | * hardware queue, but we may return a request that is for a |
ca11f209 JA |
567 | * different hardware queue. This is because mq-deadline has shared |
568 | * state for all hardware queues, in terms of sorting, FIFOs, etc. | |
569 | */ | |
c13660a0 | 570 | static struct request *dd_dispatch_request(struct blk_mq_hw_ctx *hctx) |
945ffb60 JA |
571 | { |
572 | struct deadline_data *dd = hctx->queue->elevator->elevator_data; | |
322cff70 | 573 | const unsigned long now = jiffies; |
7b05bf77 | 574 | struct request *rq; |
c807ab52 | 575 | enum dd_prio prio; |
945ffb60 JA |
576 | |
577 | spin_lock(&dd->lock); | |
322cff70 BVA |
578 | rq = dd_dispatch_prio_aged_requests(dd, now); |
579 | if (rq) | |
580 | goto unlock; | |
581 | ||
582 | /* | |
583 | * Next, dispatch requests in priority order. Ignore lower priority | |
584 | * requests if any higher priority requests are pending. | |
585 | */ | |
fb926032 | 586 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) { |
322cff70 BVA |
587 | rq = __dd_dispatch_request(dd, &dd->per_prio[prio], now); |
588 | if (rq || dd_queued(dd, prio)) | |
c807ab52 BVA |
589 | break; |
590 | } | |
322cff70 BVA |
591 | |
592 | unlock: | |
945ffb60 | 593 | spin_unlock(&dd->lock); |
c13660a0 JA |
594 | |
595 | return rq; | |
945ffb60 JA |
596 | } |
597 | ||
07757588 BVA |
598 | /* |
599 | * Called by __blk_mq_alloc_request(). The shallow_depth value set by this | |
600 | * function is used by __blk_mq_get_tag(). | |
601 | */ | |
f8359efe | 602 | static void dd_limit_depth(blk_opf_t opf, struct blk_mq_alloc_data *data) |
07757588 BVA |
603 | { |
604 | struct deadline_data *dd = data->q->elevator->elevator_data; | |
605 | ||
606 | /* Do not throttle synchronous reads. */ | |
f8359efe | 607 | if (op_is_sync(opf) && !op_is_write(opf)) |
07757588 BVA |
608 | return; |
609 | ||
610 | /* | |
611 | * Throttle asynchronous requests and writes such that these requests | |
612 | * do not block the allocation of synchronous requests. | |
613 | */ | |
614 | data->shallow_depth = dd->async_depth; | |
615 | } | |
616 | ||
617 | /* Called by blk_mq_update_nr_requests(). */ | |
618 | static void dd_depth_updated(struct blk_mq_hw_ctx *hctx) | |
619 | { | |
620 | struct request_queue *q = hctx->queue; | |
621 | struct deadline_data *dd = q->elevator->elevator_data; | |
622 | struct blk_mq_tags *tags = hctx->sched_tags; | |
623 | ||
624 | dd->async_depth = max(1UL, 3 * q->nr_requests / 4); | |
625 | ||
ae0f1a73 | 626 | sbitmap_queue_min_shallow_depth(&tags->bitmap_tags, dd->async_depth); |
07757588 BVA |
627 | } |
628 | ||
629 | /* Called by blk_mq_init_hctx() and blk_mq_init_sched(). */ | |
630 | static int dd_init_hctx(struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx) | |
631 | { | |
632 | dd_depth_updated(hctx); | |
633 | return 0; | |
634 | } | |
635 | ||
3e9a99eb | 636 | static void dd_exit_sched(struct elevator_queue *e) |
945ffb60 JA |
637 | { |
638 | struct deadline_data *dd = e->elevator_data; | |
c807ab52 | 639 | enum dd_prio prio; |
945ffb60 | 640 | |
c807ab52 BVA |
641 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) { |
642 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; | |
bce0363e BVA |
643 | const struct io_stats_per_prio *stats = &per_prio->stats; |
644 | uint32_t queued; | |
c807ab52 BVA |
645 | |
646 | WARN_ON_ONCE(!list_empty(&per_prio->fifo_list[DD_READ])); | |
647 | WARN_ON_ONCE(!list_empty(&per_prio->fifo_list[DD_WRITE])); | |
bce0363e BVA |
648 | |
649 | spin_lock(&dd->lock); | |
650 | queued = dd_queued(dd, prio); | |
651 | spin_unlock(&dd->lock); | |
652 | ||
653 | WARN_ONCE(queued != 0, | |
32f64cad | 654 | "statistics for priority %d: i %u m %u d %u c %u\n", |
bce0363e BVA |
655 | prio, stats->inserted, stats->merged, |
656 | stats->dispatched, atomic_read(&stats->completed)); | |
c807ab52 | 657 | } |
945ffb60 JA |
658 | |
659 | kfree(dd); | |
660 | } | |
661 | ||
662 | /* | |
0f783995 | 663 | * initialize elevator private data (deadline_data). |
945ffb60 | 664 | */ |
3e9a99eb | 665 | static int dd_init_sched(struct request_queue *q, struct elevator_type *e) |
945ffb60 JA |
666 | { |
667 | struct deadline_data *dd; | |
668 | struct elevator_queue *eq; | |
c807ab52 BVA |
669 | enum dd_prio prio; |
670 | int ret = -ENOMEM; | |
945ffb60 JA |
671 | |
672 | eq = elevator_alloc(q, e); | |
673 | if (!eq) | |
c807ab52 | 674 | return ret; |
945ffb60 JA |
675 | |
676 | dd = kzalloc_node(sizeof(*dd), GFP_KERNEL, q->node); | |
c807ab52 BVA |
677 | if (!dd) |
678 | goto put_eq; | |
679 | ||
945ffb60 JA |
680 | eq->elevator_data = dd; |
681 | ||
c807ab52 BVA |
682 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) { |
683 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; | |
684 | ||
685 | INIT_LIST_HEAD(&per_prio->dispatch); | |
686 | INIT_LIST_HEAD(&per_prio->fifo_list[DD_READ]); | |
687 | INIT_LIST_HEAD(&per_prio->fifo_list[DD_WRITE]); | |
688 | per_prio->sort_list[DD_READ] = RB_ROOT; | |
689 | per_prio->sort_list[DD_WRITE] = RB_ROOT; | |
690 | } | |
004a26b3 BVA |
691 | dd->fifo_expire[DD_READ] = read_expire; |
692 | dd->fifo_expire[DD_WRITE] = write_expire; | |
945ffb60 JA |
693 | dd->writes_starved = writes_starved; |
694 | dd->front_merges = 1; | |
d672d325 | 695 | dd->last_dir = DD_WRITE; |
945ffb60 | 696 | dd->fifo_batch = fifo_batch; |
322cff70 | 697 | dd->prio_aging_expire = prio_aging_expire; |
945ffb60 | 698 | spin_lock_init(&dd->lock); |
5700f691 | 699 | spin_lock_init(&dd->zone_lock); |
945ffb60 | 700 | |
4d337ceb ML |
701 | /* We dispatch from request queue wide instead of hw queue */ |
702 | blk_queue_flag_set(QUEUE_FLAG_SQ_SCHED, q); | |
703 | ||
945ffb60 JA |
704 | q->elevator = eq; |
705 | return 0; | |
c807ab52 BVA |
706 | |
707 | put_eq: | |
708 | kobject_put(&eq->kobj); | |
709 | return ret; | |
945ffb60 JA |
710 | } |
711 | ||
46eae2e3 BVA |
712 | /* |
713 | * Try to merge @bio into an existing request. If @bio has been merged into | |
714 | * an existing request, store the pointer to that request into *@rq. | |
715 | */ | |
945ffb60 JA |
716 | static int dd_request_merge(struct request_queue *q, struct request **rq, |
717 | struct bio *bio) | |
718 | { | |
719 | struct deadline_data *dd = q->elevator->elevator_data; | |
c807ab52 BVA |
720 | const u8 ioprio_class = IOPRIO_PRIO_CLASS(bio->bi_ioprio); |
721 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; | |
722 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; | |
945ffb60 JA |
723 | sector_t sector = bio_end_sector(bio); |
724 | struct request *__rq; | |
725 | ||
726 | if (!dd->front_merges) | |
727 | return ELEVATOR_NO_MERGE; | |
728 | ||
c807ab52 | 729 | __rq = elv_rb_find(&per_prio->sort_list[bio_data_dir(bio)], sector); |
945ffb60 JA |
730 | if (__rq) { |
731 | BUG_ON(sector != blk_rq_pos(__rq)); | |
732 | ||
733 | if (elv_bio_merge_ok(__rq, bio)) { | |
734 | *rq = __rq; | |
866663b7 ML |
735 | if (blk_discard_mergable(__rq)) |
736 | return ELEVATOR_DISCARD_MERGE; | |
945ffb60 JA |
737 | return ELEVATOR_FRONT_MERGE; |
738 | } | |
739 | } | |
740 | ||
741 | return ELEVATOR_NO_MERGE; | |
742 | } | |
743 | ||
46eae2e3 BVA |
744 | /* |
745 | * Attempt to merge a bio into an existing request. This function is called | |
746 | * before @bio is associated with a request. | |
747 | */ | |
efed9a33 | 748 | static bool dd_bio_merge(struct request_queue *q, struct bio *bio, |
14ccb66b | 749 | unsigned int nr_segs) |
945ffb60 | 750 | { |
945ffb60 | 751 | struct deadline_data *dd = q->elevator->elevator_data; |
e4d750c9 JA |
752 | struct request *free = NULL; |
753 | bool ret; | |
945ffb60 JA |
754 | |
755 | spin_lock(&dd->lock); | |
14ccb66b | 756 | ret = blk_mq_sched_try_merge(q, bio, nr_segs, &free); |
945ffb60 JA |
757 | spin_unlock(&dd->lock); |
758 | ||
e4d750c9 JA |
759 | if (free) |
760 | blk_mq_free_request(free); | |
761 | ||
945ffb60 JA |
762 | return ret; |
763 | } | |
764 | ||
765 | /* | |
766 | * add rq to rbtree and fifo | |
767 | */ | |
768 | static void dd_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, | |
769 | bool at_head) | |
770 | { | |
771 | struct request_queue *q = hctx->queue; | |
772 | struct deadline_data *dd = q->elevator->elevator_data; | |
004a26b3 | 773 | const enum dd_data_dir data_dir = rq_data_dir(rq); |
c807ab52 BVA |
774 | u16 ioprio = req_get_ioprio(rq); |
775 | u8 ioprio_class = IOPRIO_PRIO_CLASS(ioprio); | |
776 | struct dd_per_prio *per_prio; | |
777 | enum dd_prio prio; | |
fd2ef39c | 778 | LIST_HEAD(free); |
945ffb60 | 779 | |
3bd473f4 BVA |
780 | lockdep_assert_held(&dd->lock); |
781 | ||
5700f691 DLM |
782 | /* |
783 | * This may be a requeue of a write request that has locked its | |
784 | * target zone. If it is the case, this releases the zone lock. | |
785 | */ | |
786 | blk_req_zone_write_unlock(rq); | |
787 | ||
c807ab52 | 788 | prio = ioprio_class_to_prio[ioprio_class]; |
bce0363e | 789 | per_prio = &dd->per_prio[prio]; |
e2c7275d | 790 | if (!rq->elv.priv[0]) { |
bce0363e | 791 | per_prio->stats.inserted++; |
e2c7275d BVA |
792 | rq->elv.priv[0] = (void *)(uintptr_t)1; |
793 | } | |
c807ab52 | 794 | |
fd2ef39c JK |
795 | if (blk_mq_sched_try_insert_merge(q, rq, &free)) { |
796 | blk_mq_free_requests(&free); | |
945ffb60 | 797 | return; |
fd2ef39c | 798 | } |
945ffb60 | 799 | |
b357e4a6 | 800 | trace_block_rq_insert(rq); |
945ffb60 | 801 | |
7687b38a | 802 | if (at_head) { |
c807ab52 | 803 | list_add(&rq->queuelist, &per_prio->dispatch); |
725f22a1 | 804 | rq->fifo_time = jiffies; |
945ffb60 | 805 | } else { |
c807ab52 | 806 | deadline_add_rq_rb(per_prio, rq); |
945ffb60 JA |
807 | |
808 | if (rq_mergeable(rq)) { | |
809 | elv_rqhash_add(q, rq); | |
810 | if (!q->last_merge) | |
811 | q->last_merge = rq; | |
812 | } | |
813 | ||
814 | /* | |
815 | * set expire time and add to fifo list | |
816 | */ | |
817 | rq->fifo_time = jiffies + dd->fifo_expire[data_dir]; | |
c807ab52 | 818 | list_add_tail(&rq->queuelist, &per_prio->fifo_list[data_dir]); |
945ffb60 JA |
819 | } |
820 | } | |
821 | ||
46eae2e3 | 822 | /* |
05a93117 | 823 | * Called from blk_mq_sched_insert_request() or blk_mq_dispatch_plug_list(). |
46eae2e3 | 824 | */ |
945ffb60 JA |
825 | static void dd_insert_requests(struct blk_mq_hw_ctx *hctx, |
826 | struct list_head *list, bool at_head) | |
827 | { | |
828 | struct request_queue *q = hctx->queue; | |
829 | struct deadline_data *dd = q->elevator->elevator_data; | |
830 | ||
831 | spin_lock(&dd->lock); | |
832 | while (!list_empty(list)) { | |
833 | struct request *rq; | |
834 | ||
835 | rq = list_first_entry(list, struct request, queuelist); | |
836 | list_del_init(&rq->queuelist); | |
837 | dd_insert_request(hctx, rq, at_head); | |
838 | } | |
839 | spin_unlock(&dd->lock); | |
840 | } | |
841 | ||
b6d2b054 | 842 | /* Callback from inside blk_mq_rq_ctx_init(). */ |
5d9c305b | 843 | static void dd_prepare_request(struct request *rq) |
f3bc78d2 | 844 | { |
b6d2b054 | 845 | rq->elv.priv[0] = NULL; |
f3bc78d2 DLM |
846 | } |
847 | ||
2820e5d0 DLM |
848 | static bool dd_has_write_work(struct blk_mq_hw_ctx *hctx) |
849 | { | |
850 | struct deadline_data *dd = hctx->queue->elevator->elevator_data; | |
851 | enum dd_prio p; | |
852 | ||
853 | for (p = 0; p <= DD_PRIO_MAX; p++) | |
854 | if (!list_empty_careful(&dd->per_prio[p].fifo_list[DD_WRITE])) | |
855 | return true; | |
856 | ||
857 | return false; | |
858 | } | |
859 | ||
5700f691 | 860 | /* |
46eae2e3 BVA |
861 | * Callback from inside blk_mq_free_request(). |
862 | * | |
5700f691 DLM |
863 | * For zoned block devices, write unlock the target zone of |
864 | * completed write requests. Do this while holding the zone lock | |
865 | * spinlock so that the zone is never unlocked while deadline_fifo_request() | |
f3bc78d2 DLM |
866 | * or deadline_next_request() are executing. This function is called for |
867 | * all requests, whether or not these requests complete successfully. | |
cb8acabb DLM |
868 | * |
869 | * For a zoned block device, __dd_dispatch_request() may have stopped | |
870 | * dispatching requests if all the queued requests are write requests directed | |
871 | * at zones that are already locked due to on-going write requests. To ensure | |
872 | * write request dispatch progress in this case, mark the queue as needing a | |
873 | * restart to ensure that the queue is run again after completion of the | |
874 | * request and zones being unlocked. | |
5700f691 | 875 | */ |
f3bc78d2 | 876 | static void dd_finish_request(struct request *rq) |
5700f691 DLM |
877 | { |
878 | struct request_queue *q = rq->q; | |
c807ab52 BVA |
879 | struct deadline_data *dd = q->elevator->elevator_data; |
880 | const u8 ioprio_class = dd_rq_ioclass(rq); | |
881 | const enum dd_prio prio = ioprio_class_to_prio[ioprio_class]; | |
882 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; | |
5700f691 | 883 | |
b6d2b054 BVA |
884 | /* |
885 | * The block layer core may call dd_finish_request() without having | |
e2c7275d BVA |
886 | * called dd_insert_requests(). Skip requests that bypassed I/O |
887 | * scheduling. See also blk_mq_request_bypass_insert(). | |
b6d2b054 | 888 | */ |
e2c7275d BVA |
889 | if (!rq->elv.priv[0]) |
890 | return; | |
891 | ||
bce0363e | 892 | atomic_inc(&per_prio->stats.completed); |
38ba64d1 | 893 | |
5700f691 | 894 | if (blk_queue_is_zoned(q)) { |
5700f691 DLM |
895 | unsigned long flags; |
896 | ||
897 | spin_lock_irqsave(&dd->zone_lock, flags); | |
898 | blk_req_zone_write_unlock(rq); | |
899 | spin_unlock_irqrestore(&dd->zone_lock, flags); | |
2820e5d0 DLM |
900 | |
901 | if (dd_has_write_work(rq->mq_hctx)) | |
902 | blk_mq_sched_mark_restart_hctx(rq->mq_hctx); | |
5700f691 DLM |
903 | } |
904 | } | |
905 | ||
c807ab52 BVA |
906 | static bool dd_has_work_for_prio(struct dd_per_prio *per_prio) |
907 | { | |
908 | return !list_empty_careful(&per_prio->dispatch) || | |
909 | !list_empty_careful(&per_prio->fifo_list[DD_READ]) || | |
910 | !list_empty_careful(&per_prio->fifo_list[DD_WRITE]); | |
911 | } | |
912 | ||
945ffb60 JA |
913 | static bool dd_has_work(struct blk_mq_hw_ctx *hctx) |
914 | { | |
915 | struct deadline_data *dd = hctx->queue->elevator->elevator_data; | |
c807ab52 BVA |
916 | enum dd_prio prio; |
917 | ||
918 | for (prio = 0; prio <= DD_PRIO_MAX; prio++) | |
919 | if (dd_has_work_for_prio(&dd->per_prio[prio])) | |
920 | return true; | |
945ffb60 | 921 | |
c807ab52 | 922 | return false; |
945ffb60 JA |
923 | } |
924 | ||
925 | /* | |
926 | * sysfs parts below | |
927 | */ | |
d6d7f013 | 928 | #define SHOW_INT(__FUNC, __VAR) \ |
945ffb60 JA |
929 | static ssize_t __FUNC(struct elevator_queue *e, char *page) \ |
930 | { \ | |
931 | struct deadline_data *dd = e->elevator_data; \ | |
d6d7f013 BVA |
932 | \ |
933 | return sysfs_emit(page, "%d\n", __VAR); \ | |
945ffb60 | 934 | } |
d6d7f013 BVA |
935 | #define SHOW_JIFFIES(__FUNC, __VAR) SHOW_INT(__FUNC, jiffies_to_msecs(__VAR)) |
936 | SHOW_JIFFIES(deadline_read_expire_show, dd->fifo_expire[DD_READ]); | |
937 | SHOW_JIFFIES(deadline_write_expire_show, dd->fifo_expire[DD_WRITE]); | |
322cff70 | 938 | SHOW_JIFFIES(deadline_prio_aging_expire_show, dd->prio_aging_expire); |
d6d7f013 BVA |
939 | SHOW_INT(deadline_writes_starved_show, dd->writes_starved); |
940 | SHOW_INT(deadline_front_merges_show, dd->front_merges); | |
46cdc45a | 941 | SHOW_INT(deadline_async_depth_show, dd->async_depth); |
d6d7f013 BVA |
942 | SHOW_INT(deadline_fifo_batch_show, dd->fifo_batch); |
943 | #undef SHOW_INT | |
944 | #undef SHOW_JIFFIES | |
945ffb60 JA |
945 | |
946 | #define STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, __CONV) \ | |
947 | static ssize_t __FUNC(struct elevator_queue *e, const char *page, size_t count) \ | |
948 | { \ | |
949 | struct deadline_data *dd = e->elevator_data; \ | |
d6d7f013 BVA |
950 | int __data, __ret; \ |
951 | \ | |
952 | __ret = kstrtoint(page, 0, &__data); \ | |
953 | if (__ret < 0) \ | |
954 | return __ret; \ | |
945ffb60 JA |
955 | if (__data < (MIN)) \ |
956 | __data = (MIN); \ | |
957 | else if (__data > (MAX)) \ | |
958 | __data = (MAX); \ | |
d6d7f013 | 959 | *(__PTR) = __CONV(__data); \ |
235f8da1 | 960 | return count; \ |
945ffb60 | 961 | } |
d6d7f013 BVA |
962 | #define STORE_INT(__FUNC, __PTR, MIN, MAX) \ |
963 | STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, ) | |
964 | #define STORE_JIFFIES(__FUNC, __PTR, MIN, MAX) \ | |
965 | STORE_FUNCTION(__FUNC, __PTR, MIN, MAX, msecs_to_jiffies) | |
966 | STORE_JIFFIES(deadline_read_expire_store, &dd->fifo_expire[DD_READ], 0, INT_MAX); | |
967 | STORE_JIFFIES(deadline_write_expire_store, &dd->fifo_expire[DD_WRITE], 0, INT_MAX); | |
322cff70 | 968 | STORE_JIFFIES(deadline_prio_aging_expire_store, &dd->prio_aging_expire, 0, INT_MAX); |
d6d7f013 BVA |
969 | STORE_INT(deadline_writes_starved_store, &dd->writes_starved, INT_MIN, INT_MAX); |
970 | STORE_INT(deadline_front_merges_store, &dd->front_merges, 0, 1); | |
46cdc45a | 971 | STORE_INT(deadline_async_depth_store, &dd->async_depth, 1, INT_MAX); |
d6d7f013 | 972 | STORE_INT(deadline_fifo_batch_store, &dd->fifo_batch, 0, INT_MAX); |
945ffb60 | 973 | #undef STORE_FUNCTION |
d6d7f013 BVA |
974 | #undef STORE_INT |
975 | #undef STORE_JIFFIES | |
945ffb60 JA |
976 | |
977 | #define DD_ATTR(name) \ | |
5657a819 | 978 | __ATTR(name, 0644, deadline_##name##_show, deadline_##name##_store) |
945ffb60 JA |
979 | |
980 | static struct elv_fs_entry deadline_attrs[] = { | |
981 | DD_ATTR(read_expire), | |
982 | DD_ATTR(write_expire), | |
983 | DD_ATTR(writes_starved), | |
984 | DD_ATTR(front_merges), | |
07757588 | 985 | DD_ATTR(async_depth), |
945ffb60 | 986 | DD_ATTR(fifo_batch), |
322cff70 | 987 | DD_ATTR(prio_aging_expire), |
945ffb60 JA |
988 | __ATTR_NULL |
989 | }; | |
990 | ||
daaadb3e | 991 | #ifdef CONFIG_BLK_DEBUG_FS |
c807ab52 | 992 | #define DEADLINE_DEBUGFS_DDIR_ATTRS(prio, data_dir, name) \ |
daaadb3e OS |
993 | static void *deadline_##name##_fifo_start(struct seq_file *m, \ |
994 | loff_t *pos) \ | |
995 | __acquires(&dd->lock) \ | |
996 | { \ | |
997 | struct request_queue *q = m->private; \ | |
998 | struct deadline_data *dd = q->elevator->elevator_data; \ | |
c807ab52 | 999 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
daaadb3e OS |
1000 | \ |
1001 | spin_lock(&dd->lock); \ | |
c807ab52 | 1002 | return seq_list_start(&per_prio->fifo_list[data_dir], *pos); \ |
daaadb3e OS |
1003 | } \ |
1004 | \ | |
1005 | static void *deadline_##name##_fifo_next(struct seq_file *m, void *v, \ | |
1006 | loff_t *pos) \ | |
1007 | { \ | |
1008 | struct request_queue *q = m->private; \ | |
1009 | struct deadline_data *dd = q->elevator->elevator_data; \ | |
c807ab52 | 1010 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
daaadb3e | 1011 | \ |
c807ab52 | 1012 | return seq_list_next(v, &per_prio->fifo_list[data_dir], pos); \ |
daaadb3e OS |
1013 | } \ |
1014 | \ | |
1015 | static void deadline_##name##_fifo_stop(struct seq_file *m, void *v) \ | |
1016 | __releases(&dd->lock) \ | |
1017 | { \ | |
1018 | struct request_queue *q = m->private; \ | |
1019 | struct deadline_data *dd = q->elevator->elevator_data; \ | |
1020 | \ | |
1021 | spin_unlock(&dd->lock); \ | |
1022 | } \ | |
1023 | \ | |
1024 | static const struct seq_operations deadline_##name##_fifo_seq_ops = { \ | |
1025 | .start = deadline_##name##_fifo_start, \ | |
1026 | .next = deadline_##name##_fifo_next, \ | |
1027 | .stop = deadline_##name##_fifo_stop, \ | |
1028 | .show = blk_mq_debugfs_rq_show, \ | |
1029 | }; \ | |
1030 | \ | |
1031 | static int deadline_##name##_next_rq_show(void *data, \ | |
1032 | struct seq_file *m) \ | |
1033 | { \ | |
1034 | struct request_queue *q = data; \ | |
1035 | struct deadline_data *dd = q->elevator->elevator_data; \ | |
c807ab52 BVA |
1036 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ |
1037 | struct request *rq = per_prio->next_rq[data_dir]; \ | |
daaadb3e OS |
1038 | \ |
1039 | if (rq) \ | |
1040 | __blk_mq_debugfs_rq_show(m, rq); \ | |
1041 | return 0; \ | |
1042 | } | |
c807ab52 BVA |
1043 | |
1044 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_RT_PRIO, DD_READ, read0); | |
1045 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_RT_PRIO, DD_WRITE, write0); | |
1046 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_BE_PRIO, DD_READ, read1); | |
1047 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_BE_PRIO, DD_WRITE, write1); | |
1048 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_IDLE_PRIO, DD_READ, read2); | |
1049 | DEADLINE_DEBUGFS_DDIR_ATTRS(DD_IDLE_PRIO, DD_WRITE, write2); | |
daaadb3e OS |
1050 | #undef DEADLINE_DEBUGFS_DDIR_ATTRS |
1051 | ||
1052 | static int deadline_batching_show(void *data, struct seq_file *m) | |
1053 | { | |
1054 | struct request_queue *q = data; | |
1055 | struct deadline_data *dd = q->elevator->elevator_data; | |
1056 | ||
1057 | seq_printf(m, "%u\n", dd->batching); | |
1058 | return 0; | |
1059 | } | |
1060 | ||
1061 | static int deadline_starved_show(void *data, struct seq_file *m) | |
1062 | { | |
1063 | struct request_queue *q = data; | |
1064 | struct deadline_data *dd = q->elevator->elevator_data; | |
1065 | ||
1066 | seq_printf(m, "%u\n", dd->starved); | |
1067 | return 0; | |
1068 | } | |
1069 | ||
07757588 BVA |
1070 | static int dd_async_depth_show(void *data, struct seq_file *m) |
1071 | { | |
1072 | struct request_queue *q = data; | |
1073 | struct deadline_data *dd = q->elevator->elevator_data; | |
1074 | ||
1075 | seq_printf(m, "%u\n", dd->async_depth); | |
1076 | return 0; | |
1077 | } | |
1078 | ||
38ba64d1 BVA |
1079 | static int dd_queued_show(void *data, struct seq_file *m) |
1080 | { | |
1081 | struct request_queue *q = data; | |
1082 | struct deadline_data *dd = q->elevator->elevator_data; | |
bce0363e BVA |
1083 | u32 rt, be, idle; |
1084 | ||
1085 | spin_lock(&dd->lock); | |
1086 | rt = dd_queued(dd, DD_RT_PRIO); | |
1087 | be = dd_queued(dd, DD_BE_PRIO); | |
1088 | idle = dd_queued(dd, DD_IDLE_PRIO); | |
1089 | spin_unlock(&dd->lock); | |
1090 | ||
1091 | seq_printf(m, "%u %u %u\n", rt, be, idle); | |
38ba64d1 | 1092 | |
38ba64d1 BVA |
1093 | return 0; |
1094 | } | |
1095 | ||
1096 | /* Number of requests owned by the block driver for a given priority. */ | |
1097 | static u32 dd_owned_by_driver(struct deadline_data *dd, enum dd_prio prio) | |
1098 | { | |
bce0363e BVA |
1099 | const struct io_stats_per_prio *stats = &dd->per_prio[prio].stats; |
1100 | ||
1101 | lockdep_assert_held(&dd->lock); | |
1102 | ||
1103 | return stats->dispatched + stats->merged - | |
1104 | atomic_read(&stats->completed); | |
38ba64d1 BVA |
1105 | } |
1106 | ||
1107 | static int dd_owned_by_driver_show(void *data, struct seq_file *m) | |
1108 | { | |
1109 | struct request_queue *q = data; | |
1110 | struct deadline_data *dd = q->elevator->elevator_data; | |
bce0363e BVA |
1111 | u32 rt, be, idle; |
1112 | ||
1113 | spin_lock(&dd->lock); | |
1114 | rt = dd_owned_by_driver(dd, DD_RT_PRIO); | |
1115 | be = dd_owned_by_driver(dd, DD_BE_PRIO); | |
1116 | idle = dd_owned_by_driver(dd, DD_IDLE_PRIO); | |
1117 | spin_unlock(&dd->lock); | |
1118 | ||
1119 | seq_printf(m, "%u %u %u\n", rt, be, idle); | |
38ba64d1 | 1120 | |
38ba64d1 BVA |
1121 | return 0; |
1122 | } | |
1123 | ||
c807ab52 BVA |
1124 | #define DEADLINE_DISPATCH_ATTR(prio) \ |
1125 | static void *deadline_dispatch##prio##_start(struct seq_file *m, \ | |
1126 | loff_t *pos) \ | |
1127 | __acquires(&dd->lock) \ | |
1128 | { \ | |
1129 | struct request_queue *q = m->private; \ | |
1130 | struct deadline_data *dd = q->elevator->elevator_data; \ | |
1131 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ | |
1132 | \ | |
1133 | spin_lock(&dd->lock); \ | |
1134 | return seq_list_start(&per_prio->dispatch, *pos); \ | |
1135 | } \ | |
1136 | \ | |
1137 | static void *deadline_dispatch##prio##_next(struct seq_file *m, \ | |
1138 | void *v, loff_t *pos) \ | |
1139 | { \ | |
1140 | struct request_queue *q = m->private; \ | |
1141 | struct deadline_data *dd = q->elevator->elevator_data; \ | |
1142 | struct dd_per_prio *per_prio = &dd->per_prio[prio]; \ | |
1143 | \ | |
1144 | return seq_list_next(v, &per_prio->dispatch, pos); \ | |
1145 | } \ | |
1146 | \ | |
1147 | static void deadline_dispatch##prio##_stop(struct seq_file *m, void *v) \ | |
1148 | __releases(&dd->lock) \ | |
1149 | { \ | |
1150 | struct request_queue *q = m->private; \ | |
1151 | struct deadline_data *dd = q->elevator->elevator_data; \ | |
1152 | \ | |
1153 | spin_unlock(&dd->lock); \ | |
1154 | } \ | |
1155 | \ | |
1156 | static const struct seq_operations deadline_dispatch##prio##_seq_ops = { \ | |
1157 | .start = deadline_dispatch##prio##_start, \ | |
1158 | .next = deadline_dispatch##prio##_next, \ | |
1159 | .stop = deadline_dispatch##prio##_stop, \ | |
1160 | .show = blk_mq_debugfs_rq_show, \ | |
daaadb3e OS |
1161 | } |
1162 | ||
c807ab52 BVA |
1163 | DEADLINE_DISPATCH_ATTR(0); |
1164 | DEADLINE_DISPATCH_ATTR(1); | |
1165 | DEADLINE_DISPATCH_ATTR(2); | |
1166 | #undef DEADLINE_DISPATCH_ATTR | |
daaadb3e | 1167 | |
c807ab52 BVA |
1168 | #define DEADLINE_QUEUE_DDIR_ATTRS(name) \ |
1169 | {#name "_fifo_list", 0400, \ | |
1170 | .seq_ops = &deadline_##name##_fifo_seq_ops} | |
1171 | #define DEADLINE_NEXT_RQ_ATTR(name) \ | |
daaadb3e OS |
1172 | {#name "_next_rq", 0400, deadline_##name##_next_rq_show} |
1173 | static const struct blk_mq_debugfs_attr deadline_queue_debugfs_attrs[] = { | |
c807ab52 BVA |
1174 | DEADLINE_QUEUE_DDIR_ATTRS(read0), |
1175 | DEADLINE_QUEUE_DDIR_ATTRS(write0), | |
1176 | DEADLINE_QUEUE_DDIR_ATTRS(read1), | |
1177 | DEADLINE_QUEUE_DDIR_ATTRS(write1), | |
1178 | DEADLINE_QUEUE_DDIR_ATTRS(read2), | |
1179 | DEADLINE_QUEUE_DDIR_ATTRS(write2), | |
1180 | DEADLINE_NEXT_RQ_ATTR(read0), | |
1181 | DEADLINE_NEXT_RQ_ATTR(write0), | |
1182 | DEADLINE_NEXT_RQ_ATTR(read1), | |
1183 | DEADLINE_NEXT_RQ_ATTR(write1), | |
1184 | DEADLINE_NEXT_RQ_ATTR(read2), | |
1185 | DEADLINE_NEXT_RQ_ATTR(write2), | |
daaadb3e OS |
1186 | {"batching", 0400, deadline_batching_show}, |
1187 | {"starved", 0400, deadline_starved_show}, | |
07757588 | 1188 | {"async_depth", 0400, dd_async_depth_show}, |
c807ab52 BVA |
1189 | {"dispatch0", 0400, .seq_ops = &deadline_dispatch0_seq_ops}, |
1190 | {"dispatch1", 0400, .seq_ops = &deadline_dispatch1_seq_ops}, | |
1191 | {"dispatch2", 0400, .seq_ops = &deadline_dispatch2_seq_ops}, | |
38ba64d1 BVA |
1192 | {"owned_by_driver", 0400, dd_owned_by_driver_show}, |
1193 | {"queued", 0400, dd_queued_show}, | |
daaadb3e OS |
1194 | {}, |
1195 | }; | |
1196 | #undef DEADLINE_QUEUE_DDIR_ATTRS | |
1197 | #endif | |
1198 | ||
945ffb60 | 1199 | static struct elevator_type mq_deadline = { |
f9cd4bfe | 1200 | .ops = { |
07757588 BVA |
1201 | .depth_updated = dd_depth_updated, |
1202 | .limit_depth = dd_limit_depth, | |
945ffb60 | 1203 | .insert_requests = dd_insert_requests, |
c13660a0 | 1204 | .dispatch_request = dd_dispatch_request, |
f3bc78d2 DLM |
1205 | .prepare_request = dd_prepare_request, |
1206 | .finish_request = dd_finish_request, | |
945ffb60 JA |
1207 | .next_request = elv_rb_latter_request, |
1208 | .former_request = elv_rb_former_request, | |
1209 | .bio_merge = dd_bio_merge, | |
1210 | .request_merge = dd_request_merge, | |
1211 | .requests_merged = dd_merged_requests, | |
1212 | .request_merged = dd_request_merged, | |
1213 | .has_work = dd_has_work, | |
3e9a99eb BVA |
1214 | .init_sched = dd_init_sched, |
1215 | .exit_sched = dd_exit_sched, | |
07757588 | 1216 | .init_hctx = dd_init_hctx, |
945ffb60 JA |
1217 | }, |
1218 | ||
daaadb3e OS |
1219 | #ifdef CONFIG_BLK_DEBUG_FS |
1220 | .queue_debugfs_attrs = deadline_queue_debugfs_attrs, | |
1221 | #endif | |
945ffb60 JA |
1222 | .elevator_attrs = deadline_attrs, |
1223 | .elevator_name = "mq-deadline", | |
4d740bc9 | 1224 | .elevator_alias = "deadline", |
68c43f13 | 1225 | .elevator_features = ELEVATOR_F_ZBD_SEQ_WRITE, |
945ffb60 JA |
1226 | .elevator_owner = THIS_MODULE, |
1227 | }; | |
7de967e7 | 1228 | MODULE_ALIAS("mq-deadline-iosched"); |
945ffb60 JA |
1229 | |
1230 | static int __init deadline_init(void) | |
1231 | { | |
0f783995 | 1232 | return elv_register(&mq_deadline); |
945ffb60 JA |
1233 | } |
1234 | ||
1235 | static void __exit deadline_exit(void) | |
1236 | { | |
1237 | elv_unregister(&mq_deadline); | |
1238 | } | |
1239 | ||
1240 | module_init(deadline_init); | |
1241 | module_exit(deadline_exit); | |
1242 | ||
c807ab52 | 1243 | MODULE_AUTHOR("Jens Axboe, Damien Le Moal and Bart Van Assche"); |
945ffb60 JA |
1244 | MODULE_LICENSE("GPL"); |
1245 | MODULE_DESCRIPTION("MQ deadline IO scheduler"); |