1 // SPDX-License-Identifier: GPL-2.0
3 * buffered writeback throttling. loosely based on CoDel. We can't drop
4 * packets for IO scheduling, so the logic is something like this:
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.
19 * Copyright (C) 2016 Jens Axboe
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>
30 #include "blk-rq-qos.h"
34 #define CREATE_TRACE_POINTS
35 #include <trace/events/wbt.h>
38 WBT_TRACKED
= 1, /* write, tracked for throttling */
39 WBT_READ
= 2, /* read */
40 WBT_SWAP
= 4, /* write, from swap_writepage() */
41 WBT_DISCARD
= 8, /* discard */
43 WBT_NR_BITS
= 4, /* number of bits */
54 * If current state is WBT_STATE_ON/OFF_DEFAULT, it can be covered to any other
55 * state, if current state is WBT_STATE_ON/OFF_MANUAL, it can only be covered
56 * to WBT_STATE_OFF/ON_MANUAL.
59 WBT_STATE_ON_DEFAULT
= 1, /* on by default */
60 WBT_STATE_ON_MANUAL
= 2, /* on manually by sysfs */
61 WBT_STATE_OFF_DEFAULT
= 3, /* off by default */
62 WBT_STATE_OFF_MANUAL
= 4, /* off manually by sysfs */
67 * Settings that govern how we throttle
69 unsigned int wb_background
; /* background writeback */
70 unsigned int wb_normal
; /* normal writeback */
72 short enable_state
; /* WBT_STATE_* */
75 * Number of consecutive periods where we don't have enough
76 * information to make a firm scale up/down decision.
78 unsigned int unknown_cnt
;
80 u64 win_nsec
; /* default window size */
81 u64 cur_win_nsec
; /* current window size */
83 struct blk_stat_callback
*cb
;
88 unsigned long last_issue
; /* last non-throttled issue */
89 unsigned long last_comp
; /* last non-throttled comp */
90 unsigned long min_lat_nsec
;
92 struct rq_wait rq_wait
[WBT_NUM_RWQ
];
93 struct rq_depth rq_depth
;
96 static inline struct rq_wb
*RQWB(struct rq_qos
*rqos
)
98 return container_of(rqos
, struct rq_wb
, rqos
);
101 static inline void wbt_clear_state(struct request
*rq
)
106 static inline enum wbt_flags
wbt_flags(struct request
*rq
)
108 return rq
->wbt_flags
;
111 static inline bool wbt_is_tracked(struct request
*rq
)
113 return rq
->wbt_flags
& WBT_TRACKED
;
116 static inline bool wbt_is_read(struct request
*rq
)
118 return rq
->wbt_flags
& WBT_READ
;
123 * Default setting, we'll scale up (to 75% of QD max) or down (min 1)
124 * from here depending on device stats
131 RWB_WINDOW_NSEC
= 100 * 1000 * 1000ULL,
134 * Disregard stats, if we don't meet this minimum
136 RWB_MIN_WRITE_SAMPLES
= 3,
139 * If we have this number of consecutive windows with not enough
140 * information to scale up or down, scale up.
142 RWB_UNKNOWN_BUMP
= 5,
145 static inline bool rwb_enabled(struct rq_wb
*rwb
)
147 return rwb
&& rwb
->enable_state
!= WBT_STATE_OFF_DEFAULT
&&
148 rwb
->enable_state
!= WBT_STATE_OFF_MANUAL
;
151 static void wb_timestamp(struct rq_wb
*rwb
, unsigned long *var
)
153 if (rwb_enabled(rwb
)) {
154 const unsigned long cur
= jiffies
;
162 * If a task was rate throttled in balance_dirty_pages() within the last
163 * second or so, use that to indicate a higher cleaning rate.
165 static bool wb_recent_wait(struct rq_wb
*rwb
)
167 struct backing_dev_info
*bdi
= rwb
->rqos
.disk
->bdi
;
169 return time_before(jiffies
, bdi
->last_bdp_sleep
+ HZ
);
172 static inline struct rq_wait
*get_rq_wait(struct rq_wb
*rwb
,
173 enum wbt_flags wb_acct
)
175 if (wb_acct
& WBT_SWAP
)
176 return &rwb
->rq_wait
[WBT_RWQ_SWAP
];
177 else if (wb_acct
& WBT_DISCARD
)
178 return &rwb
->rq_wait
[WBT_RWQ_DISCARD
];
180 return &rwb
->rq_wait
[WBT_RWQ_BG
];
183 static void rwb_wake_all(struct rq_wb
*rwb
)
187 for (i
= 0; i
< WBT_NUM_RWQ
; i
++) {
188 struct rq_wait
*rqw
= &rwb
->rq_wait
[i
];
190 if (wq_has_sleeper(&rqw
->wait
))
191 wake_up_all(&rqw
->wait
);
195 static void wbt_rqw_done(struct rq_wb
*rwb
, struct rq_wait
*rqw
,
196 enum wbt_flags wb_acct
)
200 inflight
= atomic_dec_return(&rqw
->inflight
);
203 * For discards, our limit is always the background. For writes, if
204 * the device does write back caching, drop further down before we
207 if (wb_acct
& WBT_DISCARD
)
208 limit
= rwb
->wb_background
;
209 else if (blk_queue_write_cache(rwb
->rqos
.disk
->queue
) &&
210 !wb_recent_wait(rwb
))
213 limit
= rwb
->wb_normal
;
216 * Don't wake anyone up if we are above the normal limit.
218 if (inflight
&& inflight
>= limit
)
221 if (wq_has_sleeper(&rqw
->wait
)) {
222 int diff
= limit
- inflight
;
224 if (!inflight
|| diff
>= rwb
->wb_background
/ 2)
225 wake_up_all(&rqw
->wait
);
229 static void __wbt_done(struct rq_qos
*rqos
, enum wbt_flags wb_acct
)
231 struct rq_wb
*rwb
= RQWB(rqos
);
234 if (!(wb_acct
& WBT_TRACKED
))
237 rqw
= get_rq_wait(rwb
, wb_acct
);
238 wbt_rqw_done(rwb
, rqw
, wb_acct
);
242 * Called on completion of a request. Note that it's also called when
243 * a request is merged, when the request gets freed.
245 static void wbt_done(struct rq_qos
*rqos
, struct request
*rq
)
247 struct rq_wb
*rwb
= RQWB(rqos
);
249 if (!wbt_is_tracked(rq
)) {
250 if (rwb
->sync_cookie
== rq
) {
252 rwb
->sync_cookie
= NULL
;
256 wb_timestamp(rwb
, &rwb
->last_comp
);
258 WARN_ON_ONCE(rq
== rwb
->sync_cookie
);
259 __wbt_done(rqos
, wbt_flags(rq
));
264 static inline bool stat_sample_valid(struct blk_rq_stat
*stat
)
267 * We need at least one read sample, and a minimum of
268 * RWB_MIN_WRITE_SAMPLES. We require some write samples to know
269 * that it's writes impacting us, and not just some sole read on
270 * a device that is in a lower power state.
272 return (stat
[READ
].nr_samples
>= 1 &&
273 stat
[WRITE
].nr_samples
>= RWB_MIN_WRITE_SAMPLES
);
276 static u64
rwb_sync_issue_lat(struct rq_wb
*rwb
)
278 u64 issue
= READ_ONCE(rwb
->sync_issue
);
280 if (!issue
|| !rwb
->sync_cookie
)
283 return blk_time_get_ns() - issue
;
286 static inline unsigned int wbt_inflight(struct rq_wb
*rwb
)
288 unsigned int i
, ret
= 0;
290 for (i
= 0; i
< WBT_NUM_RWQ
; i
++)
291 ret
+= atomic_read(&rwb
->rq_wait
[i
].inflight
);
303 static int latency_exceeded(struct rq_wb
*rwb
, struct blk_rq_stat
*stat
)
305 struct backing_dev_info
*bdi
= rwb
->rqos
.disk
->bdi
;
306 struct rq_depth
*rqd
= &rwb
->rq_depth
;
310 * If our stored sync issue exceeds the window size, or it
311 * exceeds our min target AND we haven't logged any entries,
312 * flag the latency as exceeded. wbt works off completion latencies,
313 * but for a flooded device, a single sync IO can take a long time
314 * to complete after being issued. If this time exceeds our
315 * monitoring window AND we didn't see any other completions in that
316 * window, then count that sync IO as a violation of the latency.
318 thislat
= rwb_sync_issue_lat(rwb
);
319 if (thislat
> rwb
->cur_win_nsec
||
320 (thislat
> rwb
->min_lat_nsec
&& !stat
[READ
].nr_samples
)) {
321 trace_wbt_lat(bdi
, thislat
);
326 * No read/write mix, if stat isn't valid
328 if (!stat_sample_valid(stat
)) {
330 * If we had writes in this stat window and the window is
331 * current, we're only doing writes. If a task recently
332 * waited or still has writes in flights, consider us doing
333 * just writes as well.
335 if (stat
[WRITE
].nr_samples
|| wb_recent_wait(rwb
) ||
337 return LAT_UNKNOWN_WRITES
;
342 * If the 'min' latency exceeds our target, step down.
344 if (stat
[READ
].min
> rwb
->min_lat_nsec
) {
345 trace_wbt_lat(bdi
, stat
[READ
].min
);
346 trace_wbt_stat(bdi
, stat
);
351 trace_wbt_stat(bdi
, stat
);
356 static void rwb_trace_step(struct rq_wb
*rwb
, const char *msg
)
358 struct backing_dev_info
*bdi
= rwb
->rqos
.disk
->bdi
;
359 struct rq_depth
*rqd
= &rwb
->rq_depth
;
361 trace_wbt_step(bdi
, msg
, rqd
->scale_step
, rwb
->cur_win_nsec
,
362 rwb
->wb_background
, rwb
->wb_normal
, rqd
->max_depth
);
365 static void calc_wb_limits(struct rq_wb
*rwb
)
367 if (rwb
->min_lat_nsec
== 0) {
368 rwb
->wb_normal
= rwb
->wb_background
= 0;
369 } else if (rwb
->rq_depth
.max_depth
<= 2) {
370 rwb
->wb_normal
= rwb
->rq_depth
.max_depth
;
371 rwb
->wb_background
= 1;
373 rwb
->wb_normal
= (rwb
->rq_depth
.max_depth
+ 1) / 2;
374 rwb
->wb_background
= (rwb
->rq_depth
.max_depth
+ 3) / 4;
378 static void scale_up(struct rq_wb
*rwb
)
380 if (!rq_depth_scale_up(&rwb
->rq_depth
))
383 rwb
->unknown_cnt
= 0;
385 rwb_trace_step(rwb
, tracepoint_string("scale up"));
388 static void scale_down(struct rq_wb
*rwb
, bool hard_throttle
)
390 if (!rq_depth_scale_down(&rwb
->rq_depth
, hard_throttle
))
393 rwb
->unknown_cnt
= 0;
394 rwb_trace_step(rwb
, tracepoint_string("scale down"));
397 static void rwb_arm_timer(struct rq_wb
*rwb
)
399 struct rq_depth
*rqd
= &rwb
->rq_depth
;
401 if (rqd
->scale_step
> 0) {
403 * We should speed this up, using some variant of a fast
404 * integer inverse square root calculation. Since we only do
405 * this for every window expiration, it's not a huge deal,
408 rwb
->cur_win_nsec
= div_u64(rwb
->win_nsec
<< 4,
409 int_sqrt((rqd
->scale_step
+ 1) << 8));
412 * For step < 0, we don't want to increase/decrease the
415 rwb
->cur_win_nsec
= rwb
->win_nsec
;
418 blk_stat_activate_nsecs(rwb
->cb
, rwb
->cur_win_nsec
);
421 static void wb_timer_fn(struct blk_stat_callback
*cb
)
423 struct rq_wb
*rwb
= cb
->data
;
424 struct rq_depth
*rqd
= &rwb
->rq_depth
;
425 unsigned int inflight
= wbt_inflight(rwb
);
431 status
= latency_exceeded(rwb
, cb
->stat
);
433 trace_wbt_timer(rwb
->rqos
.disk
->bdi
, status
, rqd
->scale_step
, inflight
);
436 * If we exceeded the latency target, step down. If we did not,
437 * step one level up. If we don't know enough to say either exceeded
438 * or ok, then don't do anything.
442 scale_down(rwb
, true);
447 case LAT_UNKNOWN_WRITES
:
449 * We started a the center step, but don't have a valid
450 * read/write sample, but we do have writes going on.
451 * Allow step to go negative, to increase write perf.
456 if (++rwb
->unknown_cnt
< RWB_UNKNOWN_BUMP
)
459 * We get here when previously scaled reduced depth, and we
460 * currently don't have a valid read/write sample. For that
461 * case, slowly return to center state (step == 0).
463 if (rqd
->scale_step
> 0)
465 else if (rqd
->scale_step
< 0)
466 scale_down(rwb
, false);
473 * Re-arm timer, if we have IO in flight
475 if (rqd
->scale_step
|| inflight
)
479 static void wbt_update_limits(struct rq_wb
*rwb
)
481 struct rq_depth
*rqd
= &rwb
->rq_depth
;
484 rqd
->scaled_max
= false;
486 rq_depth_calc_max_depth(rqd
);
492 bool wbt_disabled(struct request_queue
*q
)
494 struct rq_qos
*rqos
= wbt_rq_qos(q
);
496 return !rqos
|| !rwb_enabled(RQWB(rqos
));
499 u64
wbt_get_min_lat(struct request_queue
*q
)
501 struct rq_qos
*rqos
= wbt_rq_qos(q
);
504 return RQWB(rqos
)->min_lat_nsec
;
507 void wbt_set_min_lat(struct request_queue
*q
, u64 val
)
509 struct rq_qos
*rqos
= wbt_rq_qos(q
);
513 RQWB(rqos
)->min_lat_nsec
= val
;
515 RQWB(rqos
)->enable_state
= WBT_STATE_ON_MANUAL
;
517 RQWB(rqos
)->enable_state
= WBT_STATE_OFF_MANUAL
;
519 wbt_update_limits(RQWB(rqos
));
523 static bool close_io(struct rq_wb
*rwb
)
525 const unsigned long now
= jiffies
;
527 return time_before(now
, rwb
->last_issue
+ HZ
/ 10) ||
528 time_before(now
, rwb
->last_comp
+ HZ
/ 10);
531 #define REQ_HIPRIO (REQ_SYNC | REQ_META | REQ_PRIO | REQ_SWAP)
533 static inline unsigned int get_limit(struct rq_wb
*rwb
, blk_opf_t opf
)
537 if ((opf
& REQ_OP_MASK
) == REQ_OP_DISCARD
)
538 return rwb
->wb_background
;
541 * At this point we know it's a buffered write. If this is
542 * swap trying to free memory, or REQ_SYNC is set, then
543 * it's WB_SYNC_ALL writeback, and we'll use the max limit for
544 * that. If the write is marked as a background write, then use
545 * the idle limit, or go to normal if we haven't had competing
548 if ((opf
& REQ_HIPRIO
) || wb_recent_wait(rwb
))
549 limit
= rwb
->rq_depth
.max_depth
;
550 else if ((opf
& REQ_BACKGROUND
) || close_io(rwb
)) {
552 * If less than 100ms since we completed unrelated IO,
553 * limit us to half the depth for background writeback.
555 limit
= rwb
->wb_background
;
557 limit
= rwb
->wb_normal
;
562 struct wbt_wait_data
{
564 enum wbt_flags wb_acct
;
568 static bool wbt_inflight_cb(struct rq_wait
*rqw
, void *private_data
)
570 struct wbt_wait_data
*data
= private_data
;
571 return rq_wait_inc_below(rqw
, get_limit(data
->rwb
, data
->opf
));
574 static void wbt_cleanup_cb(struct rq_wait
*rqw
, void *private_data
)
576 struct wbt_wait_data
*data
= private_data
;
577 wbt_rqw_done(data
->rwb
, rqw
, data
->wb_acct
);
581 * Block if we will exceed our limit, or if we are currently waiting for
582 * the timer to kick off queuing again.
584 static void __wbt_wait(struct rq_wb
*rwb
, enum wbt_flags wb_acct
,
587 struct rq_wait
*rqw
= get_rq_wait(rwb
, wb_acct
);
588 struct wbt_wait_data data
= {
594 rq_qos_wait(rqw
, &data
, wbt_inflight_cb
, wbt_cleanup_cb
);
597 static inline bool wbt_should_throttle(struct bio
*bio
)
599 switch (bio_op(bio
)) {
602 * Don't throttle WRITE_ODIRECT
604 if ((bio
->bi_opf
& (REQ_SYNC
| REQ_IDLE
)) ==
605 (REQ_SYNC
| REQ_IDLE
))
615 static enum wbt_flags
bio_to_wbt_flags(struct rq_wb
*rwb
, struct bio
*bio
)
617 enum wbt_flags flags
= 0;
619 if (!rwb_enabled(rwb
))
622 if (bio_op(bio
) == REQ_OP_READ
) {
624 } else if (wbt_should_throttle(bio
)) {
625 if (bio
->bi_opf
& REQ_SWAP
)
627 if (bio_op(bio
) == REQ_OP_DISCARD
)
628 flags
|= WBT_DISCARD
;
629 flags
|= WBT_TRACKED
;
634 static void wbt_cleanup(struct rq_qos
*rqos
, struct bio
*bio
)
636 struct rq_wb
*rwb
= RQWB(rqos
);
637 enum wbt_flags flags
= bio_to_wbt_flags(rwb
, bio
);
638 __wbt_done(rqos
, flags
);
642 * May sleep, if we have exceeded the writeback limits. Caller can pass
643 * in an irq held spinlock, if it holds one when calling this function.
644 * If we do sleep, we'll release and re-grab it.
646 static void wbt_wait(struct rq_qos
*rqos
, struct bio
*bio
)
648 struct rq_wb
*rwb
= RQWB(rqos
);
649 enum wbt_flags flags
;
651 flags
= bio_to_wbt_flags(rwb
, bio
);
652 if (!(flags
& WBT_TRACKED
)) {
653 if (flags
& WBT_READ
)
654 wb_timestamp(rwb
, &rwb
->last_issue
);
658 __wbt_wait(rwb
, flags
, bio
->bi_opf
);
660 if (!blk_stat_is_active(rwb
->cb
))
664 static void wbt_track(struct rq_qos
*rqos
, struct request
*rq
, struct bio
*bio
)
666 struct rq_wb
*rwb
= RQWB(rqos
);
667 rq
->wbt_flags
|= bio_to_wbt_flags(rwb
, bio
);
670 static void wbt_issue(struct rq_qos
*rqos
, struct request
*rq
)
672 struct rq_wb
*rwb
= RQWB(rqos
);
674 if (!rwb_enabled(rwb
))
678 * Track sync issue, in case it takes a long time to complete. Allows us
679 * to react quicker, if a sync IO takes a long time to complete. Note
680 * that this is just a hint. The request can go away when it completes,
681 * so it's important we never dereference it. We only use the address to
682 * compare with, which is why we store the sync_issue time locally.
684 if (wbt_is_read(rq
) && !rwb
->sync_issue
) {
685 rwb
->sync_cookie
= rq
;
686 rwb
->sync_issue
= rq
->io_start_time_ns
;
690 static void wbt_requeue(struct rq_qos
*rqos
, struct request
*rq
)
692 struct rq_wb
*rwb
= RQWB(rqos
);
693 if (!rwb_enabled(rwb
))
695 if (rq
== rwb
->sync_cookie
) {
697 rwb
->sync_cookie
= NULL
;
702 * Enable wbt if defaults are configured that way
704 void wbt_enable_default(struct gendisk
*disk
)
706 struct request_queue
*q
= disk
->queue
;
708 bool enable
= IS_ENABLED(CONFIG_BLK_WBT_MQ
);
711 test_bit(ELEVATOR_FLAG_DISABLE_WBT
, &q
->elevator
->flags
))
714 /* Throttling already enabled? */
715 rqos
= wbt_rq_qos(q
);
717 if (enable
&& RQWB(rqos
)->enable_state
== WBT_STATE_OFF_DEFAULT
)
718 RQWB(rqos
)->enable_state
= WBT_STATE_ON_DEFAULT
;
722 /* Queue not registered? Maybe shutting down... */
723 if (!blk_queue_registered(q
))
726 if (queue_is_mq(q
) && enable
)
729 EXPORT_SYMBOL_GPL(wbt_enable_default
);
731 u64
wbt_default_latency_nsec(struct request_queue
*q
)
734 * We default to 2msec for non-rotational storage, and 75msec
735 * for rotational storage.
737 if (blk_queue_nonrot(q
))
743 static int wbt_data_dir(const struct request
*rq
)
745 const enum req_op op
= req_op(rq
);
747 if (op
== REQ_OP_READ
)
749 else if (op_is_write(op
))
756 static void wbt_queue_depth_changed(struct rq_qos
*rqos
)
758 RQWB(rqos
)->rq_depth
.queue_depth
= blk_queue_depth(rqos
->disk
->queue
);
759 wbt_update_limits(RQWB(rqos
));
762 static void wbt_exit(struct rq_qos
*rqos
)
764 struct rq_wb
*rwb
= RQWB(rqos
);
766 blk_stat_remove_callback(rqos
->disk
->queue
, rwb
->cb
);
767 blk_stat_free_callback(rwb
->cb
);
772 * Disable wbt, if enabled by default.
774 void wbt_disable_default(struct gendisk
*disk
)
776 struct rq_qos
*rqos
= wbt_rq_qos(disk
->queue
);
781 if (rwb
->enable_state
== WBT_STATE_ON_DEFAULT
) {
782 blk_stat_deactivate(rwb
->cb
);
783 rwb
->enable_state
= WBT_STATE_OFF_DEFAULT
;
786 EXPORT_SYMBOL_GPL(wbt_disable_default
);
788 #ifdef CONFIG_BLK_DEBUG_FS
789 static int wbt_curr_win_nsec_show(void *data
, struct seq_file
*m
)
791 struct rq_qos
*rqos
= data
;
792 struct rq_wb
*rwb
= RQWB(rqos
);
794 seq_printf(m
, "%llu\n", rwb
->cur_win_nsec
);
798 static int wbt_enabled_show(void *data
, struct seq_file
*m
)
800 struct rq_qos
*rqos
= data
;
801 struct rq_wb
*rwb
= RQWB(rqos
);
803 seq_printf(m
, "%d\n", rwb
->enable_state
);
807 static int wbt_id_show(void *data
, struct seq_file
*m
)
809 struct rq_qos
*rqos
= data
;
811 seq_printf(m
, "%u\n", rqos
->id
);
815 static int wbt_inflight_show(void *data
, struct seq_file
*m
)
817 struct rq_qos
*rqos
= data
;
818 struct rq_wb
*rwb
= RQWB(rqos
);
821 for (i
= 0; i
< WBT_NUM_RWQ
; i
++)
822 seq_printf(m
, "%d: inflight %d\n", i
,
823 atomic_read(&rwb
->rq_wait
[i
].inflight
));
827 static int wbt_min_lat_nsec_show(void *data
, struct seq_file
*m
)
829 struct rq_qos
*rqos
= data
;
830 struct rq_wb
*rwb
= RQWB(rqos
);
832 seq_printf(m
, "%lu\n", rwb
->min_lat_nsec
);
836 static int wbt_unknown_cnt_show(void *data
, struct seq_file
*m
)
838 struct rq_qos
*rqos
= data
;
839 struct rq_wb
*rwb
= RQWB(rqos
);
841 seq_printf(m
, "%u\n", rwb
->unknown_cnt
);
845 static int wbt_normal_show(void *data
, struct seq_file
*m
)
847 struct rq_qos
*rqos
= data
;
848 struct rq_wb
*rwb
= RQWB(rqos
);
850 seq_printf(m
, "%u\n", rwb
->wb_normal
);
854 static int wbt_background_show(void *data
, struct seq_file
*m
)
856 struct rq_qos
*rqos
= data
;
857 struct rq_wb
*rwb
= RQWB(rqos
);
859 seq_printf(m
, "%u\n", rwb
->wb_background
);
863 static const struct blk_mq_debugfs_attr wbt_debugfs_attrs
[] = {
864 {"curr_win_nsec", 0400, wbt_curr_win_nsec_show
},
865 {"enabled", 0400, wbt_enabled_show
},
866 {"id", 0400, wbt_id_show
},
867 {"inflight", 0400, wbt_inflight_show
},
868 {"min_lat_nsec", 0400, wbt_min_lat_nsec_show
},
869 {"unknown_cnt", 0400, wbt_unknown_cnt_show
},
870 {"wb_normal", 0400, wbt_normal_show
},
871 {"wb_background", 0400, wbt_background_show
},
876 static const struct rq_qos_ops wbt_rqos_ops
= {
877 .throttle
= wbt_wait
,
880 .requeue
= wbt_requeue
,
882 .cleanup
= wbt_cleanup
,
883 .queue_depth_changed
= wbt_queue_depth_changed
,
885 #ifdef CONFIG_BLK_DEBUG_FS
886 .debugfs_attrs
= wbt_debugfs_attrs
,
890 int wbt_init(struct gendisk
*disk
)
892 struct request_queue
*q
= disk
->queue
;
897 rwb
= kzalloc(sizeof(*rwb
), GFP_KERNEL
);
901 rwb
->cb
= blk_stat_alloc_callback(wb_timer_fn
, wbt_data_dir
, 2, rwb
);
907 for (i
= 0; i
< WBT_NUM_RWQ
; i
++)
908 rq_wait_init(&rwb
->rq_wait
[i
]);
910 rwb
->last_comp
= rwb
->last_issue
= jiffies
;
911 rwb
->win_nsec
= RWB_WINDOW_NSEC
;
912 rwb
->enable_state
= WBT_STATE_ON_DEFAULT
;
913 rwb
->rq_depth
.default_depth
= RWB_DEF_DEPTH
;
914 rwb
->min_lat_nsec
= wbt_default_latency_nsec(q
);
915 rwb
->rq_depth
.queue_depth
= blk_queue_depth(q
);
916 wbt_update_limits(rwb
);
919 * Assign rwb and add the stats callback.
921 mutex_lock(&q
->rq_qos_mutex
);
922 ret
= rq_qos_add(&rwb
->rqos
, disk
, RQ_QOS_WBT
, &wbt_rqos_ops
);
923 mutex_unlock(&q
->rq_qos_mutex
);
927 blk_stat_add_callback(q
, rwb
->cb
);
932 blk_stat_free_callback(rwb
->cb
);