GNU Linux-libre 5.4.241-gnu1
[releases.git] / block / blk-wbt.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * buffered writeback throttling. loosely based on CoDel. We can't drop
4  * packets for IO scheduling, so the logic is something like this:
5  *
6  * - Monitor latencies in a defined window of time.
7  * - If the minimum latency in the above window exceeds some target, increment
8  *   scaling step and scale down queue depth by a factor of 2x. The monitoring
9  *   window is then shrunk to 100 / sqrt(scaling step + 1).
10  * - For any window where we don't have solid data on what the latencies
11  *   look like, retain status quo.
12  * - If latencies look good, decrement scaling step.
13  * - If we're only doing writes, allow the scaling step to go negative. This
14  *   will temporarily boost write performance, snapping back to a stable
15  *   scaling step of 0 if reads show up or the heavy writers finish. Unlike
16  *   positive scaling steps where we shrink the monitoring window, a negative
17  *   scaling step retains the default step==0 window size.
18  *
19  * Copyright (C) 2016 Jens Axboe
20  *
21  */
22 #include <linux/kernel.h>
23 #include <linux/blk_types.h>
24 #include <linux/slab.h>
25 #include <linux/backing-dev.h>
26 #include <linux/swap.h>
27
28 #include "blk-wbt.h"
29 #include "blk-rq-qos.h"
30
31 #define CREATE_TRACE_POINTS
32 #include <trace/events/wbt.h>
33
34 static inline void wbt_clear_state(struct request *rq)
35 {
36         rq->wbt_flags = 0;
37 }
38
39 static inline enum wbt_flags wbt_flags(struct request *rq)
40 {
41         return rq->wbt_flags;
42 }
43
44 static inline bool wbt_is_tracked(struct request *rq)
45 {
46         return rq->wbt_flags & WBT_TRACKED;
47 }
48
49 static inline bool wbt_is_read(struct request *rq)
50 {
51         return rq->wbt_flags & WBT_READ;
52 }
53
54 enum {
55         /*
56          * Default setting, we'll scale up (to 75% of QD max) or down (min 1)
57          * from here depending on device stats
58          */
59         RWB_DEF_DEPTH   = 16,
60
61         /*
62          * 100msec window
63          */
64         RWB_WINDOW_NSEC         = 100 * 1000 * 1000ULL,
65
66         /*
67          * Disregard stats, if we don't meet this minimum
68          */
69         RWB_MIN_WRITE_SAMPLES   = 3,
70
71         /*
72          * If we have this number of consecutive windows with not enough
73          * information to scale up or down, scale up.
74          */
75         RWB_UNKNOWN_BUMP        = 5,
76 };
77
78 static inline bool rwb_enabled(struct rq_wb *rwb)
79 {
80         return rwb && rwb->enable_state != WBT_STATE_OFF_DEFAULT &&
81                       rwb->wb_normal != 0;
82 }
83
84 static void wb_timestamp(struct rq_wb *rwb, unsigned long *var)
85 {
86         if (rwb_enabled(rwb)) {
87                 const unsigned long cur = jiffies;
88
89                 if (cur != *var)
90                         *var = cur;
91         }
92 }
93
94 /*
95  * If a task was rate throttled in balance_dirty_pages() within the last
96  * second or so, use that to indicate a higher cleaning rate.
97  */
98 static bool wb_recent_wait(struct rq_wb *rwb)
99 {
100         struct bdi_writeback *wb = &rwb->rqos.q->backing_dev_info->wb;
101
102         return time_before(jiffies, wb->dirty_sleep + HZ);
103 }
104
105 static inline struct rq_wait *get_rq_wait(struct rq_wb *rwb,
106                                           enum wbt_flags wb_acct)
107 {
108         if (wb_acct & WBT_KSWAPD)
109                 return &rwb->rq_wait[WBT_RWQ_KSWAPD];
110         else if (wb_acct & WBT_DISCARD)
111                 return &rwb->rq_wait[WBT_RWQ_DISCARD];
112
113         return &rwb->rq_wait[WBT_RWQ_BG];
114 }
115
116 static void rwb_wake_all(struct rq_wb *rwb)
117 {
118         int i;
119
120         for (i = 0; i < WBT_NUM_RWQ; i++) {
121                 struct rq_wait *rqw = &rwb->rq_wait[i];
122
123                 if (wq_has_sleeper(&rqw->wait))
124                         wake_up_all(&rqw->wait);
125         }
126 }
127
128 static void wbt_rqw_done(struct rq_wb *rwb, struct rq_wait *rqw,
129                          enum wbt_flags wb_acct)
130 {
131         int inflight, limit;
132
133         inflight = atomic_dec_return(&rqw->inflight);
134
135         /*
136          * wbt got disabled with IO in flight. Wake up any potential
137          * waiters, we don't have to do more than that.
138          */
139         if (unlikely(!rwb_enabled(rwb))) {
140                 rwb_wake_all(rwb);
141                 return;
142         }
143
144         /*
145          * For discards, our limit is always the background. For writes, if
146          * the device does write back caching, drop further down before we
147          * wake people up.
148          */
149         if (wb_acct & WBT_DISCARD)
150                 limit = rwb->wb_background;
151         else if (rwb->wc && !wb_recent_wait(rwb))
152                 limit = 0;
153         else
154                 limit = rwb->wb_normal;
155
156         /*
157          * Don't wake anyone up if we are above the normal limit.
158          */
159         if (inflight && inflight >= limit)
160                 return;
161
162         if (wq_has_sleeper(&rqw->wait)) {
163                 int diff = limit - inflight;
164
165                 if (!inflight || diff >= rwb->wb_background / 2)
166                         wake_up_all(&rqw->wait);
167         }
168 }
169
170 static void __wbt_done(struct rq_qos *rqos, enum wbt_flags wb_acct)
171 {
172         struct rq_wb *rwb = RQWB(rqos);
173         struct rq_wait *rqw;
174
175         if (!(wb_acct & WBT_TRACKED))
176                 return;
177
178         rqw = get_rq_wait(rwb, wb_acct);
179         wbt_rqw_done(rwb, rqw, wb_acct);
180 }
181
182 /*
183  * Called on completion of a request. Note that it's also called when
184  * a request is merged, when the request gets freed.
185  */
186 static void wbt_done(struct rq_qos *rqos, struct request *rq)
187 {
188         struct rq_wb *rwb = RQWB(rqos);
189
190         if (!wbt_is_tracked(rq)) {
191                 if (rwb->sync_cookie == rq) {
192                         rwb->sync_issue = 0;
193                         rwb->sync_cookie = NULL;
194                 }
195
196                 if (wbt_is_read(rq))
197                         wb_timestamp(rwb, &rwb->last_comp);
198         } else {
199                 WARN_ON_ONCE(rq == rwb->sync_cookie);
200                 __wbt_done(rqos, wbt_flags(rq));
201         }
202         wbt_clear_state(rq);
203 }
204
205 static inline bool stat_sample_valid(struct blk_rq_stat *stat)
206 {
207         /*
208          * We need at least one read sample, and a minimum of
209          * RWB_MIN_WRITE_SAMPLES. We require some write samples to know
210          * that it's writes impacting us, and not just some sole read on
211          * a device that is in a lower power state.
212          */
213         return (stat[READ].nr_samples >= 1 &&
214                 stat[WRITE].nr_samples >= RWB_MIN_WRITE_SAMPLES);
215 }
216
217 static u64 rwb_sync_issue_lat(struct rq_wb *rwb)
218 {
219         u64 now, issue = READ_ONCE(rwb->sync_issue);
220
221         if (!issue || !rwb->sync_cookie)
222                 return 0;
223
224         now = ktime_to_ns(ktime_get());
225         return now - issue;
226 }
227
228 enum {
229         LAT_OK = 1,
230         LAT_UNKNOWN,
231         LAT_UNKNOWN_WRITES,
232         LAT_EXCEEDED,
233 };
234
235 static int latency_exceeded(struct rq_wb *rwb, struct blk_rq_stat *stat)
236 {
237         struct backing_dev_info *bdi = rwb->rqos.q->backing_dev_info;
238         struct rq_depth *rqd = &rwb->rq_depth;
239         u64 thislat;
240
241         /*
242          * If our stored sync issue exceeds the window size, or it
243          * exceeds our min target AND we haven't logged any entries,
244          * flag the latency as exceeded. wbt works off completion latencies,
245          * but for a flooded device, a single sync IO can take a long time
246          * to complete after being issued. If this time exceeds our
247          * monitoring window AND we didn't see any other completions in that
248          * window, then count that sync IO as a violation of the latency.
249          */
250         thislat = rwb_sync_issue_lat(rwb);
251         if (thislat > rwb->cur_win_nsec ||
252             (thislat > rwb->min_lat_nsec && !stat[READ].nr_samples)) {
253                 trace_wbt_lat(bdi, thislat);
254                 return LAT_EXCEEDED;
255         }
256
257         /*
258          * No read/write mix, if stat isn't valid
259          */
260         if (!stat_sample_valid(stat)) {
261                 /*
262                  * If we had writes in this stat window and the window is
263                  * current, we're only doing writes. If a task recently
264                  * waited or still has writes in flights, consider us doing
265                  * just writes as well.
266                  */
267                 if (stat[WRITE].nr_samples || wb_recent_wait(rwb) ||
268                     wbt_inflight(rwb))
269                         return LAT_UNKNOWN_WRITES;
270                 return LAT_UNKNOWN;
271         }
272
273         /*
274          * If the 'min' latency exceeds our target, step down.
275          */
276         if (stat[READ].min > rwb->min_lat_nsec) {
277                 trace_wbt_lat(bdi, stat[READ].min);
278                 trace_wbt_stat(bdi, stat);
279                 return LAT_EXCEEDED;
280         }
281
282         if (rqd->scale_step)
283                 trace_wbt_stat(bdi, stat);
284
285         return LAT_OK;
286 }
287
288 static void rwb_trace_step(struct rq_wb *rwb, const char *msg)
289 {
290         struct backing_dev_info *bdi = rwb->rqos.q->backing_dev_info;
291         struct rq_depth *rqd = &rwb->rq_depth;
292
293         trace_wbt_step(bdi, msg, rqd->scale_step, rwb->cur_win_nsec,
294                         rwb->wb_background, rwb->wb_normal, rqd->max_depth);
295 }
296
297 static void calc_wb_limits(struct rq_wb *rwb)
298 {
299         if (rwb->min_lat_nsec == 0) {
300                 rwb->wb_normal = rwb->wb_background = 0;
301         } else if (rwb->rq_depth.max_depth <= 2) {
302                 rwb->wb_normal = rwb->rq_depth.max_depth;
303                 rwb->wb_background = 1;
304         } else {
305                 rwb->wb_normal = (rwb->rq_depth.max_depth + 1) / 2;
306                 rwb->wb_background = (rwb->rq_depth.max_depth + 3) / 4;
307         }
308 }
309
310 static void scale_up(struct rq_wb *rwb)
311 {
312         if (!rq_depth_scale_up(&rwb->rq_depth))
313                 return;
314         calc_wb_limits(rwb);
315         rwb->unknown_cnt = 0;
316         rwb_wake_all(rwb);
317         rwb_trace_step(rwb, "scale up");
318 }
319
320 static void scale_down(struct rq_wb *rwb, bool hard_throttle)
321 {
322         if (!rq_depth_scale_down(&rwb->rq_depth, hard_throttle))
323                 return;
324         calc_wb_limits(rwb);
325         rwb->unknown_cnt = 0;
326         rwb_trace_step(rwb, "scale down");
327 }
328
329 static void rwb_arm_timer(struct rq_wb *rwb)
330 {
331         struct rq_depth *rqd = &rwb->rq_depth;
332
333         if (rqd->scale_step > 0) {
334                 /*
335                  * We should speed this up, using some variant of a fast
336                  * integer inverse square root calculation. Since we only do
337                  * this for every window expiration, it's not a huge deal,
338                  * though.
339                  */
340                 rwb->cur_win_nsec = div_u64(rwb->win_nsec << 4,
341                                         int_sqrt((rqd->scale_step + 1) << 8));
342         } else {
343                 /*
344                  * For step < 0, we don't want to increase/decrease the
345                  * window size.
346                  */
347                 rwb->cur_win_nsec = rwb->win_nsec;
348         }
349
350         blk_stat_activate_nsecs(rwb->cb, rwb->cur_win_nsec);
351 }
352
353 static void wb_timer_fn(struct blk_stat_callback *cb)
354 {
355         struct rq_wb *rwb = cb->data;
356         struct rq_depth *rqd = &rwb->rq_depth;
357         unsigned int inflight = wbt_inflight(rwb);
358         int status;
359
360         status = latency_exceeded(rwb, cb->stat);
361
362         trace_wbt_timer(rwb->rqos.q->backing_dev_info, status, rqd->scale_step,
363                         inflight);
364
365         /*
366          * If we exceeded the latency target, step down. If we did not,
367          * step one level up. If we don't know enough to say either exceeded
368          * or ok, then don't do anything.
369          */
370         switch (status) {
371         case LAT_EXCEEDED:
372                 scale_down(rwb, true);
373                 break;
374         case LAT_OK:
375                 scale_up(rwb);
376                 break;
377         case LAT_UNKNOWN_WRITES:
378                 /*
379                  * We started a the center step, but don't have a valid
380                  * read/write sample, but we do have writes going on.
381                  * Allow step to go negative, to increase write perf.
382                  */
383                 scale_up(rwb);
384                 break;
385         case LAT_UNKNOWN:
386                 if (++rwb->unknown_cnt < RWB_UNKNOWN_BUMP)
387                         break;
388                 /*
389                  * We get here when previously scaled reduced depth, and we
390                  * currently don't have a valid read/write sample. For that
391                  * case, slowly return to center state (step == 0).
392                  */
393                 if (rqd->scale_step > 0)
394                         scale_up(rwb);
395                 else if (rqd->scale_step < 0)
396                         scale_down(rwb, false);
397                 break;
398         default:
399                 break;
400         }
401
402         /*
403          * Re-arm timer, if we have IO in flight
404          */
405         if (rqd->scale_step || inflight)
406                 rwb_arm_timer(rwb);
407 }
408
409 static void __wbt_update_limits(struct rq_wb *rwb)
410 {
411         struct rq_depth *rqd = &rwb->rq_depth;
412
413         rqd->scale_step = 0;
414         rqd->scaled_max = false;
415
416         rq_depth_calc_max_depth(rqd);
417         calc_wb_limits(rwb);
418
419         rwb_wake_all(rwb);
420 }
421
422 void wbt_update_limits(struct request_queue *q)
423 {
424         struct rq_qos *rqos = wbt_rq_qos(q);
425         if (!rqos)
426                 return;
427         __wbt_update_limits(RQWB(rqos));
428 }
429
430 u64 wbt_get_min_lat(struct request_queue *q)
431 {
432         struct rq_qos *rqos = wbt_rq_qos(q);
433         if (!rqos)
434                 return 0;
435         return RQWB(rqos)->min_lat_nsec;
436 }
437
438 void wbt_set_min_lat(struct request_queue *q, u64 val)
439 {
440         struct rq_qos *rqos = wbt_rq_qos(q);
441         if (!rqos)
442                 return;
443         RQWB(rqos)->min_lat_nsec = val;
444         RQWB(rqos)->enable_state = WBT_STATE_ON_MANUAL;
445         __wbt_update_limits(RQWB(rqos));
446 }
447
448
449 static bool close_io(struct rq_wb *rwb)
450 {
451         const unsigned long now = jiffies;
452
453         return time_before(now, rwb->last_issue + HZ / 10) ||
454                 time_before(now, rwb->last_comp + HZ / 10);
455 }
456
457 #define REQ_HIPRIO      (REQ_SYNC | REQ_META | REQ_PRIO)
458
459 static inline unsigned int get_limit(struct rq_wb *rwb, unsigned long rw)
460 {
461         unsigned int limit;
462
463         /*
464          * If we got disabled, just return UINT_MAX. This ensures that
465          * we'll properly inc a new IO, and dec+wakeup at the end.
466          */
467         if (!rwb_enabled(rwb))
468                 return UINT_MAX;
469
470         if ((rw & REQ_OP_MASK) == REQ_OP_DISCARD)
471                 return rwb->wb_background;
472
473         /*
474          * At this point we know it's a buffered write. If this is
475          * kswapd trying to free memory, or REQ_SYNC is set, then
476          * it's WB_SYNC_ALL writeback, and we'll use the max limit for
477          * that. If the write is marked as a background write, then use
478          * the idle limit, or go to normal if we haven't had competing
479          * IO for a bit.
480          */
481         if ((rw & REQ_HIPRIO) || wb_recent_wait(rwb) || current_is_kswapd())
482                 limit = rwb->rq_depth.max_depth;
483         else if ((rw & REQ_BACKGROUND) || close_io(rwb)) {
484                 /*
485                  * If less than 100ms since we completed unrelated IO,
486                  * limit us to half the depth for background writeback.
487                  */
488                 limit = rwb->wb_background;
489         } else
490                 limit = rwb->wb_normal;
491
492         return limit;
493 }
494
495 struct wbt_wait_data {
496         struct rq_wb *rwb;
497         enum wbt_flags wb_acct;
498         unsigned long rw;
499 };
500
501 static bool wbt_inflight_cb(struct rq_wait *rqw, void *private_data)
502 {
503         struct wbt_wait_data *data = private_data;
504         return rq_wait_inc_below(rqw, get_limit(data->rwb, data->rw));
505 }
506
507 static void wbt_cleanup_cb(struct rq_wait *rqw, void *private_data)
508 {
509         struct wbt_wait_data *data = private_data;
510         wbt_rqw_done(data->rwb, rqw, data->wb_acct);
511 }
512
513 /*
514  * Block if we will exceed our limit, or if we are currently waiting for
515  * the timer to kick off queuing again.
516  */
517 static void __wbt_wait(struct rq_wb *rwb, enum wbt_flags wb_acct,
518                        unsigned long rw)
519 {
520         struct rq_wait *rqw = get_rq_wait(rwb, wb_acct);
521         struct wbt_wait_data data = {
522                 .rwb = rwb,
523                 .wb_acct = wb_acct,
524                 .rw = rw,
525         };
526
527         rq_qos_wait(rqw, &data, wbt_inflight_cb, wbt_cleanup_cb);
528 }
529
530 static inline bool wbt_should_throttle(struct rq_wb *rwb, struct bio *bio)
531 {
532         switch (bio_op(bio)) {
533         case REQ_OP_WRITE:
534                 /*
535                  * Don't throttle WRITE_ODIRECT
536                  */
537                 if ((bio->bi_opf & (REQ_SYNC | REQ_IDLE)) ==
538                     (REQ_SYNC | REQ_IDLE))
539                         return false;
540                 /* fallthrough */
541         case REQ_OP_DISCARD:
542                 return true;
543         default:
544                 return false;
545         }
546 }
547
548 static enum wbt_flags bio_to_wbt_flags(struct rq_wb *rwb, struct bio *bio)
549 {
550         enum wbt_flags flags = 0;
551
552         if (!rwb_enabled(rwb))
553                 return 0;
554
555         if (bio_op(bio) == REQ_OP_READ) {
556                 flags = WBT_READ;
557         } else if (wbt_should_throttle(rwb, bio)) {
558                 if (current_is_kswapd())
559                         flags |= WBT_KSWAPD;
560                 if (bio_op(bio) == REQ_OP_DISCARD)
561                         flags |= WBT_DISCARD;
562                 flags |= WBT_TRACKED;
563         }
564         return flags;
565 }
566
567 static void wbt_cleanup(struct rq_qos *rqos, struct bio *bio)
568 {
569         struct rq_wb *rwb = RQWB(rqos);
570         enum wbt_flags flags = bio_to_wbt_flags(rwb, bio);
571         __wbt_done(rqos, flags);
572 }
573
574 /*
575  * Returns true if the IO request should be accounted, false if not.
576  * May sleep, if we have exceeded the writeback limits. Caller can pass
577  * in an irq held spinlock, if it holds one when calling this function.
578  * If we do sleep, we'll release and re-grab it.
579  */
580 static void wbt_wait(struct rq_qos *rqos, struct bio *bio)
581 {
582         struct rq_wb *rwb = RQWB(rqos);
583         enum wbt_flags flags;
584
585         flags = bio_to_wbt_flags(rwb, bio);
586         if (!(flags & WBT_TRACKED)) {
587                 if (flags & WBT_READ)
588                         wb_timestamp(rwb, &rwb->last_issue);
589                 return;
590         }
591
592         __wbt_wait(rwb, flags, bio->bi_opf);
593
594         if (!blk_stat_is_active(rwb->cb))
595                 rwb_arm_timer(rwb);
596 }
597
598 static void wbt_track(struct rq_qos *rqos, struct request *rq, struct bio *bio)
599 {
600         struct rq_wb *rwb = RQWB(rqos);
601         rq->wbt_flags |= bio_to_wbt_flags(rwb, bio);
602 }
603
604 static void wbt_issue(struct rq_qos *rqos, struct request *rq)
605 {
606         struct rq_wb *rwb = RQWB(rqos);
607
608         if (!rwb_enabled(rwb))
609                 return;
610
611         /*
612          * Track sync issue, in case it takes a long time to complete. Allows us
613          * to react quicker, if a sync IO takes a long time to complete. Note
614          * that this is just a hint. The request can go away when it completes,
615          * so it's important we never dereference it. We only use the address to
616          * compare with, which is why we store the sync_issue time locally.
617          */
618         if (wbt_is_read(rq) && !rwb->sync_issue) {
619                 rwb->sync_cookie = rq;
620                 rwb->sync_issue = rq->io_start_time_ns;
621         }
622 }
623
624 static void wbt_requeue(struct rq_qos *rqos, struct request *rq)
625 {
626         struct rq_wb *rwb = RQWB(rqos);
627         if (!rwb_enabled(rwb))
628                 return;
629         if (rq == rwb->sync_cookie) {
630                 rwb->sync_issue = 0;
631                 rwb->sync_cookie = NULL;
632         }
633 }
634
635 void wbt_set_write_cache(struct request_queue *q, bool write_cache_on)
636 {
637         struct rq_qos *rqos = wbt_rq_qos(q);
638         if (rqos)
639                 RQWB(rqos)->wc = write_cache_on;
640 }
641
642 /*
643  * Enable wbt if defaults are configured that way
644  */
645 void wbt_enable_default(struct request_queue *q)
646 {
647         struct rq_qos *rqos = wbt_rq_qos(q);
648
649         /* Throttling already enabled? */
650         if (rqos) {
651                 if (RQWB(rqos)->enable_state == WBT_STATE_OFF_DEFAULT)
652                         RQWB(rqos)->enable_state = WBT_STATE_ON_DEFAULT;
653                 return;
654         }
655
656         /* Queue not registered? Maybe shutting down... */
657         if (!blk_queue_registered(q))
658                 return;
659
660         if (queue_is_mq(q) && IS_ENABLED(CONFIG_BLK_WBT_MQ))
661                 wbt_init(q);
662 }
663 EXPORT_SYMBOL_GPL(wbt_enable_default);
664
665 u64 wbt_default_latency_nsec(struct request_queue *q)
666 {
667         /*
668          * We default to 2msec for non-rotational storage, and 75msec
669          * for rotational storage.
670          */
671         if (blk_queue_nonrot(q))
672                 return 2000000ULL;
673         else
674                 return 75000000ULL;
675 }
676
677 static int wbt_data_dir(const struct request *rq)
678 {
679         const int op = req_op(rq);
680
681         if (op == REQ_OP_READ)
682                 return READ;
683         else if (op_is_write(op))
684                 return WRITE;
685
686         /* don't account */
687         return -1;
688 }
689
690 static void wbt_queue_depth_changed(struct rq_qos *rqos)
691 {
692         RQWB(rqos)->rq_depth.queue_depth = blk_queue_depth(rqos->q);
693         __wbt_update_limits(RQWB(rqos));
694 }
695
696 static void wbt_exit(struct rq_qos *rqos)
697 {
698         struct rq_wb *rwb = RQWB(rqos);
699         struct request_queue *q = rqos->q;
700
701         blk_stat_remove_callback(q, rwb->cb);
702         blk_stat_free_callback(rwb->cb);
703         kfree(rwb);
704 }
705
706 /*
707  * Disable wbt, if enabled by default.
708  */
709 void wbt_disable_default(struct request_queue *q)
710 {
711         struct rq_qos *rqos = wbt_rq_qos(q);
712         struct rq_wb *rwb;
713         if (!rqos)
714                 return;
715         rwb = RQWB(rqos);
716         if (rwb->enable_state == WBT_STATE_ON_DEFAULT) {
717                 blk_stat_deactivate(rwb->cb);
718                 rwb->enable_state = WBT_STATE_OFF_DEFAULT;
719         }
720 }
721 EXPORT_SYMBOL_GPL(wbt_disable_default);
722
723 #ifdef CONFIG_BLK_DEBUG_FS
724 static int wbt_curr_win_nsec_show(void *data, struct seq_file *m)
725 {
726         struct rq_qos *rqos = data;
727         struct rq_wb *rwb = RQWB(rqos);
728
729         seq_printf(m, "%llu\n", rwb->cur_win_nsec);
730         return 0;
731 }
732
733 static int wbt_enabled_show(void *data, struct seq_file *m)
734 {
735         struct rq_qos *rqos = data;
736         struct rq_wb *rwb = RQWB(rqos);
737
738         seq_printf(m, "%d\n", rwb->enable_state);
739         return 0;
740 }
741
742 static int wbt_id_show(void *data, struct seq_file *m)
743 {
744         struct rq_qos *rqos = data;
745
746         seq_printf(m, "%u\n", rqos->id);
747         return 0;
748 }
749
750 static int wbt_inflight_show(void *data, struct seq_file *m)
751 {
752         struct rq_qos *rqos = data;
753         struct rq_wb *rwb = RQWB(rqos);
754         int i;
755
756         for (i = 0; i < WBT_NUM_RWQ; i++)
757                 seq_printf(m, "%d: inflight %d\n", i,
758                            atomic_read(&rwb->rq_wait[i].inflight));
759         return 0;
760 }
761
762 static int wbt_min_lat_nsec_show(void *data, struct seq_file *m)
763 {
764         struct rq_qos *rqos = data;
765         struct rq_wb *rwb = RQWB(rqos);
766
767         seq_printf(m, "%lu\n", rwb->min_lat_nsec);
768         return 0;
769 }
770
771 static int wbt_unknown_cnt_show(void *data, struct seq_file *m)
772 {
773         struct rq_qos *rqos = data;
774         struct rq_wb *rwb = RQWB(rqos);
775
776         seq_printf(m, "%u\n", rwb->unknown_cnt);
777         return 0;
778 }
779
780 static int wbt_normal_show(void *data, struct seq_file *m)
781 {
782         struct rq_qos *rqos = data;
783         struct rq_wb *rwb = RQWB(rqos);
784
785         seq_printf(m, "%u\n", rwb->wb_normal);
786         return 0;
787 }
788
789 static int wbt_background_show(void *data, struct seq_file *m)
790 {
791         struct rq_qos *rqos = data;
792         struct rq_wb *rwb = RQWB(rqos);
793
794         seq_printf(m, "%u\n", rwb->wb_background);
795         return 0;
796 }
797
798 static const struct blk_mq_debugfs_attr wbt_debugfs_attrs[] = {
799         {"curr_win_nsec", 0400, wbt_curr_win_nsec_show},
800         {"enabled", 0400, wbt_enabled_show},
801         {"id", 0400, wbt_id_show},
802         {"inflight", 0400, wbt_inflight_show},
803         {"min_lat_nsec", 0400, wbt_min_lat_nsec_show},
804         {"unknown_cnt", 0400, wbt_unknown_cnt_show},
805         {"wb_normal", 0400, wbt_normal_show},
806         {"wb_background", 0400, wbt_background_show},
807         {},
808 };
809 #endif
810
811 static struct rq_qos_ops wbt_rqos_ops = {
812         .throttle = wbt_wait,
813         .issue = wbt_issue,
814         .track = wbt_track,
815         .requeue = wbt_requeue,
816         .done = wbt_done,
817         .cleanup = wbt_cleanup,
818         .queue_depth_changed = wbt_queue_depth_changed,
819         .exit = wbt_exit,
820 #ifdef CONFIG_BLK_DEBUG_FS
821         .debugfs_attrs = wbt_debugfs_attrs,
822 #endif
823 };
824
825 int wbt_init(struct request_queue *q)
826 {
827         struct rq_wb *rwb;
828         int i;
829
830         rwb = kzalloc(sizeof(*rwb), GFP_KERNEL);
831         if (!rwb)
832                 return -ENOMEM;
833
834         rwb->cb = blk_stat_alloc_callback(wb_timer_fn, wbt_data_dir, 2, rwb);
835         if (!rwb->cb) {
836                 kfree(rwb);
837                 return -ENOMEM;
838         }
839
840         for (i = 0; i < WBT_NUM_RWQ; i++)
841                 rq_wait_init(&rwb->rq_wait[i]);
842
843         rwb->rqos.id = RQ_QOS_WBT;
844         rwb->rqos.ops = &wbt_rqos_ops;
845         rwb->rqos.q = q;
846         rwb->last_comp = rwb->last_issue = jiffies;
847         rwb->win_nsec = RWB_WINDOW_NSEC;
848         rwb->enable_state = WBT_STATE_ON_DEFAULT;
849         rwb->wc = 1;
850         rwb->rq_depth.default_depth = RWB_DEF_DEPTH;
851         __wbt_update_limits(rwb);
852
853         /*
854          * Assign rwb and add the stats callback.
855          */
856         rq_qos_add(q, &rwb->rqos);
857         blk_stat_add_callback(q, rwb->cb);
858
859         rwb->min_lat_nsec = wbt_default_latency_nsec(q);
860
861         wbt_queue_depth_changed(&rwb->rqos);
862         wbt_set_write_cache(q, test_bit(QUEUE_FLAG_WC, &q->queue_flags));
863
864         return 0;
865 }