blob: 01d0620a4e4a5e829c9de5c2dec0ac5e0b2b3ab3 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Vivek Goyale43473b2010-09-15 17:06:35 -04002/*
3 * Interface for controlling IO bandwidth on a request queue
4 *
5 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
6 */
7
8#include <linux/module.h>
9#include <linux/slab.h>
10#include <linux/blkdev.h>
11#include <linux/bio.h>
12#include <linux/blktrace_api.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040013#include <linux/blk-cgroup.h>
Tejun Heobc9fcbf2011-10-19 14:31:18 +020014#include "blk.h"
Vivek Goyale43473b2010-09-15 17:06:35 -040015
16/* Max dispatch from a group in 1 round */
17static int throtl_grp_quantum = 8;
18
19/* Total max dispatch from all groups in one round */
20static int throtl_quantum = 32;
21
Shaohua Lid61fcfa2017-03-27 10:51:38 -070022/* Throttling is performed over a slice and after that slice is renewed */
23#define DFL_THROTL_SLICE_HD (HZ / 10)
24#define DFL_THROTL_SLICE_SSD (HZ / 50)
Shaohua Li297e3d82017-03-27 10:51:37 -070025#define MAX_THROTL_SLICE (HZ)
Shaohua Li9e234ee2017-03-27 10:51:41 -070026#define MAX_IDLE_TIME (5L * 1000 * 1000) /* 5 s */
Shaohua Li9bb67ae2017-05-17 13:07:26 -070027#define MIN_THROTL_BPS (320 * 1024)
28#define MIN_THROTL_IOPS (10)
Shaohua Lib4f428e2017-05-17 13:07:27 -070029#define DFL_LATENCY_TARGET (-1L)
30#define DFL_IDLE_THRESHOLD (0)
Shaohua Li6679a902017-06-06 12:40:43 -070031#define DFL_HD_BASELINE_LATENCY (4000L) /* 4ms */
32#define LATENCY_FILTERED_SSD (0)
33/*
34 * For HD, very small latency comes from sequential IO. Such IO is helpless to
35 * help determine if its IO is impacted by others, hence we ignore the IO
36 */
37#define LATENCY_FILTERED_HD (1000L) /* 1ms */
Vivek Goyale43473b2010-09-15 17:06:35 -040038
Tejun Heo3c798392012-04-16 13:57:25 -070039static struct blkcg_policy blkcg_policy_throtl;
Tejun Heo03814112012-03-05 13:15:14 -080040
Vivek Goyal450adcb2011-03-01 13:40:54 -050041/* A workqueue to queue throttle related work */
42static struct workqueue_struct *kthrotld_workqueue;
Vivek Goyal450adcb2011-03-01 13:40:54 -050043
Tejun Heoc5cc2072013-05-14 13:52:38 -070044/*
45 * To implement hierarchical throttling, throtl_grps form a tree and bios
46 * are dispatched upwards level by level until they reach the top and get
47 * issued. When dispatching bios from the children and local group at each
48 * level, if the bios are dispatched into a single bio_list, there's a risk
49 * of a local or child group which can queue many bios at once filling up
50 * the list starving others.
51 *
52 * To avoid such starvation, dispatched bios are queued separately
53 * according to where they came from. When they are again dispatched to
54 * the parent, they're popped in round-robin order so that no single source
55 * hogs the dispatch window.
56 *
57 * throtl_qnode is used to keep the queued bios separated by their sources.
58 * Bios are queued to throtl_qnode which in turn is queued to
59 * throtl_service_queue and then dispatched in round-robin order.
60 *
61 * It's also used to track the reference counts on blkg's. A qnode always
62 * belongs to a throtl_grp and gets queued on itself or the parent, so
63 * incrementing the reference of the associated throtl_grp when a qnode is
64 * queued and decrementing when dequeued is enough to keep the whole blkg
65 * tree pinned while bios are in flight.
66 */
67struct throtl_qnode {
68 struct list_head node; /* service_queue->queued[] */
69 struct bio_list bios; /* queued bios */
70 struct throtl_grp *tg; /* tg this qnode belongs to */
71};
72
Tejun Heoc9e03322013-05-14 13:52:32 -070073struct throtl_service_queue {
Tejun Heo77216b02013-05-14 13:52:36 -070074 struct throtl_service_queue *parent_sq; /* the parent service_queue */
75
Tejun Heo73f0d492013-05-14 13:52:35 -070076 /*
77 * Bios queued directly to this service_queue or dispatched from
78 * children throtl_grp's.
79 */
Tejun Heoc5cc2072013-05-14 13:52:38 -070080 struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */
Tejun Heo73f0d492013-05-14 13:52:35 -070081 unsigned int nr_queued[2]; /* number of queued bios */
82
83 /*
84 * RB tree of active children throtl_grp's, which are sorted by
85 * their ->disptime.
86 */
Tejun Heoc9e03322013-05-14 13:52:32 -070087 struct rb_root pending_tree; /* RB tree of active tgs */
88 struct rb_node *first_pending; /* first node in the tree */
89 unsigned int nr_pending; /* # queued in the tree */
90 unsigned long first_pending_disptime; /* disptime of the first tg */
Tejun Heo69df0ab2013-05-14 13:52:36 -070091 struct timer_list pending_timer; /* fires on first_pending_disptime */
Vivek Goyale43473b2010-09-15 17:06:35 -040092};
93
Tejun Heo5b2c16a2013-05-14 13:52:32 -070094enum tg_state_flags {
95 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
Tejun Heo0e9f4162013-05-14 13:52:35 -070096 THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */
Tejun Heo5b2c16a2013-05-14 13:52:32 -070097};
98
Vivek Goyale43473b2010-09-15 17:06:35 -040099#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
100
Shaohua Li9f626e32017-03-27 10:51:30 -0700101enum {
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700102 LIMIT_LOW,
Shaohua Li9f626e32017-03-27 10:51:30 -0700103 LIMIT_MAX,
104 LIMIT_CNT,
105};
106
Vivek Goyale43473b2010-09-15 17:06:35 -0400107struct throtl_grp {
Tejun Heof95a04a2012-04-16 13:57:26 -0700108 /* must be the first member */
109 struct blkg_policy_data pd;
110
Tejun Heoc9e03322013-05-14 13:52:32 -0700111 /* active throtl group service_queue member */
Vivek Goyale43473b2010-09-15 17:06:35 -0400112 struct rb_node rb_node;
113
Tejun Heo0f3457f2013-05-14 13:52:32 -0700114 /* throtl_data this group belongs to */
115 struct throtl_data *td;
116
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700117 /* this group's service queue */
118 struct throtl_service_queue service_queue;
119
Vivek Goyale43473b2010-09-15 17:06:35 -0400120 /*
Tejun Heoc5cc2072013-05-14 13:52:38 -0700121 * qnode_on_self is used when bios are directly queued to this
122 * throtl_grp so that local bios compete fairly with bios
123 * dispatched from children. qnode_on_parent is used when bios are
124 * dispatched from this throtl_grp into its parent and will compete
125 * with the sibling qnode_on_parents and the parent's
126 * qnode_on_self.
127 */
128 struct throtl_qnode qnode_on_self[2];
129 struct throtl_qnode qnode_on_parent[2];
130
131 /*
Vivek Goyale43473b2010-09-15 17:06:35 -0400132 * Dispatch time in jiffies. This is the estimated time when group
133 * will unthrottle and is ready to dispatch more bio. It is used as
134 * key to sort active groups in service tree.
135 */
136 unsigned long disptime;
137
Vivek Goyale43473b2010-09-15 17:06:35 -0400138 unsigned int flags;
139
Tejun Heo693e7512013-05-14 13:52:38 -0700140 /* are there any throtl rules between this group and td? */
141 bool has_rules[2];
142
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700143 /* internally used bytes per second rate limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700144 uint64_t bps[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700145 /* user configured bps limits */
146 uint64_t bps_conf[2][LIMIT_CNT];
Vivek Goyale43473b2010-09-15 17:06:35 -0400147
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700148 /* internally used IOPS limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700149 unsigned int iops[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700150 /* user configured IOPS limits */
151 unsigned int iops_conf[2][LIMIT_CNT];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400152
Vivek Goyale43473b2010-09-15 17:06:35 -0400153 /* Number of bytes disptached in current slice */
154 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400155 /* Number of bio's dispatched in current slice */
156 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -0400157
Shaohua Li3f0abd82017-03-27 10:51:35 -0700158 unsigned long last_low_overflow_time[2];
159
160 uint64_t last_bytes_disp[2];
161 unsigned int last_io_disp[2];
162
163 unsigned long last_check_time;
164
Shaohua Liec809912017-03-27 10:51:44 -0700165 unsigned long latency_target; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700166 unsigned long latency_target_conf; /* us */
Vivek Goyale43473b2010-09-15 17:06:35 -0400167 /* When did we start a new slice */
168 unsigned long slice_start[2];
169 unsigned long slice_end[2];
Shaohua Li9e234ee2017-03-27 10:51:41 -0700170
171 unsigned long last_finish_time; /* ns / 1024 */
172 unsigned long checked_last_finish_time; /* ns / 1024 */
173 unsigned long avg_idletime; /* ns / 1024 */
174 unsigned long idletime_threshold; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700175 unsigned long idletime_threshold_conf; /* us */
Shaohua Li53696b82017-03-27 15:19:43 -0700176
177 unsigned int bio_cnt; /* total bios */
178 unsigned int bad_bio_cnt; /* bios exceeding latency threshold */
179 unsigned long bio_cnt_reset_time;
Vivek Goyale43473b2010-09-15 17:06:35 -0400180};
181
Shaohua Lib9147dd2017-03-27 15:19:42 -0700182/* We measure latency for request size from <= 4k to >= 1M */
183#define LATENCY_BUCKET_SIZE 9
184
185struct latency_bucket {
186 unsigned long total_latency; /* ns / 1024 */
187 int samples;
188};
189
190struct avg_latency_bucket {
191 unsigned long latency; /* ns / 1024 */
192 bool valid;
193};
194
Vivek Goyale43473b2010-09-15 17:06:35 -0400195struct throtl_data
196{
Vivek Goyale43473b2010-09-15 17:06:35 -0400197 /* service tree for active throtl groups */
Tejun Heoc9e03322013-05-14 13:52:32 -0700198 struct throtl_service_queue service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400199
Vivek Goyale43473b2010-09-15 17:06:35 -0400200 struct request_queue *queue;
201
202 /* Total Number of queued bios on READ and WRITE lists */
203 unsigned int nr_queued[2];
204
Shaohua Li297e3d82017-03-27 10:51:37 -0700205 unsigned int throtl_slice;
206
Vivek Goyale43473b2010-09-15 17:06:35 -0400207 /* Work for dispatching throttled bios */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700208 struct work_struct dispatch_work;
Shaohua Li9f626e32017-03-27 10:51:30 -0700209 unsigned int limit_index;
210 bool limit_valid[LIMIT_CNT];
Shaohua Li3f0abd82017-03-27 10:51:35 -0700211
212 unsigned long low_upgrade_time;
213 unsigned long low_downgrade_time;
Shaohua Li7394e312017-03-27 10:51:40 -0700214
215 unsigned int scale;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700216
Joseph Qib889bf62017-11-21 09:38:30 +0800217 struct latency_bucket tmp_buckets[2][LATENCY_BUCKET_SIZE];
218 struct avg_latency_bucket avg_buckets[2][LATENCY_BUCKET_SIZE];
219 struct latency_bucket __percpu *latency_buckets[2];
Shaohua Lib9147dd2017-03-27 15:19:42 -0700220 unsigned long last_calculate_time;
Shaohua Li6679a902017-06-06 12:40:43 -0700221 unsigned long filtered_latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700222
223 bool track_bio_latency;
Vivek Goyale43473b2010-09-15 17:06:35 -0400224};
225
Kees Cooke99e88a2017-10-16 14:43:17 -0700226static void throtl_pending_timer_fn(struct timer_list *t);
Tejun Heo69df0ab2013-05-14 13:52:36 -0700227
Tejun Heof95a04a2012-04-16 13:57:26 -0700228static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
229{
230 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
231}
232
Tejun Heo3c798392012-04-16 13:57:25 -0700233static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -0800234{
Tejun Heof95a04a2012-04-16 13:57:26 -0700235 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
Tejun Heo03814112012-03-05 13:15:14 -0800236}
237
Tejun Heo3c798392012-04-16 13:57:25 -0700238static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
Tejun Heo03814112012-03-05 13:15:14 -0800239{
Tejun Heof95a04a2012-04-16 13:57:26 -0700240 return pd_to_blkg(&tg->pd);
Tejun Heo03814112012-03-05 13:15:14 -0800241}
242
Tejun Heofda6f272013-05-14 13:52:36 -0700243/**
244 * sq_to_tg - return the throl_grp the specified service queue belongs to
245 * @sq: the throtl_service_queue of interest
246 *
247 * Return the throtl_grp @sq belongs to. If @sq is the top-level one
248 * embedded in throtl_data, %NULL is returned.
249 */
250static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq)
251{
252 if (sq && sq->parent_sq)
253 return container_of(sq, struct throtl_grp, service_queue);
254 else
255 return NULL;
256}
Vivek Goyale43473b2010-09-15 17:06:35 -0400257
Tejun Heofda6f272013-05-14 13:52:36 -0700258/**
259 * sq_to_td - return throtl_data the specified service queue belongs to
260 * @sq: the throtl_service_queue of interest
261 *
Masahiro Yamadab43daed2017-02-27 14:29:09 -0800262 * A service_queue can be embedded in either a throtl_grp or throtl_data.
Tejun Heofda6f272013-05-14 13:52:36 -0700263 * Determine the associated throtl_data accordingly and return it.
264 */
265static struct throtl_data *sq_to_td(struct throtl_service_queue *sq)
266{
267 struct throtl_grp *tg = sq_to_tg(sq);
268
269 if (tg)
270 return tg->td;
271 else
272 return container_of(sq, struct throtl_data, service_queue);
273}
274
Shaohua Li7394e312017-03-27 10:51:40 -0700275/*
276 * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to
277 * make the IO dispatch more smooth.
278 * Scale up: linearly scale up according to lapsed time since upgrade. For
279 * every throtl_slice, the limit scales up 1/2 .low limit till the
280 * limit hits .max limit
281 * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit
282 */
283static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td)
284{
285 /* arbitrary value to avoid too big scale */
286 if (td->scale < 4096 && time_after_eq(jiffies,
287 td->low_upgrade_time + td->scale * td->throtl_slice))
288 td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice;
289
290 return low + (low >> 1) * td->scale;
291}
292
Shaohua Li9f626e32017-03-27 10:51:30 -0700293static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw)
294{
Shaohua Lib22c4172017-03-27 10:51:33 -0700295 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700296 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700297 uint64_t ret;
298
299 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
300 return U64_MAX;
Shaohua Li7394e312017-03-27 10:51:40 -0700301
302 td = tg->td;
303 ret = tg->bps[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700304 if (ret == 0 && td->limit_index == LIMIT_LOW) {
305 /* intermediate node or iops isn't 0 */
306 if (!list_empty(&blkg->blkcg->css.children) ||
307 tg->iops[rw][td->limit_index])
308 return U64_MAX;
309 else
310 return MIN_THROTL_BPS;
311 }
Shaohua Li7394e312017-03-27 10:51:40 -0700312
313 if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] &&
314 tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) {
315 uint64_t adjusted;
316
317 adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td);
318 ret = min(tg->bps[rw][LIMIT_MAX], adjusted);
319 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700320 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700321}
322
323static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
324{
Shaohua Lib22c4172017-03-27 10:51:33 -0700325 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700326 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700327 unsigned int ret;
328
329 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
330 return UINT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700331
Shaohua Li7394e312017-03-27 10:51:40 -0700332 td = tg->td;
333 ret = tg->iops[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700334 if (ret == 0 && tg->td->limit_index == LIMIT_LOW) {
335 /* intermediate node or bps isn't 0 */
336 if (!list_empty(&blkg->blkcg->css.children) ||
337 tg->bps[rw][td->limit_index])
338 return UINT_MAX;
339 else
340 return MIN_THROTL_IOPS;
341 }
Shaohua Li7394e312017-03-27 10:51:40 -0700342
343 if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] &&
344 tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) {
345 uint64_t adjusted;
346
347 adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td);
348 if (adjusted > UINT_MAX)
349 adjusted = UINT_MAX;
350 ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted);
351 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700352 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700353}
354
Shaohua Lib9147dd2017-03-27 15:19:42 -0700355#define request_bucket_index(sectors) \
356 clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1)
357
Tejun Heofda6f272013-05-14 13:52:36 -0700358/**
359 * throtl_log - log debug message via blktrace
360 * @sq: the service_queue being reported
361 * @fmt: printf format string
362 * @args: printf args
363 *
364 * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a
365 * throtl_grp; otherwise, just "throtl".
Tejun Heofda6f272013-05-14 13:52:36 -0700366 */
367#define throtl_log(sq, fmt, args...) do { \
368 struct throtl_grp *__tg = sq_to_tg((sq)); \
369 struct throtl_data *__td = sq_to_td((sq)); \
370 \
371 (void)__td; \
Shaohua Li59fa0222016-05-09 17:22:15 -0700372 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
373 break; \
Tejun Heofda6f272013-05-14 13:52:36 -0700374 if ((__tg)) { \
Shaohua Li35fe6d72017-07-12 11:49:56 -0700375 blk_add_cgroup_trace_msg(__td->queue, \
376 tg_to_blkg(__tg)->blkcg, "throtl " fmt, ##args);\
Tejun Heofda6f272013-05-14 13:52:36 -0700377 } else { \
378 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
379 } \
380} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400381
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700382static inline unsigned int throtl_bio_data_size(struct bio *bio)
383{
384 /* assume it's one sector */
385 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
386 return 512;
387 return bio->bi_iter.bi_size;
388}
389
Tejun Heoc5cc2072013-05-14 13:52:38 -0700390static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
391{
392 INIT_LIST_HEAD(&qn->node);
393 bio_list_init(&qn->bios);
394 qn->tg = tg;
395}
396
397/**
398 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
399 * @bio: bio being added
400 * @qn: qnode to add bio to
401 * @queued: the service_queue->queued[] list @qn belongs to
402 *
403 * Add @bio to @qn and put @qn on @queued if it's not already on.
404 * @qn->tg's reference count is bumped when @qn is activated. See the
405 * comment on top of throtl_qnode definition for details.
406 */
407static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
408 struct list_head *queued)
409{
410 bio_list_add(&qn->bios, bio);
411 if (list_empty(&qn->node)) {
412 list_add_tail(&qn->node, queued);
413 blkg_get(tg_to_blkg(qn->tg));
414 }
415}
416
417/**
418 * throtl_peek_queued - peek the first bio on a qnode list
419 * @queued: the qnode list to peek
420 */
421static struct bio *throtl_peek_queued(struct list_head *queued)
422{
423 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
424 struct bio *bio;
425
426 if (list_empty(queued))
427 return NULL;
428
429 bio = bio_list_peek(&qn->bios);
430 WARN_ON_ONCE(!bio);
431 return bio;
432}
433
434/**
435 * throtl_pop_queued - pop the first bio form a qnode list
436 * @queued: the qnode list to pop a bio from
437 * @tg_to_put: optional out argument for throtl_grp to put
438 *
439 * Pop the first bio from the qnode list @queued. After popping, the first
440 * qnode is removed from @queued if empty or moved to the end of @queued so
441 * that the popping order is round-robin.
442 *
443 * When the first qnode is removed, its associated throtl_grp should be put
444 * too. If @tg_to_put is NULL, this function automatically puts it;
445 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
446 * responsible for putting it.
447 */
448static struct bio *throtl_pop_queued(struct list_head *queued,
449 struct throtl_grp **tg_to_put)
450{
451 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
452 struct bio *bio;
453
454 if (list_empty(queued))
455 return NULL;
456
457 bio = bio_list_pop(&qn->bios);
458 WARN_ON_ONCE(!bio);
459
460 if (bio_list_empty(&qn->bios)) {
461 list_del_init(&qn->node);
462 if (tg_to_put)
463 *tg_to_put = qn->tg;
464 else
465 blkg_put(tg_to_blkg(qn->tg));
466 } else {
467 list_move_tail(&qn->node, queued);
468 }
469
470 return bio;
471}
472
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700473/* init a service_queue, assumes the caller zeroed it */
Tejun Heob2ce2642015-08-18 14:55:13 -0700474static void throtl_service_queue_init(struct throtl_service_queue *sq)
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700475{
Tejun Heoc5cc2072013-05-14 13:52:38 -0700476 INIT_LIST_HEAD(&sq->queued[0]);
477 INIT_LIST_HEAD(&sq->queued[1]);
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700478 sq->pending_tree = RB_ROOT;
Kees Cooke99e88a2017-10-16 14:43:17 -0700479 timer_setup(&sq->pending_timer, throtl_pending_timer_fn, 0);
Tejun Heo69df0ab2013-05-14 13:52:36 -0700480}
481
Tejun Heo001bea72015-08-18 14:55:11 -0700482static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
483{
Tejun Heo4fb72032015-08-18 14:55:12 -0700484 struct throtl_grp *tg;
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700485 int rw;
Tejun Heo4fb72032015-08-18 14:55:12 -0700486
487 tg = kzalloc_node(sizeof(*tg), gfp, node);
488 if (!tg)
Tejun Heo77ea7332015-08-18 14:55:24 -0700489 return NULL;
Tejun Heo4fb72032015-08-18 14:55:12 -0700490
Tejun Heob2ce2642015-08-18 14:55:13 -0700491 throtl_service_queue_init(&tg->service_queue);
492
493 for (rw = READ; rw <= WRITE; rw++) {
494 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
495 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
496 }
497
498 RB_CLEAR_NODE(&tg->rb_node);
Shaohua Li9f626e32017-03-27 10:51:30 -0700499 tg->bps[READ][LIMIT_MAX] = U64_MAX;
500 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
501 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
502 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700503 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
504 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
505 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
506 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
507 /* LIMIT_LOW will have default value 0 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700508
Shaohua Liec809912017-03-27 10:51:44 -0700509 tg->latency_target = DFL_LATENCY_TARGET;
Shaohua Li5b81fc32017-05-17 13:07:24 -0700510 tg->latency_target_conf = DFL_LATENCY_TARGET;
Shaohua Lib4f428e2017-05-17 13:07:27 -0700511 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
512 tg->idletime_threshold_conf = DFL_IDLE_THRESHOLD;
Shaohua Liec809912017-03-27 10:51:44 -0700513
Tejun Heo4fb72032015-08-18 14:55:12 -0700514 return &tg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -0700515}
516
Tejun Heoa9520cd2015-08-18 14:55:14 -0700517static void throtl_pd_init(struct blkg_policy_data *pd)
Vivek Goyala29a1712011-05-19 15:38:19 -0400518{
Tejun Heoa9520cd2015-08-18 14:55:14 -0700519 struct throtl_grp *tg = pd_to_tg(pd);
520 struct blkcg_gq *blkg = tg_to_blkg(tg);
Tejun Heo77216b02013-05-14 13:52:36 -0700521 struct throtl_data *td = blkg->q->td;
Tejun Heob2ce2642015-08-18 14:55:13 -0700522 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800523
Tejun Heo91381252013-05-14 13:52:38 -0700524 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -0400525 * If on the default hierarchy, we switch to properly hierarchical
Tejun Heo91381252013-05-14 13:52:38 -0700526 * behavior where limits on a given throtl_grp are applied to the
527 * whole subtree rather than just the group itself. e.g. If 16M
528 * read_bps limit is set on the root group, the whole system can't
529 * exceed 16M for the device.
530 *
Tejun Heoaa6ec292014-07-09 10:08:08 -0400531 * If not on the default hierarchy, the broken flat hierarchy
Tejun Heo91381252013-05-14 13:52:38 -0700532 * behavior is retained where all throtl_grps are treated as if
533 * they're all separate root groups right below throtl_data.
534 * Limits of a group don't interact with limits of other groups
535 * regardless of the position of the group in the hierarchy.
536 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700537 sq->parent_sq = &td->service_queue;
Tejun Heo9e10a132015-09-18 11:56:28 -0400538 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
Tejun Heob2ce2642015-08-18 14:55:13 -0700539 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
Tejun Heo77216b02013-05-14 13:52:36 -0700540 tg->td = td;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700541}
542
Tejun Heo693e7512013-05-14 13:52:38 -0700543/*
544 * Set has_rules[] if @tg or any of its parents have limits configured.
545 * This doesn't require walking up to the top of the hierarchy as the
546 * parent's has_rules[] is guaranteed to be correct.
547 */
548static void tg_update_has_rules(struct throtl_grp *tg)
549{
550 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
Shaohua Li9f626e32017-03-27 10:51:30 -0700551 struct throtl_data *td = tg->td;
Tejun Heo693e7512013-05-14 13:52:38 -0700552 int rw;
553
554 for (rw = READ; rw <= WRITE; rw++)
555 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
Shaohua Li9f626e32017-03-27 10:51:30 -0700556 (td->limit_valid[td->limit_index] &&
557 (tg_bps_limit(tg, rw) != U64_MAX ||
558 tg_iops_limit(tg, rw) != UINT_MAX));
Tejun Heo693e7512013-05-14 13:52:38 -0700559}
560
Tejun Heoa9520cd2015-08-18 14:55:14 -0700561static void throtl_pd_online(struct blkg_policy_data *pd)
Tejun Heo693e7512013-05-14 13:52:38 -0700562{
Shaohua Liaec24242017-03-27 10:51:39 -0700563 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo693e7512013-05-14 13:52:38 -0700564 /*
565 * We don't want new groups to escape the limits of its ancestors.
566 * Update has_rules[] after a new group is brought online.
567 */
Shaohua Liaec24242017-03-27 10:51:39 -0700568 tg_update_has_rules(tg);
Tejun Heo693e7512013-05-14 13:52:38 -0700569}
570
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700571static void blk_throtl_update_limit_valid(struct throtl_data *td)
572{
573 struct cgroup_subsys_state *pos_css;
574 struct blkcg_gq *blkg;
575 bool low_valid = false;
576
577 rcu_read_lock();
578 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
579 struct throtl_grp *tg = blkg_to_tg(blkg);
580
581 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
Liu Bo43ada782018-06-29 09:56:56 +0800582 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) {
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700583 low_valid = true;
Liu Bo43ada782018-06-29 09:56:56 +0800584 break;
585 }
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700586 }
587 rcu_read_unlock();
588
589 td->limit_valid[LIMIT_LOW] = low_valid;
590}
591
Shaohua Lic79892c2017-03-27 10:51:34 -0700592static void throtl_upgrade_state(struct throtl_data *td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700593static void throtl_pd_offline(struct blkg_policy_data *pd)
594{
595 struct throtl_grp *tg = pd_to_tg(pd);
596
597 tg->bps[READ][LIMIT_LOW] = 0;
598 tg->bps[WRITE][LIMIT_LOW] = 0;
599 tg->iops[READ][LIMIT_LOW] = 0;
600 tg->iops[WRITE][LIMIT_LOW] = 0;
601
602 blk_throtl_update_limit_valid(tg->td);
603
Shaohua Lic79892c2017-03-27 10:51:34 -0700604 if (!tg->td->limit_valid[tg->td->limit_index])
605 throtl_upgrade_state(tg->td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700606}
607
Tejun Heo001bea72015-08-18 14:55:11 -0700608static void throtl_pd_free(struct blkg_policy_data *pd)
609{
Tejun Heo4fb72032015-08-18 14:55:12 -0700610 struct throtl_grp *tg = pd_to_tg(pd);
611
Tejun Heob2ce2642015-08-18 14:55:13 -0700612 del_timer_sync(&tg->service_queue.pending_timer);
Tejun Heo4fb72032015-08-18 14:55:12 -0700613 kfree(tg);
Tejun Heo001bea72015-08-18 14:55:11 -0700614}
615
Tejun Heo0049af72013-05-14 13:52:33 -0700616static struct throtl_grp *
617throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400618{
619 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700620 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400621 return NULL;
622
Tejun Heo0049af72013-05-14 13:52:33 -0700623 if (!parent_sq->first_pending)
624 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400625
Tejun Heo0049af72013-05-14 13:52:33 -0700626 if (parent_sq->first_pending)
627 return rb_entry_tg(parent_sq->first_pending);
Vivek Goyale43473b2010-09-15 17:06:35 -0400628
629 return NULL;
630}
631
632static void rb_erase_init(struct rb_node *n, struct rb_root *root)
633{
634 rb_erase(n, root);
635 RB_CLEAR_NODE(n);
636}
637
Tejun Heo0049af72013-05-14 13:52:33 -0700638static void throtl_rb_erase(struct rb_node *n,
639 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400640{
Tejun Heo0049af72013-05-14 13:52:33 -0700641 if (parent_sq->first_pending == n)
642 parent_sq->first_pending = NULL;
643 rb_erase_init(n, &parent_sq->pending_tree);
644 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400645}
646
Tejun Heo0049af72013-05-14 13:52:33 -0700647static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400648{
649 struct throtl_grp *tg;
650
Tejun Heo0049af72013-05-14 13:52:33 -0700651 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400652 if (!tg)
653 return;
654
Tejun Heo0049af72013-05-14 13:52:33 -0700655 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400656}
657
Tejun Heo77216b02013-05-14 13:52:36 -0700658static void tg_service_queue_add(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400659{
Tejun Heo77216b02013-05-14 13:52:36 -0700660 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
Tejun Heo0049af72013-05-14 13:52:33 -0700661 struct rb_node **node = &parent_sq->pending_tree.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400662 struct rb_node *parent = NULL;
663 struct throtl_grp *__tg;
664 unsigned long key = tg->disptime;
665 int left = 1;
666
667 while (*node != NULL) {
668 parent = *node;
669 __tg = rb_entry_tg(parent);
670
671 if (time_before(key, __tg->disptime))
672 node = &parent->rb_left;
673 else {
674 node = &parent->rb_right;
675 left = 0;
676 }
677 }
678
679 if (left)
Tejun Heo0049af72013-05-14 13:52:33 -0700680 parent_sq->first_pending = &tg->rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400681
682 rb_link_node(&tg->rb_node, parent, node);
Tejun Heo0049af72013-05-14 13:52:33 -0700683 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400684}
685
Tejun Heo77216b02013-05-14 13:52:36 -0700686static void __throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400687{
Tejun Heo77216b02013-05-14 13:52:36 -0700688 tg_service_queue_add(tg);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700689 tg->flags |= THROTL_TG_PENDING;
Tejun Heo77216b02013-05-14 13:52:36 -0700690 tg->service_queue.parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400691}
692
Tejun Heo77216b02013-05-14 13:52:36 -0700693static void throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400694{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700695 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo77216b02013-05-14 13:52:36 -0700696 __throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400697}
698
Tejun Heo77216b02013-05-14 13:52:36 -0700699static void __throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400700{
Tejun Heo77216b02013-05-14 13:52:36 -0700701 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700702 tg->flags &= ~THROTL_TG_PENDING;
Vivek Goyale43473b2010-09-15 17:06:35 -0400703}
704
Tejun Heo77216b02013-05-14 13:52:36 -0700705static void throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400706{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700707 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo77216b02013-05-14 13:52:36 -0700708 __throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400709}
710
Tejun Heoa9131a22013-05-14 13:52:31 -0700711/* Call with queue lock held */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700712static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
713 unsigned long expires)
Tejun Heoa9131a22013-05-14 13:52:31 -0700714{
Joseph Qia41b8162017-06-07 11:36:14 +0800715 unsigned long max_expire = jiffies + 8 * sq_to_td(sq)->throtl_slice;
Shaohua Li06cceed2017-03-27 10:51:36 -0700716
717 /*
718 * Since we are adjusting the throttle limit dynamically, the sleep
719 * time calculated according to previous limit might be invalid. It's
720 * possible the cgroup sleep time is very long and no other cgroups
721 * have IO running so notify the limit changes. Make sure the cgroup
722 * doesn't sleep too long to avoid the missed notification.
723 */
724 if (time_after(expires, max_expire))
725 expires = max_expire;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700726 mod_timer(&sq->pending_timer, expires);
727 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
728 expires - jiffies, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700729}
730
Tejun Heo7f52f982013-05-14 13:52:37 -0700731/**
732 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
733 * @sq: the service_queue to schedule dispatch for
734 * @force: force scheduling
735 *
736 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
737 * dispatch time of the first pending child. Returns %true if either timer
738 * is armed or there's no pending child left. %false if the current
739 * dispatch window is still open and the caller should continue
740 * dispatching.
741 *
742 * If @force is %true, the dispatch timer is always scheduled and this
743 * function is guaranteed to return %true. This is to be used when the
744 * caller can't dispatch itself and needs to invoke pending_timer
745 * unconditionally. Note that forced scheduling is likely to induce short
746 * delay before dispatch starts even if @sq->first_pending_disptime is not
747 * in the future and thus shouldn't be used in hot paths.
748 */
749static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
750 bool force)
Vivek Goyale43473b2010-09-15 17:06:35 -0400751{
Tejun Heo6a525602013-05-14 13:52:32 -0700752 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700753 if (!sq->nr_pending)
Tejun Heo7f52f982013-05-14 13:52:37 -0700754 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400755
Tejun Heoc9e03322013-05-14 13:52:32 -0700756 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400757
Tejun Heo69df0ab2013-05-14 13:52:36 -0700758 /* is the next dispatch time in the future? */
Tejun Heo7f52f982013-05-14 13:52:37 -0700759 if (force || time_after(sq->first_pending_disptime, jiffies)) {
Tejun Heo69df0ab2013-05-14 13:52:36 -0700760 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
Tejun Heo7f52f982013-05-14 13:52:37 -0700761 return true;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700762 }
763
Tejun Heo7f52f982013-05-14 13:52:37 -0700764 /* tell the caller to continue dispatching */
765 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400766}
767
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700768static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
769 bool rw, unsigned long start)
770{
771 tg->bytes_disp[rw] = 0;
772 tg->io_disp[rw] = 0;
773
774 /*
775 * Previous slice has expired. We must have trimmed it after last
776 * bio dispatch. That means since start of last slice, we never used
777 * that bandwidth. Do try to make use of that bandwidth while giving
778 * credit.
779 */
780 if (time_after_eq(start, tg->slice_start[rw]))
781 tg->slice_start[rw] = start;
782
Shaohua Li297e3d82017-03-27 10:51:37 -0700783 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700784 throtl_log(&tg->service_queue,
785 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
786 rw == READ ? 'R' : 'W', tg->slice_start[rw],
787 tg->slice_end[rw], jiffies);
788}
789
Tejun Heo0f3457f2013-05-14 13:52:32 -0700790static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400791{
792 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400793 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400794 tg->slice_start[rw] = jiffies;
Shaohua Li297e3d82017-03-27 10:51:37 -0700795 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Tejun Heofda6f272013-05-14 13:52:36 -0700796 throtl_log(&tg->service_queue,
797 "[%c] new slice start=%lu end=%lu jiffies=%lu",
798 rw == READ ? 'R' : 'W', tg->slice_start[rw],
799 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400800}
801
Tejun Heo0f3457f2013-05-14 13:52:32 -0700802static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
803 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100804{
Shaohua Li297e3d82017-03-27 10:51:37 -0700805 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100806}
807
Tejun Heo0f3457f2013-05-14 13:52:32 -0700808static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
809 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400810{
Shaohua Li297e3d82017-03-27 10:51:37 -0700811 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Tejun Heofda6f272013-05-14 13:52:36 -0700812 throtl_log(&tg->service_queue,
813 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
814 rw == READ ? 'R' : 'W', tg->slice_start[rw],
815 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400816}
817
818/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700819static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400820{
821 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200822 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400823
Chengguang Xu0b6bad72018-05-29 18:32:44 +0800824 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400825}
826
827/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700828static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400829{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200830 unsigned long nr_slices, time_elapsed, io_trim;
831 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400832
833 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
834
835 /*
836 * If bps are unlimited (-1), then time slice don't get
837 * renewed. Don't try to trim the slice if slice is used. A new
838 * slice will start when appropriate.
839 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700840 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400841 return;
842
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100843 /*
844 * A bio has been dispatched. Also adjust slice_end. It might happen
845 * that initially cgroup limit was very low resulting in high
846 * slice_end, but later limit was bumped up and bio was dispached
847 * sooner, then we need to reduce slice_end. A high bogus slice_end
848 * is bad because it does not allow new slice to start.
849 */
850
Shaohua Li297e3d82017-03-27 10:51:37 -0700851 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100852
Vivek Goyale43473b2010-09-15 17:06:35 -0400853 time_elapsed = jiffies - tg->slice_start[rw];
854
Shaohua Li297e3d82017-03-27 10:51:37 -0700855 nr_slices = time_elapsed / tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400856
857 if (!nr_slices)
858 return;
Shaohua Li297e3d82017-03-27 10:51:37 -0700859 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200860 do_div(tmp, HZ);
861 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400862
Shaohua Li297e3d82017-03-27 10:51:37 -0700863 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
864 HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400865
Vivek Goyal8e89d132010-09-15 17:06:37 -0400866 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400867 return;
868
869 if (tg->bytes_disp[rw] >= bytes_trim)
870 tg->bytes_disp[rw] -= bytes_trim;
871 else
872 tg->bytes_disp[rw] = 0;
873
Vivek Goyal8e89d132010-09-15 17:06:37 -0400874 if (tg->io_disp[rw] >= io_trim)
875 tg->io_disp[rw] -= io_trim;
876 else
877 tg->io_disp[rw] = 0;
878
Shaohua Li297e3d82017-03-27 10:51:37 -0700879 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400880
Tejun Heofda6f272013-05-14 13:52:36 -0700881 throtl_log(&tg->service_queue,
882 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
883 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
884 tg->slice_start[rw], tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400885}
886
Tejun Heo0f3457f2013-05-14 13:52:32 -0700887static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
888 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400889{
890 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400891 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400892 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200893 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400894
Vivek Goyal8e89d132010-09-15 17:06:37 -0400895 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400896
Vivek Goyal8e89d132010-09-15 17:06:37 -0400897 /* Slice has just started. Consider one slice interval */
898 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700899 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400900
Shaohua Li297e3d82017-03-27 10:51:37 -0700901 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400902
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200903 /*
904 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
905 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
906 * will allow dispatch after 1 second and after that slice should
907 * have been trimmed.
908 */
909
Shaohua Li9f626e32017-03-27 10:51:30 -0700910 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200911 do_div(tmp, HZ);
912
913 if (tmp > UINT_MAX)
914 io_allowed = UINT_MAX;
915 else
916 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400917
918 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400919 if (wait)
920 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200921 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400922 }
923
Vivek Goyal8e89d132010-09-15 17:06:37 -0400924 /* Calc approx time to dispatch */
Liu Bo991f61f2018-08-10 01:47:02 +0800925 jiffy_wait = jiffy_elapsed_rnd - jiffy_elapsed;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400926
927 if (wait)
928 *wait = jiffy_wait;
Chengguang Xu0b6bad72018-05-29 18:32:44 +0800929 return false;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400930}
931
Tejun Heo0f3457f2013-05-14 13:52:32 -0700932static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
933 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400934{
935 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200936 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400937 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700938 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -0400939
940 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
941
942 /* Slice has just started. Consider one slice interval */
943 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700944 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400945
Shaohua Li297e3d82017-03-27 10:51:37 -0700946 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyale43473b2010-09-15 17:06:35 -0400947
Shaohua Li9f626e32017-03-27 10:51:30 -0700948 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyal5e901a22010-10-01 21:16:38 +0200949 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200950 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400951
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700952 if (tg->bytes_disp[rw] + bio_size <= bytes_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400953 if (wait)
954 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200955 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400956 }
957
958 /* Calc approx time to dispatch */
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700959 extra_bytes = tg->bytes_disp[rw] + bio_size - bytes_allowed;
Shaohua Li9f626e32017-03-27 10:51:30 -0700960 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
Vivek Goyale43473b2010-09-15 17:06:35 -0400961
962 if (!jiffy_wait)
963 jiffy_wait = 1;
964
965 /*
966 * This wait time is without taking into consideration the rounding
967 * up we did. Add that time also.
968 */
969 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400970 if (wait)
971 *wait = jiffy_wait;
Chengguang Xu0b6bad72018-05-29 18:32:44 +0800972 return false;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400973}
Vivek Goyale43473b2010-09-15 17:06:35 -0400974
Vivek Goyal8e89d132010-09-15 17:06:37 -0400975/*
976 * Returns whether one can dispatch a bio or not. Also returns approx number
977 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
978 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700979static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
980 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400981{
982 bool rw = bio_data_dir(bio);
983 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
984
985 /*
986 * Currently whole state machine of group depends on first bio
987 * queued in the group bio list. So one should not be calling
988 * this function with a different bio if there are other bios
989 * queued.
990 */
Tejun Heo73f0d492013-05-14 13:52:35 -0700991 BUG_ON(tg->service_queue.nr_queued[rw] &&
Tejun Heoc5cc2072013-05-14 13:52:38 -0700992 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
Vivek Goyal8e89d132010-09-15 17:06:37 -0400993
994 /* If tg->bps = -1, then BW is unlimited */
Shaohua Li9f626e32017-03-27 10:51:30 -0700995 if (tg_bps_limit(tg, rw) == U64_MAX &&
996 tg_iops_limit(tg, rw) == UINT_MAX) {
Vivek Goyal8e89d132010-09-15 17:06:37 -0400997 if (wait)
998 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200999 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001000 }
1001
1002 /*
1003 * If previous slice expired, start a new one otherwise renew/extend
1004 * existing slice to make sure it is at least throtl_slice interval
Vivek Goyal164c80e2016-09-19 15:12:41 -06001005 * long since now. New slice is started only for empty throttle group.
1006 * If there is queued bio, that means there should be an active
1007 * slice and it should be extended instead.
Vivek Goyal8e89d132010-09-15 17:06:37 -04001008 */
Vivek Goyal164c80e2016-09-19 15:12:41 -06001009 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001010 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001011 else {
Shaohua Li297e3d82017-03-27 10:51:37 -07001012 if (time_before(tg->slice_end[rw],
1013 jiffies + tg->td->throtl_slice))
1014 throtl_extend_slice(tg, rw,
1015 jiffies + tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001016 }
1017
Tejun Heo0f3457f2013-05-14 13:52:32 -07001018 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
1019 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001020 if (wait)
1021 *wait = 0;
Chengguang Xu0b6bad72018-05-29 18:32:44 +08001022 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001023 }
1024
1025 max_wait = max(bps_wait, iops_wait);
1026
1027 if (wait)
1028 *wait = max_wait;
1029
1030 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001031 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001032
Chengguang Xu0b6bad72018-05-29 18:32:44 +08001033 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001034}
1035
1036static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1037{
1038 bool rw = bio_data_dir(bio);
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001039 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001040
1041 /* Charge the bio to the group */
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001042 tg->bytes_disp[rw] += bio_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001043 tg->io_disp[rw]++;
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001044 tg->last_bytes_disp[rw] += bio_size;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001045 tg->last_io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001046
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001047 /*
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001048 * BIO_THROTTLED is used to prevent the same bio to be throttled
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001049 * more than once as a throttled bio will go through blk-throtl the
1050 * second time when it eventually gets issued. Set it when a bio
1051 * is being charged to a tg.
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001052 */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001053 if (!bio_flagged(bio, BIO_THROTTLED))
1054 bio_set_flag(bio, BIO_THROTTLED);
Vivek Goyale43473b2010-09-15 17:06:35 -04001055}
1056
Tejun Heoc5cc2072013-05-14 13:52:38 -07001057/**
1058 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1059 * @bio: bio to add
1060 * @qn: qnode to use
1061 * @tg: the target throtl_grp
1062 *
1063 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1064 * tg->qnode_on_self[] is used.
1065 */
1066static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1067 struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001068{
Tejun Heo73f0d492013-05-14 13:52:35 -07001069 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001070 bool rw = bio_data_dir(bio);
1071
Tejun Heoc5cc2072013-05-14 13:52:38 -07001072 if (!qn)
1073 qn = &tg->qnode_on_self[rw];
1074
Tejun Heo0e9f4162013-05-14 13:52:35 -07001075 /*
1076 * If @tg doesn't currently have any bios queued in the same
1077 * direction, queueing @bio can change when @tg should be
1078 * dispatched. Mark that @tg was empty. This is automatically
1079 * cleaered on the next tg_update_disptime().
1080 */
1081 if (!sq->nr_queued[rw])
1082 tg->flags |= THROTL_TG_WAS_EMPTY;
1083
Tejun Heoc5cc2072013-05-14 13:52:38 -07001084 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1085
Tejun Heo73f0d492013-05-14 13:52:35 -07001086 sq->nr_queued[rw]++;
Tejun Heo77216b02013-05-14 13:52:36 -07001087 throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001088}
1089
Tejun Heo77216b02013-05-14 13:52:36 -07001090static void tg_update_disptime(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001091{
Tejun Heo73f0d492013-05-14 13:52:35 -07001092 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001093 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1094 struct bio *bio;
1095
Markus Elfringd609af32017-01-21 22:15:33 +01001096 bio = throtl_peek_queued(&sq->queued[READ]);
1097 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001098 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001099
Markus Elfringd609af32017-01-21 22:15:33 +01001100 bio = throtl_peek_queued(&sq->queued[WRITE]);
1101 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001102 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001103
1104 min_wait = min(read_wait, write_wait);
1105 disptime = jiffies + min_wait;
1106
Vivek Goyale43473b2010-09-15 17:06:35 -04001107 /* Update dispatch time */
Tejun Heo77216b02013-05-14 13:52:36 -07001108 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001109 tg->disptime = disptime;
Tejun Heo77216b02013-05-14 13:52:36 -07001110 throtl_enqueue_tg(tg);
Tejun Heo0e9f4162013-05-14 13:52:35 -07001111
1112 /* see throtl_add_bio_tg() */
1113 tg->flags &= ~THROTL_TG_WAS_EMPTY;
Vivek Goyale43473b2010-09-15 17:06:35 -04001114}
1115
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001116static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1117 struct throtl_grp *parent_tg, bool rw)
1118{
1119 if (throtl_slice_used(parent_tg, rw)) {
1120 throtl_start_new_slice_with_credit(parent_tg, rw,
1121 child_tg->slice_start[rw]);
1122 }
1123
1124}
1125
Tejun Heo77216b02013-05-14 13:52:36 -07001126static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -04001127{
Tejun Heo73f0d492013-05-14 13:52:35 -07001128 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001129 struct throtl_service_queue *parent_sq = sq->parent_sq;
1130 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001131 struct throtl_grp *tg_to_put = NULL;
Vivek Goyale43473b2010-09-15 17:06:35 -04001132 struct bio *bio;
1133
Tejun Heoc5cc2072013-05-14 13:52:38 -07001134 /*
1135 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1136 * from @tg may put its reference and @parent_sq might end up
1137 * getting released prematurely. Remember the tg to put and put it
1138 * after @bio is transferred to @parent_sq.
1139 */
1140 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
Tejun Heo73f0d492013-05-14 13:52:35 -07001141 sq->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -04001142
1143 throtl_charge_bio(tg, bio);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001144
1145 /*
1146 * If our parent is another tg, we just need to transfer @bio to
1147 * the parent using throtl_add_bio_tg(). If our parent is
1148 * @td->service_queue, @bio is ready to be issued. Put it on its
1149 * bio_lists[] and decrease total number queued. The caller is
1150 * responsible for issuing these bios.
1151 */
1152 if (parent_tg) {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001153 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001154 start_parent_slice_with_credit(tg, parent_tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001155 } else {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001156 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1157 &parent_sq->queued[rw]);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001158 BUG_ON(tg->td->nr_queued[rw] <= 0);
1159 tg->td->nr_queued[rw]--;
1160 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001161
Tejun Heo0f3457f2013-05-14 13:52:32 -07001162 throtl_trim_slice(tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001163
Tejun Heoc5cc2072013-05-14 13:52:38 -07001164 if (tg_to_put)
1165 blkg_put(tg_to_blkg(tg_to_put));
Vivek Goyale43473b2010-09-15 17:06:35 -04001166}
1167
Tejun Heo77216b02013-05-14 13:52:36 -07001168static int throtl_dispatch_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001169{
Tejun Heo73f0d492013-05-14 13:52:35 -07001170 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001171 unsigned int nr_reads = 0, nr_writes = 0;
1172 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +01001173 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -04001174 struct bio *bio;
1175
1176 /* Try to dispatch 75% READS and 25% WRITES */
1177
Tejun Heoc5cc2072013-05-14 13:52:38 -07001178 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001179 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001180
Tejun Heo77216b02013-05-14 13:52:36 -07001181 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001182 nr_reads++;
1183
1184 if (nr_reads >= max_nr_reads)
1185 break;
1186 }
1187
Tejun Heoc5cc2072013-05-14 13:52:38 -07001188 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001189 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001190
Tejun Heo77216b02013-05-14 13:52:36 -07001191 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001192 nr_writes++;
1193
1194 if (nr_writes >= max_nr_writes)
1195 break;
1196 }
1197
1198 return nr_reads + nr_writes;
1199}
1200
Tejun Heo651930b2013-05-14 13:52:35 -07001201static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -04001202{
1203 unsigned int nr_disp = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001204
1205 while (1) {
Tejun Heo73f0d492013-05-14 13:52:35 -07001206 struct throtl_grp *tg = throtl_rb_first(parent_sq);
Liu Bo2ab74cd2018-05-29 16:29:12 +08001207 struct throtl_service_queue *sq;
Vivek Goyale43473b2010-09-15 17:06:35 -04001208
1209 if (!tg)
1210 break;
1211
1212 if (time_before(jiffies, tg->disptime))
1213 break;
1214
Tejun Heo77216b02013-05-14 13:52:36 -07001215 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001216
Tejun Heo77216b02013-05-14 13:52:36 -07001217 nr_disp += throtl_dispatch_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001218
Liu Bo2ab74cd2018-05-29 16:29:12 +08001219 sq = &tg->service_queue;
Tejun Heo73f0d492013-05-14 13:52:35 -07001220 if (sq->nr_queued[0] || sq->nr_queued[1])
Tejun Heo77216b02013-05-14 13:52:36 -07001221 tg_update_disptime(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001222
1223 if (nr_disp >= throtl_quantum)
1224 break;
1225 }
1226
1227 return nr_disp;
1228}
1229
Shaohua Lic79892c2017-03-27 10:51:34 -07001230static bool throtl_can_upgrade(struct throtl_data *td,
1231 struct throtl_grp *this_tg);
Tejun Heo6e1a5702013-05-14 13:52:37 -07001232/**
1233 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1234 * @arg: the throtl_service_queue being serviced
1235 *
1236 * This timer is armed when a child throtl_grp with active bio's become
1237 * pending and queued on the service_queue's pending_tree and expires when
1238 * the first child throtl_grp should be dispatched. This function
Tejun Heo2e48a532013-05-14 13:52:38 -07001239 * dispatches bio's from the children throtl_grps to the parent
1240 * service_queue.
1241 *
1242 * If the parent's parent is another throtl_grp, dispatching is propagated
1243 * by either arming its pending_timer or repeating dispatch directly. If
1244 * the top-level service_tree is reached, throtl_data->dispatch_work is
1245 * kicked so that the ready bio's are issued.
Tejun Heo6e1a5702013-05-14 13:52:37 -07001246 */
Kees Cooke99e88a2017-10-16 14:43:17 -07001247static void throtl_pending_timer_fn(struct timer_list *t)
Tejun Heo69df0ab2013-05-14 13:52:36 -07001248{
Kees Cooke99e88a2017-10-16 14:43:17 -07001249 struct throtl_service_queue *sq = from_timer(sq, t, pending_timer);
Tejun Heo2e48a532013-05-14 13:52:38 -07001250 struct throtl_grp *tg = sq_to_tg(sq);
Tejun Heo69df0ab2013-05-14 13:52:36 -07001251 struct throtl_data *td = sq_to_td(sq);
Tejun Heocb761992013-05-14 13:52:31 -07001252 struct request_queue *q = td->queue;
Tejun Heo2e48a532013-05-14 13:52:38 -07001253 struct throtl_service_queue *parent_sq;
1254 bool dispatched;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001255 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001256
1257 spin_lock_irq(q->queue_lock);
Shaohua Lic79892c2017-03-27 10:51:34 -07001258 if (throtl_can_upgrade(td, NULL))
1259 throtl_upgrade_state(td);
1260
Tejun Heo2e48a532013-05-14 13:52:38 -07001261again:
1262 parent_sq = sq->parent_sq;
1263 dispatched = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001264
Tejun Heo7f52f982013-05-14 13:52:37 -07001265 while (true) {
1266 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo2e48a532013-05-14 13:52:38 -07001267 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1268 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04001269
Tejun Heo7f52f982013-05-14 13:52:37 -07001270 ret = throtl_select_dispatch(sq);
1271 if (ret) {
Tejun Heo7f52f982013-05-14 13:52:37 -07001272 throtl_log(sq, "bios disp=%u", ret);
1273 dispatched = true;
Tejun Heo651930b2013-05-14 13:52:35 -07001274 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001275
Tejun Heo7f52f982013-05-14 13:52:37 -07001276 if (throtl_schedule_next_dispatch(sq, false))
1277 break;
1278
1279 /* this dispatch windows is still open, relax and repeat */
1280 spin_unlock_irq(q->queue_lock);
1281 cpu_relax();
1282 spin_lock_irq(q->queue_lock);
1283 }
Tejun Heo6a525602013-05-14 13:52:32 -07001284
Tejun Heo2e48a532013-05-14 13:52:38 -07001285 if (!dispatched)
1286 goto out_unlock;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001287
Tejun Heo2e48a532013-05-14 13:52:38 -07001288 if (parent_sq) {
1289 /* @parent_sq is another throl_grp, propagate dispatch */
1290 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1291 tg_update_disptime(tg);
1292 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1293 /* window is already open, repeat dispatching */
1294 sq = parent_sq;
1295 tg = sq_to_tg(sq);
1296 goto again;
1297 }
1298 }
1299 } else {
1300 /* reached the top-level, queue issueing */
1301 queue_work(kthrotld_workqueue, &td->dispatch_work);
1302 }
1303out_unlock:
Tejun Heo6e1a5702013-05-14 13:52:37 -07001304 spin_unlock_irq(q->queue_lock);
1305}
1306
1307/**
1308 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1309 * @work: work item being executed
1310 *
1311 * This function is queued for execution when bio's reach the bio_lists[]
1312 * of throtl_data->service_queue. Those bio's are ready and issued by this
1313 * function.
1314 */
Fabian Frederick8876e1402014-04-17 21:41:16 +02001315static void blk_throtl_dispatch_work_fn(struct work_struct *work)
Tejun Heo6e1a5702013-05-14 13:52:37 -07001316{
1317 struct throtl_data *td = container_of(work, struct throtl_data,
1318 dispatch_work);
1319 struct throtl_service_queue *td_sq = &td->service_queue;
1320 struct request_queue *q = td->queue;
1321 struct bio_list bio_list_on_stack;
1322 struct bio *bio;
1323 struct blk_plug plug;
1324 int rw;
1325
1326 bio_list_init(&bio_list_on_stack);
1327
1328 spin_lock_irq(q->queue_lock);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001329 for (rw = READ; rw <= WRITE; rw++)
1330 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1331 bio_list_add(&bio_list_on_stack, bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001332 spin_unlock_irq(q->queue_lock);
1333
Tejun Heo6e1a5702013-05-14 13:52:37 -07001334 if (!bio_list_empty(&bio_list_on_stack)) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001335 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001336 while((bio = bio_list_pop(&bio_list_on_stack)))
1337 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001338 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001339 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001340}
1341
Tejun Heof95a04a2012-04-16 13:57:26 -07001342static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1343 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001344{
Tejun Heof95a04a2012-04-16 13:57:26 -07001345 struct throtl_grp *tg = pd_to_tg(pd);
1346 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001347
Shaohua Li2ab54922017-03-27 10:51:29 -07001348 if (v == U64_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001349 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001350 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001351}
1352
Tejun Heof95a04a2012-04-16 13:57:26 -07001353static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1354 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001355{
Tejun Heof95a04a2012-04-16 13:57:26 -07001356 struct throtl_grp *tg = pd_to_tg(pd);
1357 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001358
Shaohua Li2ab54922017-03-27 10:51:29 -07001359 if (v == UINT_MAX)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001360 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001361 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001362}
1363
Tejun Heo2da8ca82013-12-05 12:28:04 -05001364static int tg_print_conf_u64(struct seq_file *sf, void *v)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001365{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001366 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1367 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001368 return 0;
1369}
1370
Tejun Heo2da8ca82013-12-05 12:28:04 -05001371static int tg_print_conf_uint(struct seq_file *sf, void *v)
Vivek Goyale43473b2010-09-15 17:06:35 -04001372{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001373 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1374 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001375 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001376}
1377
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001378static void tg_conf_updated(struct throtl_grp *tg, bool global)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001379{
Tejun Heo69948b02015-08-18 14:55:32 -07001380 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo492eb212013-08-08 20:11:25 -04001381 struct cgroup_subsys_state *pos_css;
Tejun Heo69948b02015-08-18 14:55:32 -07001382 struct blkcg_gq *blkg;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001383
Tejun Heofda6f272013-05-14 13:52:36 -07001384 throtl_log(&tg->service_queue,
1385 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Shaohua Li9f626e32017-03-27 10:51:30 -07001386 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1387 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
Tejun Heo632b4492013-05-14 13:52:31 -07001388
1389 /*
Tejun Heo693e7512013-05-14 13:52:38 -07001390 * Update has_rules[] flags for the updated tg's subtree. A tg is
1391 * considered to have rules if either the tg itself or any of its
1392 * ancestors has rules. This identifies groups without any
1393 * restrictions in the whole hierarchy and allows them to bypass
1394 * blk-throttle.
1395 */
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001396 blkg_for_each_descendant_pre(blkg, pos_css,
1397 global ? tg->td->queue->root_blkg : tg_to_blkg(tg)) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001398 struct throtl_grp *this_tg = blkg_to_tg(blkg);
1399 struct throtl_grp *parent_tg;
1400
1401 tg_update_has_rules(this_tg);
1402 /* ignore root/second level */
1403 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) || !blkg->parent ||
1404 !blkg->parent->parent)
1405 continue;
1406 parent_tg = blkg_to_tg(blkg->parent);
1407 /*
1408 * make sure all children has lower idle time threshold and
1409 * higher latency target
1410 */
1411 this_tg->idletime_threshold = min(this_tg->idletime_threshold,
1412 parent_tg->idletime_threshold);
1413 this_tg->latency_target = max(this_tg->latency_target,
1414 parent_tg->latency_target);
1415 }
Tejun Heo693e7512013-05-14 13:52:38 -07001416
1417 /*
Tejun Heo632b4492013-05-14 13:52:31 -07001418 * We're already holding queue_lock and know @tg is valid. Let's
1419 * apply the new config directly.
1420 *
1421 * Restart the slices for both READ and WRITES. It might happen
1422 * that a group's limit are dropped suddenly and we don't want to
1423 * account recently dispatched IO with new low rate.
1424 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001425 throtl_start_new_slice(tg, 0);
1426 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -07001427
Tejun Heo5b2c16a2013-05-14 13:52:32 -07001428 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo77216b02013-05-14 13:52:36 -07001429 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07001430 throtl_schedule_next_dispatch(sq->parent_sq, true);
Tejun Heo632b4492013-05-14 13:52:31 -07001431 }
Tejun Heo69948b02015-08-18 14:55:32 -07001432}
Tejun Heo60c2bc22012-04-01 14:38:43 -07001433
Tejun Heo69948b02015-08-18 14:55:32 -07001434static ssize_t tg_set_conf(struct kernfs_open_file *of,
1435 char *buf, size_t nbytes, loff_t off, bool is_u64)
1436{
1437 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1438 struct blkg_conf_ctx ctx;
1439 struct throtl_grp *tg;
1440 int ret;
1441 u64 v;
1442
1443 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1444 if (ret)
1445 return ret;
1446
1447 ret = -EINVAL;
1448 if (sscanf(ctx.body, "%llu", &v) != 1)
1449 goto out_finish;
1450 if (!v)
Shaohua Li2ab54922017-03-27 10:51:29 -07001451 v = U64_MAX;
Tejun Heo69948b02015-08-18 14:55:32 -07001452
1453 tg = blkg_to_tg(ctx.blkg);
1454
1455 if (is_u64)
1456 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1457 else
1458 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
1459
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001460 tg_conf_updated(tg, false);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001461 ret = 0;
1462out_finish:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001463 blkg_conf_finish(&ctx);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001464 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001465}
1466
Tejun Heo451af502014-05-13 12:16:21 -04001467static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1468 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001469{
Tejun Heo451af502014-05-13 12:16:21 -04001470 return tg_set_conf(of, buf, nbytes, off, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001471}
1472
Tejun Heo451af502014-05-13 12:16:21 -04001473static ssize_t tg_set_conf_uint(struct kernfs_open_file *of,
1474 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001475{
Tejun Heo451af502014-05-13 12:16:21 -04001476 return tg_set_conf(of, buf, nbytes, off, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001477}
1478
Tejun Heo880f50e2015-08-18 14:55:30 -07001479static struct cftype throtl_legacy_files[] = {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001480 {
1481 .name = "throttle.read_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001482 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001483 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001484 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001485 },
1486 {
1487 .name = "throttle.write_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001488 .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001489 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001490 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001491 },
1492 {
1493 .name = "throttle.read_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001494 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001495 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001496 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001497 },
1498 {
1499 .name = "throttle.write_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001500 .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001501 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001502 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001503 },
1504 {
1505 .name = "throttle.io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001506 .private = (unsigned long)&blkcg_policy_throtl,
1507 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001508 },
1509 {
weiping zhang17534c62017-12-11 22:56:25 +08001510 .name = "throttle.io_service_bytes_recursive",
1511 .private = (unsigned long)&blkcg_policy_throtl,
1512 .seq_show = blkg_print_stat_bytes_recursive,
1513 },
1514 {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001515 .name = "throttle.io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001516 .private = (unsigned long)&blkcg_policy_throtl,
1517 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001518 },
weiping zhang17534c62017-12-11 22:56:25 +08001519 {
1520 .name = "throttle.io_serviced_recursive",
1521 .private = (unsigned long)&blkcg_policy_throtl,
1522 .seq_show = blkg_print_stat_ios_recursive,
1523 },
Tejun Heo60c2bc22012-04-01 14:38:43 -07001524 { } /* terminate */
1525};
1526
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001527static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001528 int off)
1529{
1530 struct throtl_grp *tg = pd_to_tg(pd);
1531 const char *dname = blkg_dev_name(pd->blkg);
1532 char bufs[4][21] = { "max", "max", "max", "max" };
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001533 u64 bps_dft;
1534 unsigned int iops_dft;
Shaohua Liada75b62017-03-27 10:51:42 -07001535 char idle_time[26] = "";
Shaohua Liec809912017-03-27 10:51:44 -07001536 char latency_time[26] = "";
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001537
1538 if (!dname)
1539 return 0;
Shaohua Li9f626e32017-03-27 10:51:30 -07001540
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001541 if (off == LIMIT_LOW) {
1542 bps_dft = 0;
1543 iops_dft = 0;
1544 } else {
1545 bps_dft = U64_MAX;
1546 iops_dft = UINT_MAX;
1547 }
1548
1549 if (tg->bps_conf[READ][off] == bps_dft &&
1550 tg->bps_conf[WRITE][off] == bps_dft &&
1551 tg->iops_conf[READ][off] == iops_dft &&
Shaohua Liada75b62017-03-27 10:51:42 -07001552 tg->iops_conf[WRITE][off] == iops_dft &&
Shaohua Liec809912017-03-27 10:51:44 -07001553 (off != LIMIT_LOW ||
Shaohua Lib4f428e2017-05-17 13:07:27 -07001554 (tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD &&
Shaohua Li5b81fc32017-05-17 13:07:24 -07001555 tg->latency_target_conf == DFL_LATENCY_TARGET)))
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001556 return 0;
1557
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001558 if (tg->bps_conf[READ][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001559 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001560 tg->bps_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001561 if (tg->bps_conf[WRITE][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001562 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001563 tg->bps_conf[WRITE][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001564 if (tg->iops_conf[READ][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001565 snprintf(bufs[2], sizeof(bufs[2]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001566 tg->iops_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001567 if (tg->iops_conf[WRITE][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001568 snprintf(bufs[3], sizeof(bufs[3]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001569 tg->iops_conf[WRITE][off]);
Shaohua Liada75b62017-03-27 10:51:42 -07001570 if (off == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001571 if (tg->idletime_threshold_conf == ULONG_MAX)
Shaohua Liada75b62017-03-27 10:51:42 -07001572 strcpy(idle_time, " idle=max");
1573 else
1574 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
Shaohua Li5b81fc32017-05-17 13:07:24 -07001575 tg->idletime_threshold_conf);
Shaohua Liec809912017-03-27 10:51:44 -07001576
Shaohua Li5b81fc32017-05-17 13:07:24 -07001577 if (tg->latency_target_conf == ULONG_MAX)
Shaohua Liec809912017-03-27 10:51:44 -07001578 strcpy(latency_time, " latency=max");
1579 else
1580 snprintf(latency_time, sizeof(latency_time),
Shaohua Li5b81fc32017-05-17 13:07:24 -07001581 " latency=%lu", tg->latency_target_conf);
Shaohua Liada75b62017-03-27 10:51:42 -07001582 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001583
Shaohua Liec809912017-03-27 10:51:44 -07001584 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1585 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1586 latency_time);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001587 return 0;
1588}
1589
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001590static int tg_print_limit(struct seq_file *sf, void *v)
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001591{
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001592 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001593 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1594 return 0;
1595}
1596
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001597static ssize_t tg_set_limit(struct kernfs_open_file *of,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001598 char *buf, size_t nbytes, loff_t off)
1599{
1600 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1601 struct blkg_conf_ctx ctx;
1602 struct throtl_grp *tg;
1603 u64 v[4];
Shaohua Liada75b62017-03-27 10:51:42 -07001604 unsigned long idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001605 unsigned long latency_time;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001606 int ret;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001607 int index = of_cft(of)->private;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001608
1609 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1610 if (ret)
1611 return ret;
1612
1613 tg = blkg_to_tg(ctx.blkg);
1614
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001615 v[0] = tg->bps_conf[READ][index];
1616 v[1] = tg->bps_conf[WRITE][index];
1617 v[2] = tg->iops_conf[READ][index];
1618 v[3] = tg->iops_conf[WRITE][index];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001619
Shaohua Li5b81fc32017-05-17 13:07:24 -07001620 idle_time = tg->idletime_threshold_conf;
1621 latency_time = tg->latency_target_conf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001622 while (true) {
1623 char tok[27]; /* wiops=18446744073709551616 */
1624 char *p;
Shaohua Li2ab54922017-03-27 10:51:29 -07001625 u64 val = U64_MAX;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001626 int len;
1627
1628 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1629 break;
1630 if (tok[0] == '\0')
1631 break;
1632 ctx.body += len;
1633
1634 ret = -EINVAL;
1635 p = tok;
1636 strsep(&p, "=");
1637 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1638 goto out_finish;
1639
1640 ret = -ERANGE;
1641 if (!val)
1642 goto out_finish;
1643
1644 ret = -EINVAL;
1645 if (!strcmp(tok, "rbps"))
1646 v[0] = val;
1647 else if (!strcmp(tok, "wbps"))
1648 v[1] = val;
1649 else if (!strcmp(tok, "riops"))
1650 v[2] = min_t(u64, val, UINT_MAX);
1651 else if (!strcmp(tok, "wiops"))
1652 v[3] = min_t(u64, val, UINT_MAX);
Shaohua Liada75b62017-03-27 10:51:42 -07001653 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1654 idle_time = val;
Shaohua Liec809912017-03-27 10:51:44 -07001655 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1656 latency_time = val;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001657 else
1658 goto out_finish;
1659 }
1660
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001661 tg->bps_conf[READ][index] = v[0];
1662 tg->bps_conf[WRITE][index] = v[1];
1663 tg->iops_conf[READ][index] = v[2];
1664 tg->iops_conf[WRITE][index] = v[3];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001665
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001666 if (index == LIMIT_MAX) {
1667 tg->bps[READ][index] = v[0];
1668 tg->bps[WRITE][index] = v[1];
1669 tg->iops[READ][index] = v[2];
1670 tg->iops[WRITE][index] = v[3];
1671 }
1672 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1673 tg->bps_conf[READ][LIMIT_MAX]);
1674 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1675 tg->bps_conf[WRITE][LIMIT_MAX]);
1676 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1677 tg->iops_conf[READ][LIMIT_MAX]);
1678 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1679 tg->iops_conf[WRITE][LIMIT_MAX]);
Shaohua Lib4f428e2017-05-17 13:07:27 -07001680 tg->idletime_threshold_conf = idle_time;
1681 tg->latency_target_conf = latency_time;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001682
Shaohua Lib4f428e2017-05-17 13:07:27 -07001683 /* force user to configure all settings for low limit */
1684 if (!(tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW] ||
1685 tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) ||
1686 tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD ||
1687 tg->latency_target_conf == DFL_LATENCY_TARGET) {
1688 tg->bps[READ][LIMIT_LOW] = 0;
1689 tg->bps[WRITE][LIMIT_LOW] = 0;
1690 tg->iops[READ][LIMIT_LOW] = 0;
1691 tg->iops[WRITE][LIMIT_LOW] = 0;
1692 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
1693 tg->latency_target = DFL_LATENCY_TARGET;
1694 } else if (index == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001695 tg->idletime_threshold = tg->idletime_threshold_conf;
Shaohua Li5b81fc32017-05-17 13:07:24 -07001696 tg->latency_target = tg->latency_target_conf;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001697 }
Shaohua Lib4f428e2017-05-17 13:07:27 -07001698
1699 blk_throtl_update_limit_valid(tg->td);
1700 if (tg->td->limit_valid[LIMIT_LOW]) {
1701 if (index == LIMIT_LOW)
1702 tg->td->limit_index = LIMIT_LOW;
1703 } else
1704 tg->td->limit_index = LIMIT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001705 tg_conf_updated(tg, index == LIMIT_LOW &&
1706 tg->td->limit_valid[LIMIT_LOW]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001707 ret = 0;
1708out_finish:
1709 blkg_conf_finish(&ctx);
1710 return ret ?: nbytes;
1711}
1712
1713static struct cftype throtl_files[] = {
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001714#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1715 {
1716 .name = "low",
1717 .flags = CFTYPE_NOT_ON_ROOT,
1718 .seq_show = tg_print_limit,
1719 .write = tg_set_limit,
1720 .private = LIMIT_LOW,
1721 },
1722#endif
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001723 {
1724 .name = "max",
1725 .flags = CFTYPE_NOT_ON_ROOT,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001726 .seq_show = tg_print_limit,
1727 .write = tg_set_limit,
1728 .private = LIMIT_MAX,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001729 },
1730 { } /* terminate */
1731};
1732
Vivek Goyalda527772011-03-02 19:05:33 -05001733static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001734{
1735 struct throtl_data *td = q->td;
1736
Tejun Heo69df0ab2013-05-14 13:52:36 -07001737 cancel_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001738}
1739
Tejun Heo3c798392012-04-16 13:57:25 -07001740static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001741 .dfl_cftypes = throtl_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001742 .legacy_cftypes = throtl_legacy_files,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001743
Tejun Heo001bea72015-08-18 14:55:11 -07001744 .pd_alloc_fn = throtl_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001745 .pd_init_fn = throtl_pd_init,
Tejun Heo693e7512013-05-14 13:52:38 -07001746 .pd_online_fn = throtl_pd_online,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001747 .pd_offline_fn = throtl_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07001748 .pd_free_fn = throtl_pd_free,
Vivek Goyale43473b2010-09-15 17:06:35 -04001749};
1750
Shaohua Li3f0abd82017-03-27 10:51:35 -07001751static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1752{
1753 unsigned long rtime = jiffies, wtime = jiffies;
1754
1755 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1756 rtime = tg->last_low_overflow_time[READ];
1757 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1758 wtime = tg->last_low_overflow_time[WRITE];
1759 return min(rtime, wtime);
1760}
1761
1762/* tg should not be an intermediate node */
1763static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1764{
1765 struct throtl_service_queue *parent_sq;
1766 struct throtl_grp *parent = tg;
1767 unsigned long ret = __tg_last_low_overflow_time(tg);
1768
1769 while (true) {
1770 parent_sq = parent->service_queue.parent_sq;
1771 parent = sq_to_tg(parent_sq);
1772 if (!parent)
1773 break;
1774
1775 /*
1776 * The parent doesn't have low limit, it always reaches low
1777 * limit. Its overflow time is useless for children
1778 */
1779 if (!parent->bps[READ][LIMIT_LOW] &&
1780 !parent->iops[READ][LIMIT_LOW] &&
1781 !parent->bps[WRITE][LIMIT_LOW] &&
1782 !parent->iops[WRITE][LIMIT_LOW])
1783 continue;
1784 if (time_after(__tg_last_low_overflow_time(parent), ret))
1785 ret = __tg_last_low_overflow_time(parent);
1786 }
1787 return ret;
1788}
1789
Shaohua Li9e234ee2017-03-27 10:51:41 -07001790static bool throtl_tg_is_idle(struct throtl_grp *tg)
1791{
1792 /*
1793 * cgroup is idle if:
1794 * - single idle is too long, longer than a fixed value (in case user
Shaohua Lib4f428e2017-05-17 13:07:27 -07001795 * configure a too big threshold) or 4 times of idletime threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001796 * - average think time is more than threshold
Shaohua Li53696b82017-03-27 15:19:43 -07001797 * - IO latency is largely below threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001798 */
Shaohua Lib4f428e2017-05-17 13:07:27 -07001799 unsigned long time;
Shaohua Li4cff7292017-05-17 13:07:25 -07001800 bool ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001801
Shaohua Lib4f428e2017-05-17 13:07:27 -07001802 time = min_t(unsigned long, MAX_IDLE_TIME, 4 * tg->idletime_threshold);
1803 ret = tg->latency_target == DFL_LATENCY_TARGET ||
1804 tg->idletime_threshold == DFL_IDLE_THRESHOLD ||
1805 (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1806 tg->avg_idletime > tg->idletime_threshold ||
1807 (tg->latency_target && tg->bio_cnt &&
Shaohua Li53696b82017-03-27 15:19:43 -07001808 tg->bad_bio_cnt * 5 < tg->bio_cnt);
Shaohua Li4cff7292017-05-17 13:07:25 -07001809 throtl_log(&tg->service_queue,
1810 "avg_idle=%ld, idle_threshold=%ld, bad_bio=%d, total_bio=%d, is_idle=%d, scale=%d",
1811 tg->avg_idletime, tg->idletime_threshold, tg->bad_bio_cnt,
1812 tg->bio_cnt, ret, tg->td->scale);
1813 return ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001814}
1815
Shaohua Lic79892c2017-03-27 10:51:34 -07001816static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1817{
1818 struct throtl_service_queue *sq = &tg->service_queue;
1819 bool read_limit, write_limit;
1820
1821 /*
1822 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1823 * reaches), it's ok to upgrade to next limit
1824 */
1825 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1826 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1827 if (!read_limit && !write_limit)
1828 return true;
1829 if (read_limit && sq->nr_queued[READ] &&
1830 (!write_limit || sq->nr_queued[WRITE]))
1831 return true;
1832 if (write_limit && sq->nr_queued[WRITE] &&
1833 (!read_limit || sq->nr_queued[READ]))
1834 return true;
Shaohua Liaec24242017-03-27 10:51:39 -07001835
1836 if (time_after_eq(jiffies,
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001837 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1838 throtl_tg_is_idle(tg))
Shaohua Liaec24242017-03-27 10:51:39 -07001839 return true;
Shaohua Lic79892c2017-03-27 10:51:34 -07001840 return false;
1841}
1842
1843static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1844{
1845 while (true) {
1846 if (throtl_tg_can_upgrade(tg))
1847 return true;
1848 tg = sq_to_tg(tg->service_queue.parent_sq);
1849 if (!tg || !tg_to_blkg(tg)->parent)
1850 return false;
1851 }
1852 return false;
1853}
1854
1855static bool throtl_can_upgrade(struct throtl_data *td,
1856 struct throtl_grp *this_tg)
1857{
1858 struct cgroup_subsys_state *pos_css;
1859 struct blkcg_gq *blkg;
1860
1861 if (td->limit_index != LIMIT_LOW)
1862 return false;
1863
Shaohua Li297e3d82017-03-27 10:51:37 -07001864 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001865 return false;
1866
Shaohua Lic79892c2017-03-27 10:51:34 -07001867 rcu_read_lock();
1868 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1869 struct throtl_grp *tg = blkg_to_tg(blkg);
1870
1871 if (tg == this_tg)
1872 continue;
1873 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1874 continue;
1875 if (!throtl_hierarchy_can_upgrade(tg)) {
1876 rcu_read_unlock();
1877 return false;
1878 }
1879 }
1880 rcu_read_unlock();
1881 return true;
1882}
1883
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001884static void throtl_upgrade_check(struct throtl_grp *tg)
1885{
1886 unsigned long now = jiffies;
1887
1888 if (tg->td->limit_index != LIMIT_LOW)
1889 return;
1890
1891 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1892 return;
1893
1894 tg->last_check_time = now;
1895
1896 if (!time_after_eq(now,
1897 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1898 return;
1899
1900 if (throtl_can_upgrade(tg->td, NULL))
1901 throtl_upgrade_state(tg->td);
1902}
1903
Shaohua Lic79892c2017-03-27 10:51:34 -07001904static void throtl_upgrade_state(struct throtl_data *td)
1905{
1906 struct cgroup_subsys_state *pos_css;
1907 struct blkcg_gq *blkg;
1908
Shaohua Li4cff7292017-05-17 13:07:25 -07001909 throtl_log(&td->service_queue, "upgrade to max");
Shaohua Lic79892c2017-03-27 10:51:34 -07001910 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001911 td->low_upgrade_time = jiffies;
Shaohua Li7394e312017-03-27 10:51:40 -07001912 td->scale = 0;
Shaohua Lic79892c2017-03-27 10:51:34 -07001913 rcu_read_lock();
1914 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1915 struct throtl_grp *tg = blkg_to_tg(blkg);
1916 struct throtl_service_queue *sq = &tg->service_queue;
1917
1918 tg->disptime = jiffies - 1;
1919 throtl_select_dispatch(sq);
Joseph Qi4f02fb72017-09-30 14:38:49 +08001920 throtl_schedule_next_dispatch(sq, true);
Shaohua Lic79892c2017-03-27 10:51:34 -07001921 }
1922 rcu_read_unlock();
1923 throtl_select_dispatch(&td->service_queue);
Joseph Qi4f02fb72017-09-30 14:38:49 +08001924 throtl_schedule_next_dispatch(&td->service_queue, true);
Shaohua Lic79892c2017-03-27 10:51:34 -07001925 queue_work(kthrotld_workqueue, &td->dispatch_work);
1926}
1927
Shaohua Li3f0abd82017-03-27 10:51:35 -07001928static void throtl_downgrade_state(struct throtl_data *td, int new)
1929{
Shaohua Li7394e312017-03-27 10:51:40 -07001930 td->scale /= 2;
1931
Shaohua Li4cff7292017-05-17 13:07:25 -07001932 throtl_log(&td->service_queue, "downgrade, scale %d", td->scale);
Shaohua Li7394e312017-03-27 10:51:40 -07001933 if (td->scale) {
1934 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1935 return;
1936 }
1937
Shaohua Li3f0abd82017-03-27 10:51:35 -07001938 td->limit_index = new;
1939 td->low_downgrade_time = jiffies;
1940}
1941
1942static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1943{
1944 struct throtl_data *td = tg->td;
1945 unsigned long now = jiffies;
1946
1947 /*
1948 * If cgroup is below low limit, consider downgrade and throttle other
1949 * cgroups
1950 */
Shaohua Li297e3d82017-03-27 10:51:37 -07001951 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1952 time_after_eq(now, tg_last_low_overflow_time(tg) +
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001953 td->throtl_slice) &&
1954 (!throtl_tg_is_idle(tg) ||
1955 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001956 return true;
1957 return false;
1958}
1959
1960static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1961{
1962 while (true) {
1963 if (!throtl_tg_can_downgrade(tg))
1964 return false;
1965 tg = sq_to_tg(tg->service_queue.parent_sq);
1966 if (!tg || !tg_to_blkg(tg)->parent)
1967 break;
1968 }
1969 return true;
1970}
1971
1972static void throtl_downgrade_check(struct throtl_grp *tg)
1973{
1974 uint64_t bps;
1975 unsigned int iops;
1976 unsigned long elapsed_time;
1977 unsigned long now = jiffies;
1978
1979 if (tg->td->limit_index != LIMIT_MAX ||
1980 !tg->td->limit_valid[LIMIT_LOW])
1981 return;
1982 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1983 return;
Shaohua Li297e3d82017-03-27 10:51:37 -07001984 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001985 return;
1986
1987 elapsed_time = now - tg->last_check_time;
1988 tg->last_check_time = now;
1989
Shaohua Li297e3d82017-03-27 10:51:37 -07001990 if (time_before(now, tg_last_low_overflow_time(tg) +
1991 tg->td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001992 return;
1993
1994 if (tg->bps[READ][LIMIT_LOW]) {
1995 bps = tg->last_bytes_disp[READ] * HZ;
1996 do_div(bps, elapsed_time);
1997 if (bps >= tg->bps[READ][LIMIT_LOW])
1998 tg->last_low_overflow_time[READ] = now;
1999 }
2000
2001 if (tg->bps[WRITE][LIMIT_LOW]) {
2002 bps = tg->last_bytes_disp[WRITE] * HZ;
2003 do_div(bps, elapsed_time);
2004 if (bps >= tg->bps[WRITE][LIMIT_LOW])
2005 tg->last_low_overflow_time[WRITE] = now;
2006 }
2007
2008 if (tg->iops[READ][LIMIT_LOW]) {
2009 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
2010 if (iops >= tg->iops[READ][LIMIT_LOW])
2011 tg->last_low_overflow_time[READ] = now;
2012 }
2013
2014 if (tg->iops[WRITE][LIMIT_LOW]) {
2015 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
2016 if (iops >= tg->iops[WRITE][LIMIT_LOW])
2017 tg->last_low_overflow_time[WRITE] = now;
2018 }
2019
2020 /*
2021 * If cgroup is below low limit, consider downgrade and throttle other
2022 * cgroups
2023 */
2024 if (throtl_hierarchy_can_downgrade(tg))
2025 throtl_downgrade_state(tg->td, LIMIT_LOW);
2026
2027 tg->last_bytes_disp[READ] = 0;
2028 tg->last_bytes_disp[WRITE] = 0;
2029 tg->last_io_disp[READ] = 0;
2030 tg->last_io_disp[WRITE] = 0;
2031}
2032
Shaohua Li9e234ee2017-03-27 10:51:41 -07002033static void blk_throtl_update_idletime(struct throtl_grp *tg)
2034{
2035 unsigned long now = ktime_get_ns() >> 10;
2036 unsigned long last_finish_time = tg->last_finish_time;
2037
2038 if (now <= last_finish_time || last_finish_time == 0 ||
2039 last_finish_time == tg->checked_last_finish_time)
2040 return;
2041
2042 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
2043 tg->checked_last_finish_time = last_finish_time;
2044}
2045
Shaohua Lib9147dd2017-03-27 15:19:42 -07002046#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2047static void throtl_update_latency_buckets(struct throtl_data *td)
2048{
Joseph Qib889bf62017-11-21 09:38:30 +08002049 struct avg_latency_bucket avg_latency[2][LATENCY_BUCKET_SIZE];
2050 int i, cpu, rw;
2051 unsigned long last_latency[2] = { 0 };
2052 unsigned long latency[2];
Shaohua Lib9147dd2017-03-27 15:19:42 -07002053
2054 if (!blk_queue_nonrot(td->queue))
2055 return;
2056 if (time_before(jiffies, td->last_calculate_time + HZ))
2057 return;
2058 td->last_calculate_time = jiffies;
2059
2060 memset(avg_latency, 0, sizeof(avg_latency));
Joseph Qib889bf62017-11-21 09:38:30 +08002061 for (rw = READ; rw <= WRITE; rw++) {
2062 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2063 struct latency_bucket *tmp = &td->tmp_buckets[rw][i];
Shaohua Lib9147dd2017-03-27 15:19:42 -07002064
Joseph Qib889bf62017-11-21 09:38:30 +08002065 for_each_possible_cpu(cpu) {
2066 struct latency_bucket *bucket;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002067
Joseph Qib889bf62017-11-21 09:38:30 +08002068 /* this isn't race free, but ok in practice */
2069 bucket = per_cpu_ptr(td->latency_buckets[rw],
2070 cpu);
2071 tmp->total_latency += bucket[i].total_latency;
2072 tmp->samples += bucket[i].samples;
2073 bucket[i].total_latency = 0;
2074 bucket[i].samples = 0;
2075 }
Shaohua Lib9147dd2017-03-27 15:19:42 -07002076
Joseph Qib889bf62017-11-21 09:38:30 +08002077 if (tmp->samples >= 32) {
2078 int samples = tmp->samples;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002079
Joseph Qib889bf62017-11-21 09:38:30 +08002080 latency[rw] = tmp->total_latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002081
Joseph Qib889bf62017-11-21 09:38:30 +08002082 tmp->total_latency = 0;
2083 tmp->samples = 0;
2084 latency[rw] /= samples;
2085 if (latency[rw] == 0)
2086 continue;
2087 avg_latency[rw][i].latency = latency[rw];
2088 }
Shaohua Lib9147dd2017-03-27 15:19:42 -07002089 }
2090 }
2091
Joseph Qib889bf62017-11-21 09:38:30 +08002092 for (rw = READ; rw <= WRITE; rw++) {
2093 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2094 if (!avg_latency[rw][i].latency) {
2095 if (td->avg_buckets[rw][i].latency < last_latency[rw])
2096 td->avg_buckets[rw][i].latency =
2097 last_latency[rw];
2098 continue;
2099 }
2100
2101 if (!td->avg_buckets[rw][i].valid)
2102 latency[rw] = avg_latency[rw][i].latency;
2103 else
2104 latency[rw] = (td->avg_buckets[rw][i].latency * 7 +
2105 avg_latency[rw][i].latency) >> 3;
2106
2107 td->avg_buckets[rw][i].latency = max(latency[rw],
2108 last_latency[rw]);
2109 td->avg_buckets[rw][i].valid = true;
2110 last_latency[rw] = td->avg_buckets[rw][i].latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002111 }
Shaohua Lib9147dd2017-03-27 15:19:42 -07002112 }
Shaohua Li4cff7292017-05-17 13:07:25 -07002113
2114 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2115 throtl_log(&td->service_queue,
Joseph Qib889bf62017-11-21 09:38:30 +08002116 "Latency bucket %d: read latency=%ld, read valid=%d, "
2117 "write latency=%ld, write valid=%d", i,
2118 td->avg_buckets[READ][i].latency,
2119 td->avg_buckets[READ][i].valid,
2120 td->avg_buckets[WRITE][i].latency,
2121 td->avg_buckets[WRITE][i].valid);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002122}
2123#else
2124static inline void throtl_update_latency_buckets(struct throtl_data *td)
2125{
2126}
2127#endif
2128
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002129static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2130{
2131#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Dennis Zhou (Facebook)31118852018-08-31 16:22:44 -04002132 /* fallback to root_blkg if we fail to get a blkg ref */
2133 if (bio->bi_css && (bio_associate_blkg(bio, tg_to_blkg(tg)) == -ENODEV))
2134 bio_associate_blkg(bio, bio->bi_disk->queue->root_blkg);
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002135 bio_issue_init(&bio->bi_issue, bio_sectors(bio));
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002136#endif
2137}
2138
Tejun Heoae118892015-08-18 14:55:20 -07002139bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2140 struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04002141{
Tejun Heoc5cc2072013-05-14 13:52:38 -07002142 struct throtl_qnode *qn = NULL;
Tejun Heoae118892015-08-18 14:55:20 -07002143 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
Tejun Heo73f0d492013-05-14 13:52:35 -07002144 struct throtl_service_queue *sq;
Tejun Heo0e9f4162013-05-14 13:52:35 -07002145 bool rw = bio_data_dir(bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002146 bool throttled = false;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002147 struct throtl_data *td = tg->td;
Vivek Goyale43473b2010-09-15 17:06:35 -04002148
Tejun Heoae118892015-08-18 14:55:20 -07002149 WARN_ON_ONCE(!rcu_read_lock_held());
2150
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002151 /* see throtl_charge_bio() */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002152 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
Tejun Heobc16a4f2011-10-19 14:33:01 +02002153 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04002154
2155 spin_lock_irq(q->queue_lock);
Tejun Heoc9589f02015-08-18 14:55:19 -07002156
Shaohua Lib9147dd2017-03-27 15:19:42 -07002157 throtl_update_latency_buckets(td);
2158
Tejun Heoc9589f02015-08-18 14:55:19 -07002159 if (unlikely(blk_queue_bypass(q)))
Tejun Heobc16a4f2011-10-19 14:33:01 +02002160 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04002161
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002162 blk_throtl_assoc_bio(tg, bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002163 blk_throtl_update_idletime(tg);
2164
Tejun Heo73f0d492013-05-14 13:52:35 -07002165 sq = &tg->service_queue;
2166
Shaohua Lic79892c2017-03-27 10:51:34 -07002167again:
Tejun Heo9e660ac2013-05-14 13:52:38 -07002168 while (true) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002169 if (tg->last_low_overflow_time[rw] == 0)
2170 tg->last_low_overflow_time[rw] = jiffies;
2171 throtl_downgrade_check(tg);
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07002172 throtl_upgrade_check(tg);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002173 /* throtl is FIFO - if bios are already queued, should queue */
2174 if (sq->nr_queued[rw])
2175 break;
Vivek Goyalde701c72011-03-07 21:09:32 +01002176
Tejun Heo9e660ac2013-05-14 13:52:38 -07002177 /* if above limits, break to queue */
Shaohua Lic79892c2017-03-27 10:51:34 -07002178 if (!tg_may_dispatch(tg, bio, NULL)) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002179 tg->last_low_overflow_time[rw] = jiffies;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002180 if (throtl_can_upgrade(td, tg)) {
2181 throtl_upgrade_state(td);
Shaohua Lic79892c2017-03-27 10:51:34 -07002182 goto again;
2183 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002184 break;
Shaohua Lic79892c2017-03-27 10:51:34 -07002185 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002186
2187 /* within limits, let's charge and dispatch directly */
Vivek Goyale43473b2010-09-15 17:06:35 -04002188 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01002189
2190 /*
2191 * We need to trim slice even when bios are not being queued
2192 * otherwise it might happen that a bio is not queued for
2193 * a long time and slice keeps on extending and trim is not
2194 * called for a long time. Now if limits are reduced suddenly
2195 * we take into account all the IO dispatched so far at new
2196 * low rate and * newly queued IO gets a really long dispatch
2197 * time.
2198 *
2199 * So keep on trimming slice even if bio is not queued.
2200 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07002201 throtl_trim_slice(tg, rw);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002202
2203 /*
2204 * @bio passed through this layer without being throttled.
2205 * Climb up the ladder. If we''re already at the top, it
2206 * can be executed directly.
2207 */
Tejun Heoc5cc2072013-05-14 13:52:38 -07002208 qn = &tg->qnode_on_parent[rw];
Tejun Heo9e660ac2013-05-14 13:52:38 -07002209 sq = sq->parent_sq;
2210 tg = sq_to_tg(sq);
2211 if (!tg)
2212 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04002213 }
2214
Tejun Heo9e660ac2013-05-14 13:52:38 -07002215 /* out-of-limit, queue to @tg */
Tejun Heofda6f272013-05-14 13:52:36 -07002216 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2217 rw == READ ? 'R' : 'W',
Shaohua Li9f626e32017-03-27 10:51:30 -07002218 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2219 tg_bps_limit(tg, rw),
2220 tg->io_disp[rw], tg_iops_limit(tg, rw),
Tejun Heofda6f272013-05-14 13:52:36 -07002221 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04002222
Shaohua Li3f0abd82017-03-27 10:51:35 -07002223 tg->last_low_overflow_time[rw] = jiffies;
2224
Shaohua Lib9147dd2017-03-27 15:19:42 -07002225 td->nr_queued[rw]++;
Tejun Heoc5cc2072013-05-14 13:52:38 -07002226 throtl_add_bio_tg(bio, qn, tg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002227 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04002228
Tejun Heo7f52f982013-05-14 13:52:37 -07002229 /*
2230 * Update @tg's dispatch time and force schedule dispatch if @tg
2231 * was empty before @bio. The forced scheduling isn't likely to
2232 * cause undue delay as @bio is likely to be dispatched directly if
2233 * its @tg's disptime is not in the future.
2234 */
Tejun Heo0e9f4162013-05-14 13:52:35 -07002235 if (tg->flags & THROTL_TG_WAS_EMPTY) {
Tejun Heo77216b02013-05-14 13:52:36 -07002236 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07002237 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
Vivek Goyale43473b2010-09-15 17:06:35 -04002238 }
2239
Tejun Heobc16a4f2011-10-19 14:33:01 +02002240out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04002241 spin_unlock_irq(q->queue_lock);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002242out:
Shaohua Li111be882017-12-20 11:10:17 -07002243 bio_set_flag(bio, BIO_THROTTLED);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002244
2245#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2246 if (throttled || !td->track_bio_latency)
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002247 bio->bi_issue.value |= BIO_ISSUE_THROTL_SKIP_LATENCY;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002248#endif
Tejun Heobc16a4f2011-10-19 14:33:01 +02002249 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04002250}
2251
Shaohua Li9e234ee2017-03-27 10:51:41 -07002252#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Lib9147dd2017-03-27 15:19:42 -07002253static void throtl_track_latency(struct throtl_data *td, sector_t size,
2254 int op, unsigned long time)
2255{
2256 struct latency_bucket *latency;
2257 int index;
2258
Joseph Qib889bf62017-11-21 09:38:30 +08002259 if (!td || td->limit_index != LIMIT_LOW ||
2260 !(op == REQ_OP_READ || op == REQ_OP_WRITE) ||
Shaohua Lib9147dd2017-03-27 15:19:42 -07002261 !blk_queue_nonrot(td->queue))
2262 return;
2263
2264 index = request_bucket_index(size);
2265
Joseph Qib889bf62017-11-21 09:38:30 +08002266 latency = get_cpu_ptr(td->latency_buckets[op]);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002267 latency[index].total_latency += time;
2268 latency[index].samples++;
Joseph Qib889bf62017-11-21 09:38:30 +08002269 put_cpu_ptr(td->latency_buckets[op]);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002270}
2271
2272void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2273{
2274 struct request_queue *q = rq->q;
2275 struct throtl_data *td = q->td;
2276
Omar Sandoval544ccc8d2018-05-09 02:08:50 -07002277 throtl_track_latency(td, rq->throtl_size, req_op(rq), time_ns >> 10);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002278}
2279
Shaohua Li9e234ee2017-03-27 10:51:41 -07002280void blk_throtl_bio_endio(struct bio *bio)
2281{
Josef Bacik08e18ea2018-07-03 11:14:50 -04002282 struct blkcg_gq *blkg;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002283 struct throtl_grp *tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002284 u64 finish_time_ns;
2285 unsigned long finish_time;
2286 unsigned long start_time;
2287 unsigned long lat;
Joseph Qib889bf62017-11-21 09:38:30 +08002288 int rw = bio_data_dir(bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002289
Josef Bacik08e18ea2018-07-03 11:14:50 -04002290 blkg = bio->bi_blkg;
2291 if (!blkg)
Shaohua Li9e234ee2017-03-27 10:51:41 -07002292 return;
Josef Bacik08e18ea2018-07-03 11:14:50 -04002293 tg = blkg_to_tg(blkg);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002294
Shaohua Lib9147dd2017-03-27 15:19:42 -07002295 finish_time_ns = ktime_get_ns();
2296 tg->last_finish_time = finish_time_ns >> 10;
2297
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002298 start_time = bio_issue_time(&bio->bi_issue) >> 10;
2299 finish_time = __bio_issue_time(finish_time_ns) >> 10;
Josef Bacik08e18ea2018-07-03 11:14:50 -04002300 if (!start_time || finish_time <= start_time)
Shaohua Li53696b82017-03-27 15:19:43 -07002301 return;
2302
2303 lat = finish_time - start_time;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002304 /* this is only for bio based driver */
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002305 if (!(bio->bi_issue.value & BIO_ISSUE_THROTL_SKIP_LATENCY))
2306 throtl_track_latency(tg->td, bio_issue_size(&bio->bi_issue),
2307 bio_op(bio), lat);
Shaohua Li53696b82017-03-27 15:19:43 -07002308
Shaohua Li6679a902017-06-06 12:40:43 -07002309 if (tg->latency_target && lat >= tg->td->filtered_latency) {
Shaohua Li53696b82017-03-27 15:19:43 -07002310 int bucket;
2311 unsigned int threshold;
2312
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002313 bucket = request_bucket_index(bio_issue_size(&bio->bi_issue));
Joseph Qib889bf62017-11-21 09:38:30 +08002314 threshold = tg->td->avg_buckets[rw][bucket].latency +
Shaohua Li53696b82017-03-27 15:19:43 -07002315 tg->latency_target;
2316 if (lat > threshold)
2317 tg->bad_bio_cnt++;
2318 /*
2319 * Not race free, could get wrong count, which means cgroups
2320 * will be throttled
2321 */
2322 tg->bio_cnt++;
2323 }
2324
2325 if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) {
2326 tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies;
2327 tg->bio_cnt /= 2;
2328 tg->bad_bio_cnt /= 2;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002329 }
Shaohua Li9e234ee2017-03-27 10:51:41 -07002330}
2331#endif
2332
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002333/*
2334 * Dispatch all bios from all children tg's queued on @parent_sq. On
2335 * return, @parent_sq is guaranteed to not have any active children tg's
2336 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2337 */
2338static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2339{
2340 struct throtl_grp *tg;
2341
2342 while ((tg = throtl_rb_first(parent_sq))) {
2343 struct throtl_service_queue *sq = &tg->service_queue;
2344 struct bio *bio;
2345
2346 throtl_dequeue_tg(tg);
2347
Tejun Heoc5cc2072013-05-14 13:52:38 -07002348 while ((bio = throtl_peek_queued(&sq->queued[READ])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002349 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Tejun Heoc5cc2072013-05-14 13:52:38 -07002350 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002351 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2352 }
2353}
2354
Tejun Heoc9a929d2011-10-19 14:42:16 +02002355/**
2356 * blk_throtl_drain - drain throttled bios
2357 * @q: request_queue to drain throttled bios for
2358 *
2359 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2360 */
2361void blk_throtl_drain(struct request_queue *q)
2362 __releases(q->queue_lock) __acquires(q->queue_lock)
2363{
2364 struct throtl_data *td = q->td;
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002365 struct blkcg_gq *blkg;
Tejun Heo492eb212013-08-08 20:11:25 -04002366 struct cgroup_subsys_state *pos_css;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002367 struct bio *bio;
Tejun Heo651930b2013-05-14 13:52:35 -07002368 int rw;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002369
Andi Kleen8bcb6c72012-03-30 12:33:28 +02002370 queue_lockdep_assert_held(q);
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002371 rcu_read_lock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002372
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002373 /*
2374 * Drain each tg while doing post-order walk on the blkg tree, so
2375 * that all bios are propagated to td->service_queue. It'd be
2376 * better to walk service_queue tree directly but blkg walk is
2377 * easier.
2378 */
Tejun Heo492eb212013-08-08 20:11:25 -04002379 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002380 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
Tejun Heo73f0d492013-05-14 13:52:35 -07002381
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002382 /* finally, transfer bios from top-level tg's into the td */
2383 tg_drain_bios(&td->service_queue);
2384
2385 rcu_read_unlock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002386 spin_unlock_irq(q->queue_lock);
2387
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002388 /* all bios now should be in td->service_queue, issue them */
Tejun Heo651930b2013-05-14 13:52:35 -07002389 for (rw = READ; rw <= WRITE; rw++)
Tejun Heoc5cc2072013-05-14 13:52:38 -07002390 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2391 NULL)))
Tejun Heo651930b2013-05-14 13:52:35 -07002392 generic_make_request(bio);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002393
2394 spin_lock_irq(q->queue_lock);
2395}
2396
Vivek Goyale43473b2010-09-15 17:06:35 -04002397int blk_throtl_init(struct request_queue *q)
2398{
2399 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07002400 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002401
2402 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2403 if (!td)
2404 return -ENOMEM;
Joseph Qib889bf62017-11-21 09:38:30 +08002405 td->latency_buckets[READ] = __alloc_percpu(sizeof(struct latency_bucket) *
Shaohua Lib9147dd2017-03-27 15:19:42 -07002406 LATENCY_BUCKET_SIZE, __alignof__(u64));
Joseph Qib889bf62017-11-21 09:38:30 +08002407 if (!td->latency_buckets[READ]) {
2408 kfree(td);
2409 return -ENOMEM;
2410 }
2411 td->latency_buckets[WRITE] = __alloc_percpu(sizeof(struct latency_bucket) *
2412 LATENCY_BUCKET_SIZE, __alignof__(u64));
2413 if (!td->latency_buckets[WRITE]) {
2414 free_percpu(td->latency_buckets[READ]);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002415 kfree(td);
2416 return -ENOMEM;
2417 }
Vivek Goyale43473b2010-09-15 17:06:35 -04002418
Tejun Heo69df0ab2013-05-14 13:52:36 -07002419 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heob2ce2642015-08-18 14:55:13 -07002420 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04002421
Tejun Heocd1604f2012-03-05 13:15:06 -08002422 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04002423 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02002424
Shaohua Li9f626e32017-03-27 10:51:30 -07002425 td->limit_valid[LIMIT_MAX] = true;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07002426 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07002427 td->low_upgrade_time = jiffies;
2428 td->low_downgrade_time = jiffies;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002429
Tejun Heoa2b16932012-04-13 13:11:33 -07002430 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07002431 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002432 if (ret) {
Joseph Qib889bf62017-11-21 09:38:30 +08002433 free_percpu(td->latency_buckets[READ]);
2434 free_percpu(td->latency_buckets[WRITE]);
Vivek Goyal29b12582011-05-19 15:38:24 -04002435 kfree(td);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002436 }
Tejun Heoa2b16932012-04-13 13:11:33 -07002437 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002438}
2439
2440void blk_throtl_exit(struct request_queue *q)
2441{
Tejun Heoc875f4d2012-03-05 13:15:22 -08002442 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05002443 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07002444 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Joseph Qib889bf62017-11-21 09:38:30 +08002445 free_percpu(q->td->latency_buckets[READ]);
2446 free_percpu(q->td->latency_buckets[WRITE]);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002447 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04002448}
2449
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002450void blk_throtl_register_queue(struct request_queue *q)
2451{
2452 struct throtl_data *td;
Shaohua Li6679a902017-06-06 12:40:43 -07002453 int i;
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002454
2455 td = q->td;
2456 BUG_ON(!td);
2457
Shaohua Li6679a902017-06-06 12:40:43 -07002458 if (blk_queue_nonrot(q)) {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002459 td->throtl_slice = DFL_THROTL_SLICE_SSD;
Shaohua Li6679a902017-06-06 12:40:43 -07002460 td->filtered_latency = LATENCY_FILTERED_SSD;
2461 } else {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002462 td->throtl_slice = DFL_THROTL_SLICE_HD;
Shaohua Li6679a902017-06-06 12:40:43 -07002463 td->filtered_latency = LATENCY_FILTERED_HD;
Joseph Qib889bf62017-11-21 09:38:30 +08002464 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2465 td->avg_buckets[READ][i].latency = DFL_HD_BASELINE_LATENCY;
2466 td->avg_buckets[WRITE][i].latency = DFL_HD_BASELINE_LATENCY;
2467 }
Shaohua Li6679a902017-06-06 12:40:43 -07002468 }
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002469#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2470 /* if no low limit, use previous default */
2471 td->throtl_slice = DFL_THROTL_SLICE_HD;
2472#endif
Shaohua Li9e234ee2017-03-27 10:51:41 -07002473
weiping zhang475a0552018-01-20 07:34:25 +08002474 td->track_bio_latency = !queue_is_rq_based(q);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002475 if (!td->track_bio_latency)
2476 blk_stat_enable_accounting(q);
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002477}
2478
Shaohua Li297e3d82017-03-27 10:51:37 -07002479#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2480ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2481{
2482 if (!q->td)
2483 return -EINVAL;
2484 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2485}
2486
2487ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2488 const char *page, size_t count)
2489{
2490 unsigned long v;
2491 unsigned long t;
2492
2493 if (!q->td)
2494 return -EINVAL;
2495 if (kstrtoul(page, 10, &v))
2496 return -EINVAL;
2497 t = msecs_to_jiffies(v);
2498 if (t == 0 || t > MAX_THROTL_SLICE)
2499 return -EINVAL;
2500 q->td->throtl_slice = t;
2501 return count;
2502}
2503#endif
2504
Vivek Goyale43473b2010-09-15 17:06:35 -04002505static int __init throtl_init(void)
2506{
Vivek Goyal450adcb2011-03-01 13:40:54 -05002507 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2508 if (!kthrotld_workqueue)
2509 panic("Failed to create kthrotld\n");
2510
Tejun Heo3c798392012-04-16 13:57:25 -07002511 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04002512}
2513
2514module_init(throtl_init);