blob: 140da29f5800b8f1dbb4e917895dcc351edbb3a5 [file] [log] [blame]
Vivek Goyale43473b2010-09-15 17:06:35 -04001/*
2 * Interface for controlling IO bandwidth on a request queue
3 *
4 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
5 */
6
7#include <linux/module.h>
8#include <linux/slab.h>
9#include <linux/blkdev.h>
10#include <linux/bio.h>
11#include <linux/blktrace_api.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040012#include <linux/blk-cgroup.h>
Tejun Heobc9fcbf2011-10-19 14:31:18 +020013#include "blk.h"
Vivek Goyale43473b2010-09-15 17:06:35 -040014
15/* Max dispatch from a group in 1 round */
16static int throtl_grp_quantum = 8;
17
18/* Total max dispatch from all groups in one round */
19static int throtl_quantum = 32;
20
Shaohua Lid61fcfa2017-03-27 10:51:38 -070021/* Throttling is performed over a slice and after that slice is renewed */
22#define DFL_THROTL_SLICE_HD (HZ / 10)
23#define DFL_THROTL_SLICE_SSD (HZ / 50)
Shaohua Li297e3d82017-03-27 10:51:37 -070024#define MAX_THROTL_SLICE (HZ)
Shaohua Li9e234ee2017-03-27 10:51:41 -070025#define DFL_IDLE_THRESHOLD_SSD (1000L) /* 1 ms */
26#define DFL_IDLE_THRESHOLD_HD (100L * 1000) /* 100 ms */
27#define MAX_IDLE_TIME (5L * 1000 * 1000) /* 5 s */
Shaohua Liec809912017-03-27 10:51:44 -070028/* default latency target is 0, eg, guarantee IO latency by default */
29#define DFL_LATENCY_TARGET (0)
Vivek Goyale43473b2010-09-15 17:06:35 -040030
Shaohua Lib9147dd2017-03-27 15:19:42 -070031#define SKIP_LATENCY (((u64)1) << BLK_STAT_RES_SHIFT)
32
Tejun Heo3c798392012-04-16 13:57:25 -070033static struct blkcg_policy blkcg_policy_throtl;
Tejun Heo03814112012-03-05 13:15:14 -080034
Vivek Goyal450adcb2011-03-01 13:40:54 -050035/* A workqueue to queue throttle related work */
36static struct workqueue_struct *kthrotld_workqueue;
Vivek Goyal450adcb2011-03-01 13:40:54 -050037
Tejun Heoc5cc2072013-05-14 13:52:38 -070038/*
39 * To implement hierarchical throttling, throtl_grps form a tree and bios
40 * are dispatched upwards level by level until they reach the top and get
41 * issued. When dispatching bios from the children and local group at each
42 * level, if the bios are dispatched into a single bio_list, there's a risk
43 * of a local or child group which can queue many bios at once filling up
44 * the list starving others.
45 *
46 * To avoid such starvation, dispatched bios are queued separately
47 * according to where they came from. When they are again dispatched to
48 * the parent, they're popped in round-robin order so that no single source
49 * hogs the dispatch window.
50 *
51 * throtl_qnode is used to keep the queued bios separated by their sources.
52 * Bios are queued to throtl_qnode which in turn is queued to
53 * throtl_service_queue and then dispatched in round-robin order.
54 *
55 * It's also used to track the reference counts on blkg's. A qnode always
56 * belongs to a throtl_grp and gets queued on itself or the parent, so
57 * incrementing the reference of the associated throtl_grp when a qnode is
58 * queued and decrementing when dequeued is enough to keep the whole blkg
59 * tree pinned while bios are in flight.
60 */
61struct throtl_qnode {
62 struct list_head node; /* service_queue->queued[] */
63 struct bio_list bios; /* queued bios */
64 struct throtl_grp *tg; /* tg this qnode belongs to */
65};
66
Tejun Heoc9e03322013-05-14 13:52:32 -070067struct throtl_service_queue {
Tejun Heo77216b02013-05-14 13:52:36 -070068 struct throtl_service_queue *parent_sq; /* the parent service_queue */
69
Tejun Heo73f0d492013-05-14 13:52:35 -070070 /*
71 * Bios queued directly to this service_queue or dispatched from
72 * children throtl_grp's.
73 */
Tejun Heoc5cc2072013-05-14 13:52:38 -070074 struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */
Tejun Heo73f0d492013-05-14 13:52:35 -070075 unsigned int nr_queued[2]; /* number of queued bios */
76
77 /*
78 * RB tree of active children throtl_grp's, which are sorted by
79 * their ->disptime.
80 */
Tejun Heoc9e03322013-05-14 13:52:32 -070081 struct rb_root pending_tree; /* RB tree of active tgs */
82 struct rb_node *first_pending; /* first node in the tree */
83 unsigned int nr_pending; /* # queued in the tree */
84 unsigned long first_pending_disptime; /* disptime of the first tg */
Tejun Heo69df0ab2013-05-14 13:52:36 -070085 struct timer_list pending_timer; /* fires on first_pending_disptime */
Vivek Goyale43473b2010-09-15 17:06:35 -040086};
87
Tejun Heo5b2c16a2013-05-14 13:52:32 -070088enum tg_state_flags {
89 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
Tejun Heo0e9f4162013-05-14 13:52:35 -070090 THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */
Tejun Heo5b2c16a2013-05-14 13:52:32 -070091};
92
Vivek Goyale43473b2010-09-15 17:06:35 -040093#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
94
Shaohua Li9f626e32017-03-27 10:51:30 -070095enum {
Shaohua Licd5ab1b2017-03-27 10:51:32 -070096 LIMIT_LOW,
Shaohua Li9f626e32017-03-27 10:51:30 -070097 LIMIT_MAX,
98 LIMIT_CNT,
99};
100
Vivek Goyale43473b2010-09-15 17:06:35 -0400101struct throtl_grp {
Tejun Heof95a04a2012-04-16 13:57:26 -0700102 /* must be the first member */
103 struct blkg_policy_data pd;
104
Tejun Heoc9e03322013-05-14 13:52:32 -0700105 /* active throtl group service_queue member */
Vivek Goyale43473b2010-09-15 17:06:35 -0400106 struct rb_node rb_node;
107
Tejun Heo0f3457f2013-05-14 13:52:32 -0700108 /* throtl_data this group belongs to */
109 struct throtl_data *td;
110
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700111 /* this group's service queue */
112 struct throtl_service_queue service_queue;
113
Vivek Goyale43473b2010-09-15 17:06:35 -0400114 /*
Tejun Heoc5cc2072013-05-14 13:52:38 -0700115 * qnode_on_self is used when bios are directly queued to this
116 * throtl_grp so that local bios compete fairly with bios
117 * dispatched from children. qnode_on_parent is used when bios are
118 * dispatched from this throtl_grp into its parent and will compete
119 * with the sibling qnode_on_parents and the parent's
120 * qnode_on_self.
121 */
122 struct throtl_qnode qnode_on_self[2];
123 struct throtl_qnode qnode_on_parent[2];
124
125 /*
Vivek Goyale43473b2010-09-15 17:06:35 -0400126 * Dispatch time in jiffies. This is the estimated time when group
127 * will unthrottle and is ready to dispatch more bio. It is used as
128 * key to sort active groups in service tree.
129 */
130 unsigned long disptime;
131
Vivek Goyale43473b2010-09-15 17:06:35 -0400132 unsigned int flags;
133
Tejun Heo693e7512013-05-14 13:52:38 -0700134 /* are there any throtl rules between this group and td? */
135 bool has_rules[2];
136
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700137 /* internally used bytes per second rate limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700138 uint64_t bps[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700139 /* user configured bps limits */
140 uint64_t bps_conf[2][LIMIT_CNT];
Vivek Goyale43473b2010-09-15 17:06:35 -0400141
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700142 /* internally used IOPS limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700143 unsigned int iops[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700144 /* user configured IOPS limits */
145 unsigned int iops_conf[2][LIMIT_CNT];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400146
Vivek Goyale43473b2010-09-15 17:06:35 -0400147 /* Number of bytes disptached in current slice */
148 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400149 /* Number of bio's dispatched in current slice */
150 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -0400151
Shaohua Li3f0abd82017-03-27 10:51:35 -0700152 unsigned long last_low_overflow_time[2];
153
154 uint64_t last_bytes_disp[2];
155 unsigned int last_io_disp[2];
156
157 unsigned long last_check_time;
158
Shaohua Liec809912017-03-27 10:51:44 -0700159 unsigned long latency_target; /* us */
Vivek Goyale43473b2010-09-15 17:06:35 -0400160 /* When did we start a new slice */
161 unsigned long slice_start[2];
162 unsigned long slice_end[2];
Shaohua Li9e234ee2017-03-27 10:51:41 -0700163
164 unsigned long last_finish_time; /* ns / 1024 */
165 unsigned long checked_last_finish_time; /* ns / 1024 */
166 unsigned long avg_idletime; /* ns / 1024 */
167 unsigned long idletime_threshold; /* us */
Vivek Goyale43473b2010-09-15 17:06:35 -0400168};
169
Shaohua Lib9147dd2017-03-27 15:19:42 -0700170/* We measure latency for request size from <= 4k to >= 1M */
171#define LATENCY_BUCKET_SIZE 9
172
173struct latency_bucket {
174 unsigned long total_latency; /* ns / 1024 */
175 int samples;
176};
177
178struct avg_latency_bucket {
179 unsigned long latency; /* ns / 1024 */
180 bool valid;
181};
182
Vivek Goyale43473b2010-09-15 17:06:35 -0400183struct throtl_data
184{
Vivek Goyale43473b2010-09-15 17:06:35 -0400185 /* service tree for active throtl groups */
Tejun Heoc9e03322013-05-14 13:52:32 -0700186 struct throtl_service_queue service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400187
Vivek Goyale43473b2010-09-15 17:06:35 -0400188 struct request_queue *queue;
189
190 /* Total Number of queued bios on READ and WRITE lists */
191 unsigned int nr_queued[2];
192
Shaohua Li297e3d82017-03-27 10:51:37 -0700193 unsigned int throtl_slice;
194
Vivek Goyale43473b2010-09-15 17:06:35 -0400195 /* Work for dispatching throttled bios */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700196 struct work_struct dispatch_work;
Shaohua Li9f626e32017-03-27 10:51:30 -0700197 unsigned int limit_index;
198 bool limit_valid[LIMIT_CNT];
Shaohua Li3f0abd82017-03-27 10:51:35 -0700199
Shaohua Liada75b62017-03-27 10:51:42 -0700200 unsigned long dft_idletime_threshold; /* us */
201
Shaohua Li3f0abd82017-03-27 10:51:35 -0700202 unsigned long low_upgrade_time;
203 unsigned long low_downgrade_time;
Shaohua Li7394e312017-03-27 10:51:40 -0700204
205 unsigned int scale;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700206
207 struct latency_bucket tmp_buckets[LATENCY_BUCKET_SIZE];
208 struct avg_latency_bucket avg_buckets[LATENCY_BUCKET_SIZE];
209 struct latency_bucket __percpu *latency_buckets;
210 unsigned long last_calculate_time;
211
212 bool track_bio_latency;
Vivek Goyale43473b2010-09-15 17:06:35 -0400213};
214
Tejun Heo69df0ab2013-05-14 13:52:36 -0700215static void throtl_pending_timer_fn(unsigned long arg);
216
Tejun Heof95a04a2012-04-16 13:57:26 -0700217static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
218{
219 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
220}
221
Tejun Heo3c798392012-04-16 13:57:25 -0700222static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -0800223{
Tejun Heof95a04a2012-04-16 13:57:26 -0700224 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
Tejun Heo03814112012-03-05 13:15:14 -0800225}
226
Tejun Heo3c798392012-04-16 13:57:25 -0700227static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
Tejun Heo03814112012-03-05 13:15:14 -0800228{
Tejun Heof95a04a2012-04-16 13:57:26 -0700229 return pd_to_blkg(&tg->pd);
Tejun Heo03814112012-03-05 13:15:14 -0800230}
231
Tejun Heofda6f272013-05-14 13:52:36 -0700232/**
233 * sq_to_tg - return the throl_grp the specified service queue belongs to
234 * @sq: the throtl_service_queue of interest
235 *
236 * Return the throtl_grp @sq belongs to. If @sq is the top-level one
237 * embedded in throtl_data, %NULL is returned.
238 */
239static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq)
240{
241 if (sq && sq->parent_sq)
242 return container_of(sq, struct throtl_grp, service_queue);
243 else
244 return NULL;
245}
Vivek Goyale43473b2010-09-15 17:06:35 -0400246
Tejun Heofda6f272013-05-14 13:52:36 -0700247/**
248 * sq_to_td - return throtl_data the specified service queue belongs to
249 * @sq: the throtl_service_queue of interest
250 *
Masahiro Yamadab43daed2017-02-27 14:29:09 -0800251 * A service_queue can be embedded in either a throtl_grp or throtl_data.
Tejun Heofda6f272013-05-14 13:52:36 -0700252 * Determine the associated throtl_data accordingly and return it.
253 */
254static struct throtl_data *sq_to_td(struct throtl_service_queue *sq)
255{
256 struct throtl_grp *tg = sq_to_tg(sq);
257
258 if (tg)
259 return tg->td;
260 else
261 return container_of(sq, struct throtl_data, service_queue);
262}
263
Shaohua Li7394e312017-03-27 10:51:40 -0700264/*
265 * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to
266 * make the IO dispatch more smooth.
267 * Scale up: linearly scale up according to lapsed time since upgrade. For
268 * every throtl_slice, the limit scales up 1/2 .low limit till the
269 * limit hits .max limit
270 * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit
271 */
272static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td)
273{
274 /* arbitrary value to avoid too big scale */
275 if (td->scale < 4096 && time_after_eq(jiffies,
276 td->low_upgrade_time + td->scale * td->throtl_slice))
277 td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice;
278
279 return low + (low >> 1) * td->scale;
280}
281
Shaohua Li9f626e32017-03-27 10:51:30 -0700282static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw)
283{
Shaohua Lib22c4172017-03-27 10:51:33 -0700284 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700285 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700286 uint64_t ret;
287
288 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
289 return U64_MAX;
Shaohua Li7394e312017-03-27 10:51:40 -0700290
291 td = tg->td;
292 ret = tg->bps[rw][td->limit_index];
293 if (ret == 0 && td->limit_index == LIMIT_LOW)
Shaohua Lib22c4172017-03-27 10:51:33 -0700294 return tg->bps[rw][LIMIT_MAX];
Shaohua Li7394e312017-03-27 10:51:40 -0700295
296 if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] &&
297 tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) {
298 uint64_t adjusted;
299
300 adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td);
301 ret = min(tg->bps[rw][LIMIT_MAX], adjusted);
302 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700303 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700304}
305
306static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
307{
Shaohua Lib22c4172017-03-27 10:51:33 -0700308 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700309 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700310 unsigned int ret;
311
312 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
313 return UINT_MAX;
Shaohua Li7394e312017-03-27 10:51:40 -0700314 td = tg->td;
315 ret = tg->iops[rw][td->limit_index];
Shaohua Lib22c4172017-03-27 10:51:33 -0700316 if (ret == 0 && tg->td->limit_index == LIMIT_LOW)
317 return tg->iops[rw][LIMIT_MAX];
Shaohua Li7394e312017-03-27 10:51:40 -0700318
319 if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] &&
320 tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) {
321 uint64_t adjusted;
322
323 adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td);
324 if (adjusted > UINT_MAX)
325 adjusted = UINT_MAX;
326 ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted);
327 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700328 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700329}
330
Shaohua Lib9147dd2017-03-27 15:19:42 -0700331#define request_bucket_index(sectors) \
332 clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1)
333
Tejun Heofda6f272013-05-14 13:52:36 -0700334/**
335 * throtl_log - log debug message via blktrace
336 * @sq: the service_queue being reported
337 * @fmt: printf format string
338 * @args: printf args
339 *
340 * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a
341 * throtl_grp; otherwise, just "throtl".
Tejun Heofda6f272013-05-14 13:52:36 -0700342 */
343#define throtl_log(sq, fmt, args...) do { \
344 struct throtl_grp *__tg = sq_to_tg((sq)); \
345 struct throtl_data *__td = sq_to_td((sq)); \
346 \
347 (void)__td; \
Shaohua Li59fa0222016-05-09 17:22:15 -0700348 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
349 break; \
Tejun Heofda6f272013-05-14 13:52:36 -0700350 if ((__tg)) { \
351 char __pbuf[128]; \
352 \
353 blkg_path(tg_to_blkg(__tg), __pbuf, sizeof(__pbuf)); \
354 blk_add_trace_msg(__td->queue, "throtl %s " fmt, __pbuf, ##args); \
355 } else { \
356 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
357 } \
358} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400359
Tejun Heoc5cc2072013-05-14 13:52:38 -0700360static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
361{
362 INIT_LIST_HEAD(&qn->node);
363 bio_list_init(&qn->bios);
364 qn->tg = tg;
365}
366
367/**
368 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
369 * @bio: bio being added
370 * @qn: qnode to add bio to
371 * @queued: the service_queue->queued[] list @qn belongs to
372 *
373 * Add @bio to @qn and put @qn on @queued if it's not already on.
374 * @qn->tg's reference count is bumped when @qn is activated. See the
375 * comment on top of throtl_qnode definition for details.
376 */
377static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
378 struct list_head *queued)
379{
380 bio_list_add(&qn->bios, bio);
381 if (list_empty(&qn->node)) {
382 list_add_tail(&qn->node, queued);
383 blkg_get(tg_to_blkg(qn->tg));
384 }
385}
386
387/**
388 * throtl_peek_queued - peek the first bio on a qnode list
389 * @queued: the qnode list to peek
390 */
391static struct bio *throtl_peek_queued(struct list_head *queued)
392{
393 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
394 struct bio *bio;
395
396 if (list_empty(queued))
397 return NULL;
398
399 bio = bio_list_peek(&qn->bios);
400 WARN_ON_ONCE(!bio);
401 return bio;
402}
403
404/**
405 * throtl_pop_queued - pop the first bio form a qnode list
406 * @queued: the qnode list to pop a bio from
407 * @tg_to_put: optional out argument for throtl_grp to put
408 *
409 * Pop the first bio from the qnode list @queued. After popping, the first
410 * qnode is removed from @queued if empty or moved to the end of @queued so
411 * that the popping order is round-robin.
412 *
413 * When the first qnode is removed, its associated throtl_grp should be put
414 * too. If @tg_to_put is NULL, this function automatically puts it;
415 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
416 * responsible for putting it.
417 */
418static struct bio *throtl_pop_queued(struct list_head *queued,
419 struct throtl_grp **tg_to_put)
420{
421 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
422 struct bio *bio;
423
424 if (list_empty(queued))
425 return NULL;
426
427 bio = bio_list_pop(&qn->bios);
428 WARN_ON_ONCE(!bio);
429
430 if (bio_list_empty(&qn->bios)) {
431 list_del_init(&qn->node);
432 if (tg_to_put)
433 *tg_to_put = qn->tg;
434 else
435 blkg_put(tg_to_blkg(qn->tg));
436 } else {
437 list_move_tail(&qn->node, queued);
438 }
439
440 return bio;
441}
442
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700443/* init a service_queue, assumes the caller zeroed it */
Tejun Heob2ce2642015-08-18 14:55:13 -0700444static void throtl_service_queue_init(struct throtl_service_queue *sq)
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700445{
Tejun Heoc5cc2072013-05-14 13:52:38 -0700446 INIT_LIST_HEAD(&sq->queued[0]);
447 INIT_LIST_HEAD(&sq->queued[1]);
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700448 sq->pending_tree = RB_ROOT;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700449 setup_timer(&sq->pending_timer, throtl_pending_timer_fn,
450 (unsigned long)sq);
451}
452
Tejun Heo001bea72015-08-18 14:55:11 -0700453static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
454{
Tejun Heo4fb72032015-08-18 14:55:12 -0700455 struct throtl_grp *tg;
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700456 int rw;
Tejun Heo4fb72032015-08-18 14:55:12 -0700457
458 tg = kzalloc_node(sizeof(*tg), gfp, node);
459 if (!tg)
Tejun Heo77ea7332015-08-18 14:55:24 -0700460 return NULL;
Tejun Heo4fb72032015-08-18 14:55:12 -0700461
Tejun Heob2ce2642015-08-18 14:55:13 -0700462 throtl_service_queue_init(&tg->service_queue);
463
464 for (rw = READ; rw <= WRITE; rw++) {
465 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
466 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
467 }
468
469 RB_CLEAR_NODE(&tg->rb_node);
Shaohua Li9f626e32017-03-27 10:51:30 -0700470 tg->bps[READ][LIMIT_MAX] = U64_MAX;
471 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
472 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
473 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700474 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
475 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
476 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
477 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
478 /* LIMIT_LOW will have default value 0 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700479
Shaohua Liec809912017-03-27 10:51:44 -0700480 tg->latency_target = DFL_LATENCY_TARGET;
481
Tejun Heo4fb72032015-08-18 14:55:12 -0700482 return &tg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -0700483}
484
Tejun Heoa9520cd2015-08-18 14:55:14 -0700485static void throtl_pd_init(struct blkg_policy_data *pd)
Vivek Goyala29a1712011-05-19 15:38:19 -0400486{
Tejun Heoa9520cd2015-08-18 14:55:14 -0700487 struct throtl_grp *tg = pd_to_tg(pd);
488 struct blkcg_gq *blkg = tg_to_blkg(tg);
Tejun Heo77216b02013-05-14 13:52:36 -0700489 struct throtl_data *td = blkg->q->td;
Tejun Heob2ce2642015-08-18 14:55:13 -0700490 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800491
Tejun Heo91381252013-05-14 13:52:38 -0700492 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -0400493 * If on the default hierarchy, we switch to properly hierarchical
Tejun Heo91381252013-05-14 13:52:38 -0700494 * behavior where limits on a given throtl_grp are applied to the
495 * whole subtree rather than just the group itself. e.g. If 16M
496 * read_bps limit is set on the root group, the whole system can't
497 * exceed 16M for the device.
498 *
Tejun Heoaa6ec292014-07-09 10:08:08 -0400499 * If not on the default hierarchy, the broken flat hierarchy
Tejun Heo91381252013-05-14 13:52:38 -0700500 * behavior is retained where all throtl_grps are treated as if
501 * they're all separate root groups right below throtl_data.
502 * Limits of a group don't interact with limits of other groups
503 * regardless of the position of the group in the hierarchy.
504 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700505 sq->parent_sq = &td->service_queue;
Tejun Heo9e10a132015-09-18 11:56:28 -0400506 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
Tejun Heob2ce2642015-08-18 14:55:13 -0700507 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
Tejun Heo77216b02013-05-14 13:52:36 -0700508 tg->td = td;
Shaohua Li9e234ee2017-03-27 10:51:41 -0700509
Shaohua Liada75b62017-03-27 10:51:42 -0700510 tg->idletime_threshold = td->dft_idletime_threshold;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700511}
512
Tejun Heo693e7512013-05-14 13:52:38 -0700513/*
514 * Set has_rules[] if @tg or any of its parents have limits configured.
515 * This doesn't require walking up to the top of the hierarchy as the
516 * parent's has_rules[] is guaranteed to be correct.
517 */
518static void tg_update_has_rules(struct throtl_grp *tg)
519{
520 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
Shaohua Li9f626e32017-03-27 10:51:30 -0700521 struct throtl_data *td = tg->td;
Tejun Heo693e7512013-05-14 13:52:38 -0700522 int rw;
523
524 for (rw = READ; rw <= WRITE; rw++)
525 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
Shaohua Li9f626e32017-03-27 10:51:30 -0700526 (td->limit_valid[td->limit_index] &&
527 (tg_bps_limit(tg, rw) != U64_MAX ||
528 tg_iops_limit(tg, rw) != UINT_MAX));
Tejun Heo693e7512013-05-14 13:52:38 -0700529}
530
Tejun Heoa9520cd2015-08-18 14:55:14 -0700531static void throtl_pd_online(struct blkg_policy_data *pd)
Tejun Heo693e7512013-05-14 13:52:38 -0700532{
Shaohua Liaec24242017-03-27 10:51:39 -0700533 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo693e7512013-05-14 13:52:38 -0700534 /*
535 * We don't want new groups to escape the limits of its ancestors.
536 * Update has_rules[] after a new group is brought online.
537 */
Shaohua Liaec24242017-03-27 10:51:39 -0700538 tg_update_has_rules(tg);
Tejun Heo693e7512013-05-14 13:52:38 -0700539}
540
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700541static void blk_throtl_update_limit_valid(struct throtl_data *td)
542{
543 struct cgroup_subsys_state *pos_css;
544 struct blkcg_gq *blkg;
545 bool low_valid = false;
546
547 rcu_read_lock();
548 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
549 struct throtl_grp *tg = blkg_to_tg(blkg);
550
551 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
552 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
553 low_valid = true;
554 }
555 rcu_read_unlock();
556
557 td->limit_valid[LIMIT_LOW] = low_valid;
558}
559
Shaohua Lic79892c2017-03-27 10:51:34 -0700560static void throtl_upgrade_state(struct throtl_data *td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700561static void throtl_pd_offline(struct blkg_policy_data *pd)
562{
563 struct throtl_grp *tg = pd_to_tg(pd);
564
565 tg->bps[READ][LIMIT_LOW] = 0;
566 tg->bps[WRITE][LIMIT_LOW] = 0;
567 tg->iops[READ][LIMIT_LOW] = 0;
568 tg->iops[WRITE][LIMIT_LOW] = 0;
569
570 blk_throtl_update_limit_valid(tg->td);
571
Shaohua Lic79892c2017-03-27 10:51:34 -0700572 if (!tg->td->limit_valid[tg->td->limit_index])
573 throtl_upgrade_state(tg->td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700574}
575
Tejun Heo001bea72015-08-18 14:55:11 -0700576static void throtl_pd_free(struct blkg_policy_data *pd)
577{
Tejun Heo4fb72032015-08-18 14:55:12 -0700578 struct throtl_grp *tg = pd_to_tg(pd);
579
Tejun Heob2ce2642015-08-18 14:55:13 -0700580 del_timer_sync(&tg->service_queue.pending_timer);
Tejun Heo4fb72032015-08-18 14:55:12 -0700581 kfree(tg);
Tejun Heo001bea72015-08-18 14:55:11 -0700582}
583
Tejun Heo0049af72013-05-14 13:52:33 -0700584static struct throtl_grp *
585throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400586{
587 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700588 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400589 return NULL;
590
Tejun Heo0049af72013-05-14 13:52:33 -0700591 if (!parent_sq->first_pending)
592 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400593
Tejun Heo0049af72013-05-14 13:52:33 -0700594 if (parent_sq->first_pending)
595 return rb_entry_tg(parent_sq->first_pending);
Vivek Goyale43473b2010-09-15 17:06:35 -0400596
597 return NULL;
598}
599
600static void rb_erase_init(struct rb_node *n, struct rb_root *root)
601{
602 rb_erase(n, root);
603 RB_CLEAR_NODE(n);
604}
605
Tejun Heo0049af72013-05-14 13:52:33 -0700606static void throtl_rb_erase(struct rb_node *n,
607 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400608{
Tejun Heo0049af72013-05-14 13:52:33 -0700609 if (parent_sq->first_pending == n)
610 parent_sq->first_pending = NULL;
611 rb_erase_init(n, &parent_sq->pending_tree);
612 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400613}
614
Tejun Heo0049af72013-05-14 13:52:33 -0700615static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400616{
617 struct throtl_grp *tg;
618
Tejun Heo0049af72013-05-14 13:52:33 -0700619 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400620 if (!tg)
621 return;
622
Tejun Heo0049af72013-05-14 13:52:33 -0700623 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400624}
625
Tejun Heo77216b02013-05-14 13:52:36 -0700626static void tg_service_queue_add(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400627{
Tejun Heo77216b02013-05-14 13:52:36 -0700628 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
Tejun Heo0049af72013-05-14 13:52:33 -0700629 struct rb_node **node = &parent_sq->pending_tree.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400630 struct rb_node *parent = NULL;
631 struct throtl_grp *__tg;
632 unsigned long key = tg->disptime;
633 int left = 1;
634
635 while (*node != NULL) {
636 parent = *node;
637 __tg = rb_entry_tg(parent);
638
639 if (time_before(key, __tg->disptime))
640 node = &parent->rb_left;
641 else {
642 node = &parent->rb_right;
643 left = 0;
644 }
645 }
646
647 if (left)
Tejun Heo0049af72013-05-14 13:52:33 -0700648 parent_sq->first_pending = &tg->rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400649
650 rb_link_node(&tg->rb_node, parent, node);
Tejun Heo0049af72013-05-14 13:52:33 -0700651 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400652}
653
Tejun Heo77216b02013-05-14 13:52:36 -0700654static void __throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400655{
Tejun Heo77216b02013-05-14 13:52:36 -0700656 tg_service_queue_add(tg);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700657 tg->flags |= THROTL_TG_PENDING;
Tejun Heo77216b02013-05-14 13:52:36 -0700658 tg->service_queue.parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400659}
660
Tejun Heo77216b02013-05-14 13:52:36 -0700661static void throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400662{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700663 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo77216b02013-05-14 13:52:36 -0700664 __throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400665}
666
Tejun Heo77216b02013-05-14 13:52:36 -0700667static void __throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400668{
Tejun Heo77216b02013-05-14 13:52:36 -0700669 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700670 tg->flags &= ~THROTL_TG_PENDING;
Vivek Goyale43473b2010-09-15 17:06:35 -0400671}
672
Tejun Heo77216b02013-05-14 13:52:36 -0700673static void throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400674{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700675 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo77216b02013-05-14 13:52:36 -0700676 __throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400677}
678
Tejun Heoa9131a22013-05-14 13:52:31 -0700679/* Call with queue lock held */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700680static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
681 unsigned long expires)
Tejun Heoa9131a22013-05-14 13:52:31 -0700682{
Shaohua Li297e3d82017-03-27 10:51:37 -0700683 unsigned long max_expire = jiffies + 8 * sq_to_tg(sq)->td->throtl_slice;
Shaohua Li06cceed2017-03-27 10:51:36 -0700684
685 /*
686 * Since we are adjusting the throttle limit dynamically, the sleep
687 * time calculated according to previous limit might be invalid. It's
688 * possible the cgroup sleep time is very long and no other cgroups
689 * have IO running so notify the limit changes. Make sure the cgroup
690 * doesn't sleep too long to avoid the missed notification.
691 */
692 if (time_after(expires, max_expire))
693 expires = max_expire;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700694 mod_timer(&sq->pending_timer, expires);
695 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
696 expires - jiffies, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700697}
698
Tejun Heo7f52f982013-05-14 13:52:37 -0700699/**
700 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
701 * @sq: the service_queue to schedule dispatch for
702 * @force: force scheduling
703 *
704 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
705 * dispatch time of the first pending child. Returns %true if either timer
706 * is armed or there's no pending child left. %false if the current
707 * dispatch window is still open and the caller should continue
708 * dispatching.
709 *
710 * If @force is %true, the dispatch timer is always scheduled and this
711 * function is guaranteed to return %true. This is to be used when the
712 * caller can't dispatch itself and needs to invoke pending_timer
713 * unconditionally. Note that forced scheduling is likely to induce short
714 * delay before dispatch starts even if @sq->first_pending_disptime is not
715 * in the future and thus shouldn't be used in hot paths.
716 */
717static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
718 bool force)
Vivek Goyale43473b2010-09-15 17:06:35 -0400719{
Tejun Heo6a525602013-05-14 13:52:32 -0700720 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700721 if (!sq->nr_pending)
Tejun Heo7f52f982013-05-14 13:52:37 -0700722 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400723
Tejun Heoc9e03322013-05-14 13:52:32 -0700724 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400725
Tejun Heo69df0ab2013-05-14 13:52:36 -0700726 /* is the next dispatch time in the future? */
Tejun Heo7f52f982013-05-14 13:52:37 -0700727 if (force || time_after(sq->first_pending_disptime, jiffies)) {
Tejun Heo69df0ab2013-05-14 13:52:36 -0700728 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
Tejun Heo7f52f982013-05-14 13:52:37 -0700729 return true;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700730 }
731
Tejun Heo7f52f982013-05-14 13:52:37 -0700732 /* tell the caller to continue dispatching */
733 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400734}
735
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700736static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
737 bool rw, unsigned long start)
738{
739 tg->bytes_disp[rw] = 0;
740 tg->io_disp[rw] = 0;
741
742 /*
743 * Previous slice has expired. We must have trimmed it after last
744 * bio dispatch. That means since start of last slice, we never used
745 * that bandwidth. Do try to make use of that bandwidth while giving
746 * credit.
747 */
748 if (time_after_eq(start, tg->slice_start[rw]))
749 tg->slice_start[rw] = start;
750
Shaohua Li297e3d82017-03-27 10:51:37 -0700751 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700752 throtl_log(&tg->service_queue,
753 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
754 rw == READ ? 'R' : 'W', tg->slice_start[rw],
755 tg->slice_end[rw], jiffies);
756}
757
Tejun Heo0f3457f2013-05-14 13:52:32 -0700758static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400759{
760 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400761 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400762 tg->slice_start[rw] = jiffies;
Shaohua Li297e3d82017-03-27 10:51:37 -0700763 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Tejun Heofda6f272013-05-14 13:52:36 -0700764 throtl_log(&tg->service_queue,
765 "[%c] new slice start=%lu end=%lu jiffies=%lu",
766 rw == READ ? 'R' : 'W', tg->slice_start[rw],
767 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400768}
769
Tejun Heo0f3457f2013-05-14 13:52:32 -0700770static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
771 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100772{
Shaohua Li297e3d82017-03-27 10:51:37 -0700773 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100774}
775
Tejun Heo0f3457f2013-05-14 13:52:32 -0700776static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
777 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400778{
Shaohua Li297e3d82017-03-27 10:51:37 -0700779 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Tejun Heofda6f272013-05-14 13:52:36 -0700780 throtl_log(&tg->service_queue,
781 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
782 rw == READ ? 'R' : 'W', tg->slice_start[rw],
783 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400784}
785
786/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700787static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400788{
789 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200790 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400791
792 return 1;
793}
794
795/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700796static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400797{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200798 unsigned long nr_slices, time_elapsed, io_trim;
799 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400800
801 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
802
803 /*
804 * If bps are unlimited (-1), then time slice don't get
805 * renewed. Don't try to trim the slice if slice is used. A new
806 * slice will start when appropriate.
807 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700808 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400809 return;
810
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100811 /*
812 * A bio has been dispatched. Also adjust slice_end. It might happen
813 * that initially cgroup limit was very low resulting in high
814 * slice_end, but later limit was bumped up and bio was dispached
815 * sooner, then we need to reduce slice_end. A high bogus slice_end
816 * is bad because it does not allow new slice to start.
817 */
818
Shaohua Li297e3d82017-03-27 10:51:37 -0700819 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100820
Vivek Goyale43473b2010-09-15 17:06:35 -0400821 time_elapsed = jiffies - tg->slice_start[rw];
822
Shaohua Li297e3d82017-03-27 10:51:37 -0700823 nr_slices = time_elapsed / tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400824
825 if (!nr_slices)
826 return;
Shaohua Li297e3d82017-03-27 10:51:37 -0700827 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200828 do_div(tmp, HZ);
829 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400830
Shaohua Li297e3d82017-03-27 10:51:37 -0700831 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
832 HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400833
Vivek Goyal8e89d132010-09-15 17:06:37 -0400834 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400835 return;
836
837 if (tg->bytes_disp[rw] >= bytes_trim)
838 tg->bytes_disp[rw] -= bytes_trim;
839 else
840 tg->bytes_disp[rw] = 0;
841
Vivek Goyal8e89d132010-09-15 17:06:37 -0400842 if (tg->io_disp[rw] >= io_trim)
843 tg->io_disp[rw] -= io_trim;
844 else
845 tg->io_disp[rw] = 0;
846
Shaohua Li297e3d82017-03-27 10:51:37 -0700847 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400848
Tejun Heofda6f272013-05-14 13:52:36 -0700849 throtl_log(&tg->service_queue,
850 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
851 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
852 tg->slice_start[rw], tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400853}
854
Tejun Heo0f3457f2013-05-14 13:52:32 -0700855static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
856 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400857{
858 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400859 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400860 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200861 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400862
Vivek Goyal8e89d132010-09-15 17:06:37 -0400863 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400864
Vivek Goyal8e89d132010-09-15 17:06:37 -0400865 /* Slice has just started. Consider one slice interval */
866 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700867 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400868
Shaohua Li297e3d82017-03-27 10:51:37 -0700869 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400870
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200871 /*
872 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
873 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
874 * will allow dispatch after 1 second and after that slice should
875 * have been trimmed.
876 */
877
Shaohua Li9f626e32017-03-27 10:51:30 -0700878 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200879 do_div(tmp, HZ);
880
881 if (tmp > UINT_MAX)
882 io_allowed = UINT_MAX;
883 else
884 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400885
886 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400887 if (wait)
888 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200889 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400890 }
891
Vivek Goyal8e89d132010-09-15 17:06:37 -0400892 /* Calc approx time to dispatch */
Shaohua Li9f626e32017-03-27 10:51:30 -0700893 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ) / tg_iops_limit(tg, rw) + 1;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400894
895 if (jiffy_wait > jiffy_elapsed)
896 jiffy_wait = jiffy_wait - jiffy_elapsed;
897 else
898 jiffy_wait = 1;
899
900 if (wait)
901 *wait = jiffy_wait;
902 return 0;
903}
904
Tejun Heo0f3457f2013-05-14 13:52:32 -0700905static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
906 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400907{
908 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200909 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400910 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyale43473b2010-09-15 17:06:35 -0400911
912 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
913
914 /* Slice has just started. Consider one slice interval */
915 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700916 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400917
Shaohua Li297e3d82017-03-27 10:51:37 -0700918 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyale43473b2010-09-15 17:06:35 -0400919
Shaohua Li9f626e32017-03-27 10:51:30 -0700920 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyal5e901a22010-10-01 21:16:38 +0200921 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200922 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400923
Kent Overstreet4f024f32013-10-11 15:44:27 -0700924 if (tg->bytes_disp[rw] + bio->bi_iter.bi_size <= bytes_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400925 if (wait)
926 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200927 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400928 }
929
930 /* Calc approx time to dispatch */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700931 extra_bytes = tg->bytes_disp[rw] + bio->bi_iter.bi_size - bytes_allowed;
Shaohua Li9f626e32017-03-27 10:51:30 -0700932 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
Vivek Goyale43473b2010-09-15 17:06:35 -0400933
934 if (!jiffy_wait)
935 jiffy_wait = 1;
936
937 /*
938 * This wait time is without taking into consideration the rounding
939 * up we did. Add that time also.
940 */
941 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400942 if (wait)
943 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400944 return 0;
945}
Vivek Goyale43473b2010-09-15 17:06:35 -0400946
Vivek Goyal8e89d132010-09-15 17:06:37 -0400947/*
948 * Returns whether one can dispatch a bio or not. Also returns approx number
949 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
950 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700951static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
952 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400953{
954 bool rw = bio_data_dir(bio);
955 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
956
957 /*
958 * Currently whole state machine of group depends on first bio
959 * queued in the group bio list. So one should not be calling
960 * this function with a different bio if there are other bios
961 * queued.
962 */
Tejun Heo73f0d492013-05-14 13:52:35 -0700963 BUG_ON(tg->service_queue.nr_queued[rw] &&
Tejun Heoc5cc2072013-05-14 13:52:38 -0700964 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
Vivek Goyal8e89d132010-09-15 17:06:37 -0400965
966 /* If tg->bps = -1, then BW is unlimited */
Shaohua Li9f626e32017-03-27 10:51:30 -0700967 if (tg_bps_limit(tg, rw) == U64_MAX &&
968 tg_iops_limit(tg, rw) == UINT_MAX) {
Vivek Goyal8e89d132010-09-15 17:06:37 -0400969 if (wait)
970 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200971 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400972 }
973
974 /*
975 * If previous slice expired, start a new one otherwise renew/extend
976 * existing slice to make sure it is at least throtl_slice interval
Vivek Goyal164c80e2016-09-19 15:12:41 -0600977 * long since now. New slice is started only for empty throttle group.
978 * If there is queued bio, that means there should be an active
979 * slice and it should be extended instead.
Vivek Goyal8e89d132010-09-15 17:06:37 -0400980 */
Vivek Goyal164c80e2016-09-19 15:12:41 -0600981 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
Tejun Heo0f3457f2013-05-14 13:52:32 -0700982 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400983 else {
Shaohua Li297e3d82017-03-27 10:51:37 -0700984 if (time_before(tg->slice_end[rw],
985 jiffies + tg->td->throtl_slice))
986 throtl_extend_slice(tg, rw,
987 jiffies + tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400988 }
989
Tejun Heo0f3457f2013-05-14 13:52:32 -0700990 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
991 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -0400992 if (wait)
993 *wait = 0;
994 return 1;
995 }
996
997 max_wait = max(bps_wait, iops_wait);
998
999 if (wait)
1000 *wait = max_wait;
1001
1002 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001003 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001004
1005 return 0;
1006}
1007
1008static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1009{
1010 bool rw = bio_data_dir(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001011
1012 /* Charge the bio to the group */
Kent Overstreet4f024f32013-10-11 15:44:27 -07001013 tg->bytes_disp[rw] += bio->bi_iter.bi_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001014 tg->io_disp[rw]++;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001015 tg->last_bytes_disp[rw] += bio->bi_iter.bi_size;
1016 tg->last_io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001017
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001018 /*
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001019 * BIO_THROTTLED is used to prevent the same bio to be throttled
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001020 * more than once as a throttled bio will go through blk-throtl the
1021 * second time when it eventually gets issued. Set it when a bio
1022 * is being charged to a tg.
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001023 */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001024 if (!bio_flagged(bio, BIO_THROTTLED))
1025 bio_set_flag(bio, BIO_THROTTLED);
Vivek Goyale43473b2010-09-15 17:06:35 -04001026}
1027
Tejun Heoc5cc2072013-05-14 13:52:38 -07001028/**
1029 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1030 * @bio: bio to add
1031 * @qn: qnode to use
1032 * @tg: the target throtl_grp
1033 *
1034 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1035 * tg->qnode_on_self[] is used.
1036 */
1037static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1038 struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001039{
Tejun Heo73f0d492013-05-14 13:52:35 -07001040 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001041 bool rw = bio_data_dir(bio);
1042
Tejun Heoc5cc2072013-05-14 13:52:38 -07001043 if (!qn)
1044 qn = &tg->qnode_on_self[rw];
1045
Tejun Heo0e9f4162013-05-14 13:52:35 -07001046 /*
1047 * If @tg doesn't currently have any bios queued in the same
1048 * direction, queueing @bio can change when @tg should be
1049 * dispatched. Mark that @tg was empty. This is automatically
1050 * cleaered on the next tg_update_disptime().
1051 */
1052 if (!sq->nr_queued[rw])
1053 tg->flags |= THROTL_TG_WAS_EMPTY;
1054
Tejun Heoc5cc2072013-05-14 13:52:38 -07001055 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1056
Tejun Heo73f0d492013-05-14 13:52:35 -07001057 sq->nr_queued[rw]++;
Tejun Heo77216b02013-05-14 13:52:36 -07001058 throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001059}
1060
Tejun Heo77216b02013-05-14 13:52:36 -07001061static void tg_update_disptime(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001062{
Tejun Heo73f0d492013-05-14 13:52:35 -07001063 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001064 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1065 struct bio *bio;
1066
Markus Elfringd609af32017-01-21 22:15:33 +01001067 bio = throtl_peek_queued(&sq->queued[READ]);
1068 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001069 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001070
Markus Elfringd609af32017-01-21 22:15:33 +01001071 bio = throtl_peek_queued(&sq->queued[WRITE]);
1072 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001073 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001074
1075 min_wait = min(read_wait, write_wait);
1076 disptime = jiffies + min_wait;
1077
Vivek Goyale43473b2010-09-15 17:06:35 -04001078 /* Update dispatch time */
Tejun Heo77216b02013-05-14 13:52:36 -07001079 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001080 tg->disptime = disptime;
Tejun Heo77216b02013-05-14 13:52:36 -07001081 throtl_enqueue_tg(tg);
Tejun Heo0e9f4162013-05-14 13:52:35 -07001082
1083 /* see throtl_add_bio_tg() */
1084 tg->flags &= ~THROTL_TG_WAS_EMPTY;
Vivek Goyale43473b2010-09-15 17:06:35 -04001085}
1086
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001087static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1088 struct throtl_grp *parent_tg, bool rw)
1089{
1090 if (throtl_slice_used(parent_tg, rw)) {
1091 throtl_start_new_slice_with_credit(parent_tg, rw,
1092 child_tg->slice_start[rw]);
1093 }
1094
1095}
1096
Tejun Heo77216b02013-05-14 13:52:36 -07001097static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -04001098{
Tejun Heo73f0d492013-05-14 13:52:35 -07001099 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001100 struct throtl_service_queue *parent_sq = sq->parent_sq;
1101 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001102 struct throtl_grp *tg_to_put = NULL;
Vivek Goyale43473b2010-09-15 17:06:35 -04001103 struct bio *bio;
1104
Tejun Heoc5cc2072013-05-14 13:52:38 -07001105 /*
1106 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1107 * from @tg may put its reference and @parent_sq might end up
1108 * getting released prematurely. Remember the tg to put and put it
1109 * after @bio is transferred to @parent_sq.
1110 */
1111 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
Tejun Heo73f0d492013-05-14 13:52:35 -07001112 sq->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -04001113
1114 throtl_charge_bio(tg, bio);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001115
1116 /*
1117 * If our parent is another tg, we just need to transfer @bio to
1118 * the parent using throtl_add_bio_tg(). If our parent is
1119 * @td->service_queue, @bio is ready to be issued. Put it on its
1120 * bio_lists[] and decrease total number queued. The caller is
1121 * responsible for issuing these bios.
1122 */
1123 if (parent_tg) {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001124 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001125 start_parent_slice_with_credit(tg, parent_tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001126 } else {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001127 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1128 &parent_sq->queued[rw]);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001129 BUG_ON(tg->td->nr_queued[rw] <= 0);
1130 tg->td->nr_queued[rw]--;
1131 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001132
Tejun Heo0f3457f2013-05-14 13:52:32 -07001133 throtl_trim_slice(tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001134
Tejun Heoc5cc2072013-05-14 13:52:38 -07001135 if (tg_to_put)
1136 blkg_put(tg_to_blkg(tg_to_put));
Vivek Goyale43473b2010-09-15 17:06:35 -04001137}
1138
Tejun Heo77216b02013-05-14 13:52:36 -07001139static int throtl_dispatch_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001140{
Tejun Heo73f0d492013-05-14 13:52:35 -07001141 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001142 unsigned int nr_reads = 0, nr_writes = 0;
1143 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +01001144 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -04001145 struct bio *bio;
1146
1147 /* Try to dispatch 75% READS and 25% WRITES */
1148
Tejun Heoc5cc2072013-05-14 13:52:38 -07001149 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001150 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001151
Tejun Heo77216b02013-05-14 13:52:36 -07001152 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001153 nr_reads++;
1154
1155 if (nr_reads >= max_nr_reads)
1156 break;
1157 }
1158
Tejun Heoc5cc2072013-05-14 13:52:38 -07001159 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001160 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001161
Tejun Heo77216b02013-05-14 13:52:36 -07001162 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001163 nr_writes++;
1164
1165 if (nr_writes >= max_nr_writes)
1166 break;
1167 }
1168
1169 return nr_reads + nr_writes;
1170}
1171
Tejun Heo651930b2013-05-14 13:52:35 -07001172static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -04001173{
1174 unsigned int nr_disp = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001175
1176 while (1) {
Tejun Heo73f0d492013-05-14 13:52:35 -07001177 struct throtl_grp *tg = throtl_rb_first(parent_sq);
1178 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001179
1180 if (!tg)
1181 break;
1182
1183 if (time_before(jiffies, tg->disptime))
1184 break;
1185
Tejun Heo77216b02013-05-14 13:52:36 -07001186 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001187
Tejun Heo77216b02013-05-14 13:52:36 -07001188 nr_disp += throtl_dispatch_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001189
Tejun Heo73f0d492013-05-14 13:52:35 -07001190 if (sq->nr_queued[0] || sq->nr_queued[1])
Tejun Heo77216b02013-05-14 13:52:36 -07001191 tg_update_disptime(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001192
1193 if (nr_disp >= throtl_quantum)
1194 break;
1195 }
1196
1197 return nr_disp;
1198}
1199
Shaohua Lic79892c2017-03-27 10:51:34 -07001200static bool throtl_can_upgrade(struct throtl_data *td,
1201 struct throtl_grp *this_tg);
Tejun Heo6e1a5702013-05-14 13:52:37 -07001202/**
1203 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1204 * @arg: the throtl_service_queue being serviced
1205 *
1206 * This timer is armed when a child throtl_grp with active bio's become
1207 * pending and queued on the service_queue's pending_tree and expires when
1208 * the first child throtl_grp should be dispatched. This function
Tejun Heo2e48a532013-05-14 13:52:38 -07001209 * dispatches bio's from the children throtl_grps to the parent
1210 * service_queue.
1211 *
1212 * If the parent's parent is another throtl_grp, dispatching is propagated
1213 * by either arming its pending_timer or repeating dispatch directly. If
1214 * the top-level service_tree is reached, throtl_data->dispatch_work is
1215 * kicked so that the ready bio's are issued.
Tejun Heo6e1a5702013-05-14 13:52:37 -07001216 */
Tejun Heo69df0ab2013-05-14 13:52:36 -07001217static void throtl_pending_timer_fn(unsigned long arg)
1218{
1219 struct throtl_service_queue *sq = (void *)arg;
Tejun Heo2e48a532013-05-14 13:52:38 -07001220 struct throtl_grp *tg = sq_to_tg(sq);
Tejun Heo69df0ab2013-05-14 13:52:36 -07001221 struct throtl_data *td = sq_to_td(sq);
Tejun Heocb761992013-05-14 13:52:31 -07001222 struct request_queue *q = td->queue;
Tejun Heo2e48a532013-05-14 13:52:38 -07001223 struct throtl_service_queue *parent_sq;
1224 bool dispatched;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001225 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001226
1227 spin_lock_irq(q->queue_lock);
Shaohua Lic79892c2017-03-27 10:51:34 -07001228 if (throtl_can_upgrade(td, NULL))
1229 throtl_upgrade_state(td);
1230
Tejun Heo2e48a532013-05-14 13:52:38 -07001231again:
1232 parent_sq = sq->parent_sq;
1233 dispatched = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001234
Tejun Heo7f52f982013-05-14 13:52:37 -07001235 while (true) {
1236 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo2e48a532013-05-14 13:52:38 -07001237 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1238 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04001239
Tejun Heo7f52f982013-05-14 13:52:37 -07001240 ret = throtl_select_dispatch(sq);
1241 if (ret) {
Tejun Heo7f52f982013-05-14 13:52:37 -07001242 throtl_log(sq, "bios disp=%u", ret);
1243 dispatched = true;
Tejun Heo651930b2013-05-14 13:52:35 -07001244 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001245
Tejun Heo7f52f982013-05-14 13:52:37 -07001246 if (throtl_schedule_next_dispatch(sq, false))
1247 break;
1248
1249 /* this dispatch windows is still open, relax and repeat */
1250 spin_unlock_irq(q->queue_lock);
1251 cpu_relax();
1252 spin_lock_irq(q->queue_lock);
1253 }
Tejun Heo6a525602013-05-14 13:52:32 -07001254
Tejun Heo2e48a532013-05-14 13:52:38 -07001255 if (!dispatched)
1256 goto out_unlock;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001257
Tejun Heo2e48a532013-05-14 13:52:38 -07001258 if (parent_sq) {
1259 /* @parent_sq is another throl_grp, propagate dispatch */
1260 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1261 tg_update_disptime(tg);
1262 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1263 /* window is already open, repeat dispatching */
1264 sq = parent_sq;
1265 tg = sq_to_tg(sq);
1266 goto again;
1267 }
1268 }
1269 } else {
1270 /* reached the top-level, queue issueing */
1271 queue_work(kthrotld_workqueue, &td->dispatch_work);
1272 }
1273out_unlock:
Tejun Heo6e1a5702013-05-14 13:52:37 -07001274 spin_unlock_irq(q->queue_lock);
1275}
1276
1277/**
1278 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1279 * @work: work item being executed
1280 *
1281 * This function is queued for execution when bio's reach the bio_lists[]
1282 * of throtl_data->service_queue. Those bio's are ready and issued by this
1283 * function.
1284 */
Fabian Frederick8876e142014-04-17 21:41:16 +02001285static void blk_throtl_dispatch_work_fn(struct work_struct *work)
Tejun Heo6e1a5702013-05-14 13:52:37 -07001286{
1287 struct throtl_data *td = container_of(work, struct throtl_data,
1288 dispatch_work);
1289 struct throtl_service_queue *td_sq = &td->service_queue;
1290 struct request_queue *q = td->queue;
1291 struct bio_list bio_list_on_stack;
1292 struct bio *bio;
1293 struct blk_plug plug;
1294 int rw;
1295
1296 bio_list_init(&bio_list_on_stack);
1297
1298 spin_lock_irq(q->queue_lock);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001299 for (rw = READ; rw <= WRITE; rw++)
1300 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1301 bio_list_add(&bio_list_on_stack, bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001302 spin_unlock_irq(q->queue_lock);
1303
Tejun Heo6e1a5702013-05-14 13:52:37 -07001304 if (!bio_list_empty(&bio_list_on_stack)) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001305 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001306 while((bio = bio_list_pop(&bio_list_on_stack)))
1307 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001308 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001309 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001310}
1311
Tejun Heof95a04a2012-04-16 13:57:26 -07001312static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1313 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001314{
Tejun Heof95a04a2012-04-16 13:57:26 -07001315 struct throtl_grp *tg = pd_to_tg(pd);
1316 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001317
Shaohua Li2ab54922017-03-27 10:51:29 -07001318 if (v == U64_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001319 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001320 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001321}
1322
Tejun Heof95a04a2012-04-16 13:57:26 -07001323static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1324 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001325{
Tejun Heof95a04a2012-04-16 13:57:26 -07001326 struct throtl_grp *tg = pd_to_tg(pd);
1327 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001328
Shaohua Li2ab54922017-03-27 10:51:29 -07001329 if (v == UINT_MAX)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001330 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001331 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001332}
1333
Tejun Heo2da8ca82013-12-05 12:28:04 -05001334static int tg_print_conf_u64(struct seq_file *sf, void *v)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001335{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001336 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1337 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001338 return 0;
1339}
1340
Tejun Heo2da8ca82013-12-05 12:28:04 -05001341static int tg_print_conf_uint(struct seq_file *sf, void *v)
Vivek Goyale43473b2010-09-15 17:06:35 -04001342{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001343 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1344 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001345 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001346}
1347
Tejun Heo69948b02015-08-18 14:55:32 -07001348static void tg_conf_updated(struct throtl_grp *tg)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001349{
Tejun Heo69948b02015-08-18 14:55:32 -07001350 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo492eb212013-08-08 20:11:25 -04001351 struct cgroup_subsys_state *pos_css;
Tejun Heo69948b02015-08-18 14:55:32 -07001352 struct blkcg_gq *blkg;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001353
Tejun Heofda6f272013-05-14 13:52:36 -07001354 throtl_log(&tg->service_queue,
1355 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Shaohua Li9f626e32017-03-27 10:51:30 -07001356 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1357 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
Tejun Heo632b4492013-05-14 13:52:31 -07001358
1359 /*
Tejun Heo693e7512013-05-14 13:52:38 -07001360 * Update has_rules[] flags for the updated tg's subtree. A tg is
1361 * considered to have rules if either the tg itself or any of its
1362 * ancestors has rules. This identifies groups without any
1363 * restrictions in the whole hierarchy and allows them to bypass
1364 * blk-throttle.
1365 */
Tejun Heo69948b02015-08-18 14:55:32 -07001366 blkg_for_each_descendant_pre(blkg, pos_css, tg_to_blkg(tg))
Tejun Heo693e7512013-05-14 13:52:38 -07001367 tg_update_has_rules(blkg_to_tg(blkg));
1368
1369 /*
Tejun Heo632b4492013-05-14 13:52:31 -07001370 * We're already holding queue_lock and know @tg is valid. Let's
1371 * apply the new config directly.
1372 *
1373 * Restart the slices for both READ and WRITES. It might happen
1374 * that a group's limit are dropped suddenly and we don't want to
1375 * account recently dispatched IO with new low rate.
1376 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001377 throtl_start_new_slice(tg, 0);
1378 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -07001379
Tejun Heo5b2c16a2013-05-14 13:52:32 -07001380 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo77216b02013-05-14 13:52:36 -07001381 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07001382 throtl_schedule_next_dispatch(sq->parent_sq, true);
Tejun Heo632b4492013-05-14 13:52:31 -07001383 }
Tejun Heo69948b02015-08-18 14:55:32 -07001384}
Tejun Heo60c2bc22012-04-01 14:38:43 -07001385
Tejun Heo69948b02015-08-18 14:55:32 -07001386static ssize_t tg_set_conf(struct kernfs_open_file *of,
1387 char *buf, size_t nbytes, loff_t off, bool is_u64)
1388{
1389 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1390 struct blkg_conf_ctx ctx;
1391 struct throtl_grp *tg;
1392 int ret;
1393 u64 v;
1394
1395 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1396 if (ret)
1397 return ret;
1398
1399 ret = -EINVAL;
1400 if (sscanf(ctx.body, "%llu", &v) != 1)
1401 goto out_finish;
1402 if (!v)
Shaohua Li2ab54922017-03-27 10:51:29 -07001403 v = U64_MAX;
Tejun Heo69948b02015-08-18 14:55:32 -07001404
1405 tg = blkg_to_tg(ctx.blkg);
1406
1407 if (is_u64)
1408 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1409 else
1410 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
1411
1412 tg_conf_updated(tg);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001413 ret = 0;
1414out_finish:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001415 blkg_conf_finish(&ctx);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001416 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001417}
1418
Tejun Heo451af502014-05-13 12:16:21 -04001419static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1420 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001421{
Tejun Heo451af502014-05-13 12:16:21 -04001422 return tg_set_conf(of, buf, nbytes, off, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001423}
1424
Tejun Heo451af502014-05-13 12:16:21 -04001425static ssize_t tg_set_conf_uint(struct kernfs_open_file *of,
1426 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001427{
Tejun Heo451af502014-05-13 12:16:21 -04001428 return tg_set_conf(of, buf, nbytes, off, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001429}
1430
Tejun Heo880f50e2015-08-18 14:55:30 -07001431static struct cftype throtl_legacy_files[] = {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001432 {
1433 .name = "throttle.read_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001434 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001435 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001436 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001437 },
1438 {
1439 .name = "throttle.write_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001440 .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001441 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001442 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001443 },
1444 {
1445 .name = "throttle.read_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001446 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001447 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001448 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001449 },
1450 {
1451 .name = "throttle.write_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001452 .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001453 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001454 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001455 },
1456 {
1457 .name = "throttle.io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001458 .private = (unsigned long)&blkcg_policy_throtl,
1459 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001460 },
1461 {
1462 .name = "throttle.io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001463 .private = (unsigned long)&blkcg_policy_throtl,
1464 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001465 },
1466 { } /* terminate */
1467};
1468
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001469static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001470 int off)
1471{
1472 struct throtl_grp *tg = pd_to_tg(pd);
1473 const char *dname = blkg_dev_name(pd->blkg);
1474 char bufs[4][21] = { "max", "max", "max", "max" };
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001475 u64 bps_dft;
1476 unsigned int iops_dft;
Shaohua Liada75b62017-03-27 10:51:42 -07001477 char idle_time[26] = "";
Shaohua Liec809912017-03-27 10:51:44 -07001478 char latency_time[26] = "";
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001479
1480 if (!dname)
1481 return 0;
Shaohua Li9f626e32017-03-27 10:51:30 -07001482
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001483 if (off == LIMIT_LOW) {
1484 bps_dft = 0;
1485 iops_dft = 0;
1486 } else {
1487 bps_dft = U64_MAX;
1488 iops_dft = UINT_MAX;
1489 }
1490
1491 if (tg->bps_conf[READ][off] == bps_dft &&
1492 tg->bps_conf[WRITE][off] == bps_dft &&
1493 tg->iops_conf[READ][off] == iops_dft &&
Shaohua Liada75b62017-03-27 10:51:42 -07001494 tg->iops_conf[WRITE][off] == iops_dft &&
Shaohua Liec809912017-03-27 10:51:44 -07001495 (off != LIMIT_LOW ||
1496 (tg->idletime_threshold == tg->td->dft_idletime_threshold &&
1497 tg->latency_target == DFL_LATENCY_TARGET)))
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001498 return 0;
1499
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001500 if (tg->bps_conf[READ][off] != bps_dft)
Shaohua Li9f626e32017-03-27 10:51:30 -07001501 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001502 tg->bps_conf[READ][off]);
1503 if (tg->bps_conf[WRITE][off] != bps_dft)
Shaohua Li9f626e32017-03-27 10:51:30 -07001504 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001505 tg->bps_conf[WRITE][off]);
1506 if (tg->iops_conf[READ][off] != iops_dft)
Shaohua Li9f626e32017-03-27 10:51:30 -07001507 snprintf(bufs[2], sizeof(bufs[2]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001508 tg->iops_conf[READ][off]);
1509 if (tg->iops_conf[WRITE][off] != iops_dft)
Shaohua Li9f626e32017-03-27 10:51:30 -07001510 snprintf(bufs[3], sizeof(bufs[3]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001511 tg->iops_conf[WRITE][off]);
Shaohua Liada75b62017-03-27 10:51:42 -07001512 if (off == LIMIT_LOW) {
1513 if (tg->idletime_threshold == ULONG_MAX)
1514 strcpy(idle_time, " idle=max");
1515 else
1516 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
1517 tg->idletime_threshold);
Shaohua Liec809912017-03-27 10:51:44 -07001518
1519 if (tg->latency_target == ULONG_MAX)
1520 strcpy(latency_time, " latency=max");
1521 else
1522 snprintf(latency_time, sizeof(latency_time),
1523 " latency=%lu", tg->latency_target);
Shaohua Liada75b62017-03-27 10:51:42 -07001524 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001525
Shaohua Liec809912017-03-27 10:51:44 -07001526 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1527 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1528 latency_time);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001529 return 0;
1530}
1531
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001532static int tg_print_limit(struct seq_file *sf, void *v)
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001533{
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001534 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001535 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1536 return 0;
1537}
1538
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001539static ssize_t tg_set_limit(struct kernfs_open_file *of,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001540 char *buf, size_t nbytes, loff_t off)
1541{
1542 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1543 struct blkg_conf_ctx ctx;
1544 struct throtl_grp *tg;
1545 u64 v[4];
Shaohua Liada75b62017-03-27 10:51:42 -07001546 unsigned long idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001547 unsigned long latency_time;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001548 int ret;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001549 int index = of_cft(of)->private;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001550
1551 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1552 if (ret)
1553 return ret;
1554
1555 tg = blkg_to_tg(ctx.blkg);
1556
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001557 v[0] = tg->bps_conf[READ][index];
1558 v[1] = tg->bps_conf[WRITE][index];
1559 v[2] = tg->iops_conf[READ][index];
1560 v[3] = tg->iops_conf[WRITE][index];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001561
Shaohua Liada75b62017-03-27 10:51:42 -07001562 idle_time = tg->idletime_threshold;
Shaohua Liec809912017-03-27 10:51:44 -07001563 latency_time = tg->latency_target;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001564 while (true) {
1565 char tok[27]; /* wiops=18446744073709551616 */
1566 char *p;
Shaohua Li2ab54922017-03-27 10:51:29 -07001567 u64 val = U64_MAX;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001568 int len;
1569
1570 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1571 break;
1572 if (tok[0] == '\0')
1573 break;
1574 ctx.body += len;
1575
1576 ret = -EINVAL;
1577 p = tok;
1578 strsep(&p, "=");
1579 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1580 goto out_finish;
1581
1582 ret = -ERANGE;
1583 if (!val)
1584 goto out_finish;
1585
1586 ret = -EINVAL;
1587 if (!strcmp(tok, "rbps"))
1588 v[0] = val;
1589 else if (!strcmp(tok, "wbps"))
1590 v[1] = val;
1591 else if (!strcmp(tok, "riops"))
1592 v[2] = min_t(u64, val, UINT_MAX);
1593 else if (!strcmp(tok, "wiops"))
1594 v[3] = min_t(u64, val, UINT_MAX);
Shaohua Liada75b62017-03-27 10:51:42 -07001595 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1596 idle_time = val;
Shaohua Liec809912017-03-27 10:51:44 -07001597 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1598 latency_time = val;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001599 else
1600 goto out_finish;
1601 }
1602
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001603 tg->bps_conf[READ][index] = v[0];
1604 tg->bps_conf[WRITE][index] = v[1];
1605 tg->iops_conf[READ][index] = v[2];
1606 tg->iops_conf[WRITE][index] = v[3];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001607
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001608 if (index == LIMIT_MAX) {
1609 tg->bps[READ][index] = v[0];
1610 tg->bps[WRITE][index] = v[1];
1611 tg->iops[READ][index] = v[2];
1612 tg->iops[WRITE][index] = v[3];
1613 }
1614 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1615 tg->bps_conf[READ][LIMIT_MAX]);
1616 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1617 tg->bps_conf[WRITE][LIMIT_MAX]);
1618 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1619 tg->iops_conf[READ][LIMIT_MAX]);
1620 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1621 tg->iops_conf[WRITE][LIMIT_MAX]);
1622
1623 if (index == LIMIT_LOW) {
1624 blk_throtl_update_limit_valid(tg->td);
1625 if (tg->td->limit_valid[LIMIT_LOW])
1626 tg->td->limit_index = LIMIT_LOW;
Shaohua Liada75b62017-03-27 10:51:42 -07001627 tg->idletime_threshold = (idle_time == ULONG_MAX) ?
1628 ULONG_MAX : idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001629 tg->latency_target = (latency_time == ULONG_MAX) ?
1630 ULONG_MAX : latency_time;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001631 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001632 tg_conf_updated(tg);
1633 ret = 0;
1634out_finish:
1635 blkg_conf_finish(&ctx);
1636 return ret ?: nbytes;
1637}
1638
1639static struct cftype throtl_files[] = {
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001640#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1641 {
1642 .name = "low",
1643 .flags = CFTYPE_NOT_ON_ROOT,
1644 .seq_show = tg_print_limit,
1645 .write = tg_set_limit,
1646 .private = LIMIT_LOW,
1647 },
1648#endif
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001649 {
1650 .name = "max",
1651 .flags = CFTYPE_NOT_ON_ROOT,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001652 .seq_show = tg_print_limit,
1653 .write = tg_set_limit,
1654 .private = LIMIT_MAX,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001655 },
1656 { } /* terminate */
1657};
1658
Vivek Goyalda527772011-03-02 19:05:33 -05001659static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001660{
1661 struct throtl_data *td = q->td;
1662
Tejun Heo69df0ab2013-05-14 13:52:36 -07001663 cancel_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001664}
1665
Tejun Heo3c798392012-04-16 13:57:25 -07001666static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001667 .dfl_cftypes = throtl_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001668 .legacy_cftypes = throtl_legacy_files,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001669
Tejun Heo001bea72015-08-18 14:55:11 -07001670 .pd_alloc_fn = throtl_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001671 .pd_init_fn = throtl_pd_init,
Tejun Heo693e7512013-05-14 13:52:38 -07001672 .pd_online_fn = throtl_pd_online,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001673 .pd_offline_fn = throtl_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07001674 .pd_free_fn = throtl_pd_free,
Vivek Goyale43473b2010-09-15 17:06:35 -04001675};
1676
Shaohua Li3f0abd82017-03-27 10:51:35 -07001677static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1678{
1679 unsigned long rtime = jiffies, wtime = jiffies;
1680
1681 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1682 rtime = tg->last_low_overflow_time[READ];
1683 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1684 wtime = tg->last_low_overflow_time[WRITE];
1685 return min(rtime, wtime);
1686}
1687
1688/* tg should not be an intermediate node */
1689static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1690{
1691 struct throtl_service_queue *parent_sq;
1692 struct throtl_grp *parent = tg;
1693 unsigned long ret = __tg_last_low_overflow_time(tg);
1694
1695 while (true) {
1696 parent_sq = parent->service_queue.parent_sq;
1697 parent = sq_to_tg(parent_sq);
1698 if (!parent)
1699 break;
1700
1701 /*
1702 * The parent doesn't have low limit, it always reaches low
1703 * limit. Its overflow time is useless for children
1704 */
1705 if (!parent->bps[READ][LIMIT_LOW] &&
1706 !parent->iops[READ][LIMIT_LOW] &&
1707 !parent->bps[WRITE][LIMIT_LOW] &&
1708 !parent->iops[WRITE][LIMIT_LOW])
1709 continue;
1710 if (time_after(__tg_last_low_overflow_time(parent), ret))
1711 ret = __tg_last_low_overflow_time(parent);
1712 }
1713 return ret;
1714}
1715
Shaohua Li9e234ee2017-03-27 10:51:41 -07001716static bool throtl_tg_is_idle(struct throtl_grp *tg)
1717{
1718 /*
1719 * cgroup is idle if:
1720 * - single idle is too long, longer than a fixed value (in case user
1721 * configure a too big threshold) or 4 times of slice
1722 * - average think time is more than threshold
1723 */
1724 unsigned long time = jiffies_to_usecs(4 * tg->td->throtl_slice);
1725
1726 time = min_t(unsigned long, MAX_IDLE_TIME, time);
1727 return (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1728 tg->avg_idletime > tg->idletime_threshold;
1729}
1730
Shaohua Lic79892c2017-03-27 10:51:34 -07001731static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1732{
1733 struct throtl_service_queue *sq = &tg->service_queue;
1734 bool read_limit, write_limit;
1735
1736 /*
1737 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1738 * reaches), it's ok to upgrade to next limit
1739 */
1740 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1741 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1742 if (!read_limit && !write_limit)
1743 return true;
1744 if (read_limit && sq->nr_queued[READ] &&
1745 (!write_limit || sq->nr_queued[WRITE]))
1746 return true;
1747 if (write_limit && sq->nr_queued[WRITE] &&
1748 (!read_limit || sq->nr_queued[READ]))
1749 return true;
Shaohua Liaec24242017-03-27 10:51:39 -07001750
1751 if (time_after_eq(jiffies,
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001752 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1753 throtl_tg_is_idle(tg))
Shaohua Liaec24242017-03-27 10:51:39 -07001754 return true;
Shaohua Lic79892c2017-03-27 10:51:34 -07001755 return false;
1756}
1757
1758static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1759{
1760 while (true) {
1761 if (throtl_tg_can_upgrade(tg))
1762 return true;
1763 tg = sq_to_tg(tg->service_queue.parent_sq);
1764 if (!tg || !tg_to_blkg(tg)->parent)
1765 return false;
1766 }
1767 return false;
1768}
1769
1770static bool throtl_can_upgrade(struct throtl_data *td,
1771 struct throtl_grp *this_tg)
1772{
1773 struct cgroup_subsys_state *pos_css;
1774 struct blkcg_gq *blkg;
1775
1776 if (td->limit_index != LIMIT_LOW)
1777 return false;
1778
Shaohua Li297e3d82017-03-27 10:51:37 -07001779 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001780 return false;
1781
Shaohua Lic79892c2017-03-27 10:51:34 -07001782 rcu_read_lock();
1783 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1784 struct throtl_grp *tg = blkg_to_tg(blkg);
1785
1786 if (tg == this_tg)
1787 continue;
1788 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1789 continue;
1790 if (!throtl_hierarchy_can_upgrade(tg)) {
1791 rcu_read_unlock();
1792 return false;
1793 }
1794 }
1795 rcu_read_unlock();
1796 return true;
1797}
1798
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001799static void throtl_upgrade_check(struct throtl_grp *tg)
1800{
1801 unsigned long now = jiffies;
1802
1803 if (tg->td->limit_index != LIMIT_LOW)
1804 return;
1805
1806 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1807 return;
1808
1809 tg->last_check_time = now;
1810
1811 if (!time_after_eq(now,
1812 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1813 return;
1814
1815 if (throtl_can_upgrade(tg->td, NULL))
1816 throtl_upgrade_state(tg->td);
1817}
1818
Shaohua Lic79892c2017-03-27 10:51:34 -07001819static void throtl_upgrade_state(struct throtl_data *td)
1820{
1821 struct cgroup_subsys_state *pos_css;
1822 struct blkcg_gq *blkg;
1823
1824 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001825 td->low_upgrade_time = jiffies;
Shaohua Li7394e312017-03-27 10:51:40 -07001826 td->scale = 0;
Shaohua Lic79892c2017-03-27 10:51:34 -07001827 rcu_read_lock();
1828 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1829 struct throtl_grp *tg = blkg_to_tg(blkg);
1830 struct throtl_service_queue *sq = &tg->service_queue;
1831
1832 tg->disptime = jiffies - 1;
1833 throtl_select_dispatch(sq);
1834 throtl_schedule_next_dispatch(sq, false);
1835 }
1836 rcu_read_unlock();
1837 throtl_select_dispatch(&td->service_queue);
1838 throtl_schedule_next_dispatch(&td->service_queue, false);
1839 queue_work(kthrotld_workqueue, &td->dispatch_work);
1840}
1841
Shaohua Li3f0abd82017-03-27 10:51:35 -07001842static void throtl_downgrade_state(struct throtl_data *td, int new)
1843{
Shaohua Li7394e312017-03-27 10:51:40 -07001844 td->scale /= 2;
1845
1846 if (td->scale) {
1847 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1848 return;
1849 }
1850
Shaohua Li3f0abd82017-03-27 10:51:35 -07001851 td->limit_index = new;
1852 td->low_downgrade_time = jiffies;
1853}
1854
1855static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1856{
1857 struct throtl_data *td = tg->td;
1858 unsigned long now = jiffies;
1859
1860 /*
1861 * If cgroup is below low limit, consider downgrade and throttle other
1862 * cgroups
1863 */
Shaohua Li297e3d82017-03-27 10:51:37 -07001864 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1865 time_after_eq(now, tg_last_low_overflow_time(tg) +
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001866 td->throtl_slice) &&
1867 (!throtl_tg_is_idle(tg) ||
1868 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001869 return true;
1870 return false;
1871}
1872
1873static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1874{
1875 while (true) {
1876 if (!throtl_tg_can_downgrade(tg))
1877 return false;
1878 tg = sq_to_tg(tg->service_queue.parent_sq);
1879 if (!tg || !tg_to_blkg(tg)->parent)
1880 break;
1881 }
1882 return true;
1883}
1884
1885static void throtl_downgrade_check(struct throtl_grp *tg)
1886{
1887 uint64_t bps;
1888 unsigned int iops;
1889 unsigned long elapsed_time;
1890 unsigned long now = jiffies;
1891
1892 if (tg->td->limit_index != LIMIT_MAX ||
1893 !tg->td->limit_valid[LIMIT_LOW])
1894 return;
1895 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1896 return;
Shaohua Li297e3d82017-03-27 10:51:37 -07001897 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001898 return;
1899
1900 elapsed_time = now - tg->last_check_time;
1901 tg->last_check_time = now;
1902
Shaohua Li297e3d82017-03-27 10:51:37 -07001903 if (time_before(now, tg_last_low_overflow_time(tg) +
1904 tg->td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001905 return;
1906
1907 if (tg->bps[READ][LIMIT_LOW]) {
1908 bps = tg->last_bytes_disp[READ] * HZ;
1909 do_div(bps, elapsed_time);
1910 if (bps >= tg->bps[READ][LIMIT_LOW])
1911 tg->last_low_overflow_time[READ] = now;
1912 }
1913
1914 if (tg->bps[WRITE][LIMIT_LOW]) {
1915 bps = tg->last_bytes_disp[WRITE] * HZ;
1916 do_div(bps, elapsed_time);
1917 if (bps >= tg->bps[WRITE][LIMIT_LOW])
1918 tg->last_low_overflow_time[WRITE] = now;
1919 }
1920
1921 if (tg->iops[READ][LIMIT_LOW]) {
1922 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
1923 if (iops >= tg->iops[READ][LIMIT_LOW])
1924 tg->last_low_overflow_time[READ] = now;
1925 }
1926
1927 if (tg->iops[WRITE][LIMIT_LOW]) {
1928 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
1929 if (iops >= tg->iops[WRITE][LIMIT_LOW])
1930 tg->last_low_overflow_time[WRITE] = now;
1931 }
1932
1933 /*
1934 * If cgroup is below low limit, consider downgrade and throttle other
1935 * cgroups
1936 */
1937 if (throtl_hierarchy_can_downgrade(tg))
1938 throtl_downgrade_state(tg->td, LIMIT_LOW);
1939
1940 tg->last_bytes_disp[READ] = 0;
1941 tg->last_bytes_disp[WRITE] = 0;
1942 tg->last_io_disp[READ] = 0;
1943 tg->last_io_disp[WRITE] = 0;
1944}
1945
Shaohua Li9e234ee2017-03-27 10:51:41 -07001946static void blk_throtl_update_idletime(struct throtl_grp *tg)
1947{
1948 unsigned long now = ktime_get_ns() >> 10;
1949 unsigned long last_finish_time = tg->last_finish_time;
1950
1951 if (now <= last_finish_time || last_finish_time == 0 ||
1952 last_finish_time == tg->checked_last_finish_time)
1953 return;
1954
1955 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
1956 tg->checked_last_finish_time = last_finish_time;
1957}
1958
Shaohua Lib9147dd2017-03-27 15:19:42 -07001959#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1960static void throtl_update_latency_buckets(struct throtl_data *td)
1961{
1962 struct avg_latency_bucket avg_latency[LATENCY_BUCKET_SIZE];
1963 int i, cpu;
1964 unsigned long last_latency = 0;
1965 unsigned long latency;
1966
1967 if (!blk_queue_nonrot(td->queue))
1968 return;
1969 if (time_before(jiffies, td->last_calculate_time + HZ))
1970 return;
1971 td->last_calculate_time = jiffies;
1972
1973 memset(avg_latency, 0, sizeof(avg_latency));
1974 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
1975 struct latency_bucket *tmp = &td->tmp_buckets[i];
1976
1977 for_each_possible_cpu(cpu) {
1978 struct latency_bucket *bucket;
1979
1980 /* this isn't race free, but ok in practice */
1981 bucket = per_cpu_ptr(td->latency_buckets, cpu);
1982 tmp->total_latency += bucket[i].total_latency;
1983 tmp->samples += bucket[i].samples;
1984 bucket[i].total_latency = 0;
1985 bucket[i].samples = 0;
1986 }
1987
1988 if (tmp->samples >= 32) {
1989 int samples = tmp->samples;
1990
1991 latency = tmp->total_latency;
1992
1993 tmp->total_latency = 0;
1994 tmp->samples = 0;
1995 latency /= samples;
1996 if (latency == 0)
1997 continue;
1998 avg_latency[i].latency = latency;
1999 }
2000 }
2001
2002 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2003 if (!avg_latency[i].latency) {
2004 if (td->avg_buckets[i].latency < last_latency)
2005 td->avg_buckets[i].latency = last_latency;
2006 continue;
2007 }
2008
2009 if (!td->avg_buckets[i].valid)
2010 latency = avg_latency[i].latency;
2011 else
2012 latency = (td->avg_buckets[i].latency * 7 +
2013 avg_latency[i].latency) >> 3;
2014
2015 td->avg_buckets[i].latency = max(latency, last_latency);
2016 td->avg_buckets[i].valid = true;
2017 last_latency = td->avg_buckets[i].latency;
2018 }
2019}
2020#else
2021static inline void throtl_update_latency_buckets(struct throtl_data *td)
2022{
2023}
2024#endif
2025
Tejun Heoae118892015-08-18 14:55:20 -07002026bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2027 struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04002028{
Tejun Heoc5cc2072013-05-14 13:52:38 -07002029 struct throtl_qnode *qn = NULL;
Tejun Heoae118892015-08-18 14:55:20 -07002030 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
Tejun Heo73f0d492013-05-14 13:52:35 -07002031 struct throtl_service_queue *sq;
Tejun Heo0e9f4162013-05-14 13:52:35 -07002032 bool rw = bio_data_dir(bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002033 bool throttled = false;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002034 struct throtl_data *td = tg->td;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002035 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002036
Tejun Heoae118892015-08-18 14:55:20 -07002037 WARN_ON_ONCE(!rcu_read_lock_held());
2038
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002039 /* see throtl_charge_bio() */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002040 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
Tejun Heobc16a4f2011-10-19 14:33:01 +02002041 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04002042
2043 spin_lock_irq(q->queue_lock);
Tejun Heoc9589f02015-08-18 14:55:19 -07002044
Shaohua Lib9147dd2017-03-27 15:19:42 -07002045 throtl_update_latency_buckets(td);
2046
Tejun Heoc9589f02015-08-18 14:55:19 -07002047 if (unlikely(blk_queue_bypass(q)))
Tejun Heobc16a4f2011-10-19 14:33:01 +02002048 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04002049
Shaohua Li9e234ee2017-03-27 10:51:41 -07002050 ret = bio_associate_current(bio);
2051#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2052 if (ret == 0 || ret == -EBUSY)
2053 bio->bi_cg_private = tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002054 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio));
Shaohua Li9e234ee2017-03-27 10:51:41 -07002055#endif
2056 blk_throtl_update_idletime(tg);
2057
Tejun Heo73f0d492013-05-14 13:52:35 -07002058 sq = &tg->service_queue;
2059
Shaohua Lic79892c2017-03-27 10:51:34 -07002060again:
Tejun Heo9e660ac2013-05-14 13:52:38 -07002061 while (true) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002062 if (tg->last_low_overflow_time[rw] == 0)
2063 tg->last_low_overflow_time[rw] = jiffies;
2064 throtl_downgrade_check(tg);
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07002065 throtl_upgrade_check(tg);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002066 /* throtl is FIFO - if bios are already queued, should queue */
2067 if (sq->nr_queued[rw])
2068 break;
Vivek Goyalde701c72011-03-07 21:09:32 +01002069
Tejun Heo9e660ac2013-05-14 13:52:38 -07002070 /* if above limits, break to queue */
Shaohua Lic79892c2017-03-27 10:51:34 -07002071 if (!tg_may_dispatch(tg, bio, NULL)) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002072 tg->last_low_overflow_time[rw] = jiffies;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002073 if (throtl_can_upgrade(td, tg)) {
2074 throtl_upgrade_state(td);
Shaohua Lic79892c2017-03-27 10:51:34 -07002075 goto again;
2076 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002077 break;
Shaohua Lic79892c2017-03-27 10:51:34 -07002078 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002079
2080 /* within limits, let's charge and dispatch directly */
Vivek Goyale43473b2010-09-15 17:06:35 -04002081 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01002082
2083 /*
2084 * We need to trim slice even when bios are not being queued
2085 * otherwise it might happen that a bio is not queued for
2086 * a long time and slice keeps on extending and trim is not
2087 * called for a long time. Now if limits are reduced suddenly
2088 * we take into account all the IO dispatched so far at new
2089 * low rate and * newly queued IO gets a really long dispatch
2090 * time.
2091 *
2092 * So keep on trimming slice even if bio is not queued.
2093 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07002094 throtl_trim_slice(tg, rw);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002095
2096 /*
2097 * @bio passed through this layer without being throttled.
2098 * Climb up the ladder. If we''re already at the top, it
2099 * can be executed directly.
2100 */
Tejun Heoc5cc2072013-05-14 13:52:38 -07002101 qn = &tg->qnode_on_parent[rw];
Tejun Heo9e660ac2013-05-14 13:52:38 -07002102 sq = sq->parent_sq;
2103 tg = sq_to_tg(sq);
2104 if (!tg)
2105 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04002106 }
2107
Tejun Heo9e660ac2013-05-14 13:52:38 -07002108 /* out-of-limit, queue to @tg */
Tejun Heofda6f272013-05-14 13:52:36 -07002109 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2110 rw == READ ? 'R' : 'W',
Shaohua Li9f626e32017-03-27 10:51:30 -07002111 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2112 tg_bps_limit(tg, rw),
2113 tg->io_disp[rw], tg_iops_limit(tg, rw),
Tejun Heofda6f272013-05-14 13:52:36 -07002114 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04002115
Shaohua Li3f0abd82017-03-27 10:51:35 -07002116 tg->last_low_overflow_time[rw] = jiffies;
2117
Shaohua Lib9147dd2017-03-27 15:19:42 -07002118 td->nr_queued[rw]++;
Tejun Heoc5cc2072013-05-14 13:52:38 -07002119 throtl_add_bio_tg(bio, qn, tg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002120 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04002121
Tejun Heo7f52f982013-05-14 13:52:37 -07002122 /*
2123 * Update @tg's dispatch time and force schedule dispatch if @tg
2124 * was empty before @bio. The forced scheduling isn't likely to
2125 * cause undue delay as @bio is likely to be dispatched directly if
2126 * its @tg's disptime is not in the future.
2127 */
Tejun Heo0e9f4162013-05-14 13:52:35 -07002128 if (tg->flags & THROTL_TG_WAS_EMPTY) {
Tejun Heo77216b02013-05-14 13:52:36 -07002129 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07002130 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
Vivek Goyale43473b2010-09-15 17:06:35 -04002131 }
2132
Tejun Heobc16a4f2011-10-19 14:33:01 +02002133out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04002134 spin_unlock_irq(q->queue_lock);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002135out:
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002136 /*
2137 * As multiple blk-throtls may stack in the same issue path, we
2138 * don't want bios to leave with the flag set. Clear the flag if
2139 * being issued.
2140 */
2141 if (!throttled)
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002142 bio_clear_flag(bio, BIO_THROTTLED);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002143
2144#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2145 if (throttled || !td->track_bio_latency)
2146 bio->bi_issue_stat.stat |= SKIP_LATENCY;
2147#endif
Tejun Heobc16a4f2011-10-19 14:33:01 +02002148 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04002149}
2150
Shaohua Li9e234ee2017-03-27 10:51:41 -07002151#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Lib9147dd2017-03-27 15:19:42 -07002152static void throtl_track_latency(struct throtl_data *td, sector_t size,
2153 int op, unsigned long time)
2154{
2155 struct latency_bucket *latency;
2156 int index;
2157
2158 if (!td || td->limit_index != LIMIT_LOW || op != REQ_OP_READ ||
2159 !blk_queue_nonrot(td->queue))
2160 return;
2161
2162 index = request_bucket_index(size);
2163
2164 latency = get_cpu_ptr(td->latency_buckets);
2165 latency[index].total_latency += time;
2166 latency[index].samples++;
2167 put_cpu_ptr(td->latency_buckets);
2168}
2169
2170void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2171{
2172 struct request_queue *q = rq->q;
2173 struct throtl_data *td = q->td;
2174
2175 throtl_track_latency(td, blk_stat_size(&rq->issue_stat),
2176 req_op(rq), time_ns >> 10);
2177}
2178
Shaohua Li9e234ee2017-03-27 10:51:41 -07002179void blk_throtl_bio_endio(struct bio *bio)
2180{
2181 struct throtl_grp *tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002182 u64 finish_time_ns;
2183 unsigned long finish_time;
2184 unsigned long start_time;
2185 unsigned long lat;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002186
2187 tg = bio->bi_cg_private;
2188 if (!tg)
2189 return;
2190 bio->bi_cg_private = NULL;
2191
Shaohua Lib9147dd2017-03-27 15:19:42 -07002192 finish_time_ns = ktime_get_ns();
2193 tg->last_finish_time = finish_time_ns >> 10;
2194
2195 start_time = blk_stat_time(&bio->bi_issue_stat) >> 10;
2196 finish_time = __blk_stat_time(finish_time_ns) >> 10;
2197 /* this is only for bio based driver */
2198 if (start_time && finish_time > start_time &&
2199 !(bio->bi_issue_stat.stat & SKIP_LATENCY)) {
2200 lat = finish_time - start_time;
2201 throtl_track_latency(tg->td, blk_stat_size(&bio->bi_issue_stat),
2202 bio_op(bio), lat);
2203 }
Shaohua Li9e234ee2017-03-27 10:51:41 -07002204}
2205#endif
2206
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002207/*
2208 * Dispatch all bios from all children tg's queued on @parent_sq. On
2209 * return, @parent_sq is guaranteed to not have any active children tg's
2210 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2211 */
2212static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2213{
2214 struct throtl_grp *tg;
2215
2216 while ((tg = throtl_rb_first(parent_sq))) {
2217 struct throtl_service_queue *sq = &tg->service_queue;
2218 struct bio *bio;
2219
2220 throtl_dequeue_tg(tg);
2221
Tejun Heoc5cc2072013-05-14 13:52:38 -07002222 while ((bio = throtl_peek_queued(&sq->queued[READ])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002223 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Tejun Heoc5cc2072013-05-14 13:52:38 -07002224 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002225 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2226 }
2227}
2228
Tejun Heoc9a929d2011-10-19 14:42:16 +02002229/**
2230 * blk_throtl_drain - drain throttled bios
2231 * @q: request_queue to drain throttled bios for
2232 *
2233 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2234 */
2235void blk_throtl_drain(struct request_queue *q)
2236 __releases(q->queue_lock) __acquires(q->queue_lock)
2237{
2238 struct throtl_data *td = q->td;
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002239 struct blkcg_gq *blkg;
Tejun Heo492eb212013-08-08 20:11:25 -04002240 struct cgroup_subsys_state *pos_css;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002241 struct bio *bio;
Tejun Heo651930b2013-05-14 13:52:35 -07002242 int rw;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002243
Andi Kleen8bcb6c72012-03-30 12:33:28 +02002244 queue_lockdep_assert_held(q);
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002245 rcu_read_lock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002246
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002247 /*
2248 * Drain each tg while doing post-order walk on the blkg tree, so
2249 * that all bios are propagated to td->service_queue. It'd be
2250 * better to walk service_queue tree directly but blkg walk is
2251 * easier.
2252 */
Tejun Heo492eb212013-08-08 20:11:25 -04002253 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002254 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
Tejun Heo73f0d492013-05-14 13:52:35 -07002255
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002256 /* finally, transfer bios from top-level tg's into the td */
2257 tg_drain_bios(&td->service_queue);
2258
2259 rcu_read_unlock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002260 spin_unlock_irq(q->queue_lock);
2261
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002262 /* all bios now should be in td->service_queue, issue them */
Tejun Heo651930b2013-05-14 13:52:35 -07002263 for (rw = READ; rw <= WRITE; rw++)
Tejun Heoc5cc2072013-05-14 13:52:38 -07002264 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2265 NULL)))
Tejun Heo651930b2013-05-14 13:52:35 -07002266 generic_make_request(bio);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002267
2268 spin_lock_irq(q->queue_lock);
2269}
2270
Vivek Goyale43473b2010-09-15 17:06:35 -04002271int blk_throtl_init(struct request_queue *q)
2272{
2273 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07002274 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002275
2276 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2277 if (!td)
2278 return -ENOMEM;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002279 td->latency_buckets = __alloc_percpu(sizeof(struct latency_bucket) *
2280 LATENCY_BUCKET_SIZE, __alignof__(u64));
2281 if (!td->latency_buckets) {
2282 kfree(td);
2283 return -ENOMEM;
2284 }
Vivek Goyale43473b2010-09-15 17:06:35 -04002285
Tejun Heo69df0ab2013-05-14 13:52:36 -07002286 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heob2ce2642015-08-18 14:55:13 -07002287 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04002288
Tejun Heocd1604f2012-03-05 13:15:06 -08002289 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04002290 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02002291
Shaohua Li9f626e32017-03-27 10:51:30 -07002292 td->limit_valid[LIMIT_MAX] = true;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07002293 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07002294 td->low_upgrade_time = jiffies;
2295 td->low_downgrade_time = jiffies;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002296
Tejun Heoa2b16932012-04-13 13:11:33 -07002297 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07002298 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002299 if (ret) {
2300 free_percpu(td->latency_buckets);
Vivek Goyal29b12582011-05-19 15:38:24 -04002301 kfree(td);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002302 }
Tejun Heoa2b16932012-04-13 13:11:33 -07002303 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002304}
2305
2306void blk_throtl_exit(struct request_queue *q)
2307{
Tejun Heoc875f4d2012-03-05 13:15:22 -08002308 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05002309 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07002310 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002311 free_percpu(q->td->latency_buckets);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002312 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04002313}
2314
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002315void blk_throtl_register_queue(struct request_queue *q)
2316{
2317 struct throtl_data *td;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002318 struct cgroup_subsys_state *pos_css;
2319 struct blkcg_gq *blkg;
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002320
2321 td = q->td;
2322 BUG_ON(!td);
2323
Shaohua Liada75b62017-03-27 10:51:42 -07002324 if (blk_queue_nonrot(q)) {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002325 td->throtl_slice = DFL_THROTL_SLICE_SSD;
Shaohua Liada75b62017-03-27 10:51:42 -07002326 td->dft_idletime_threshold = DFL_IDLE_THRESHOLD_SSD;
2327 } else {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002328 td->throtl_slice = DFL_THROTL_SLICE_HD;
Shaohua Liada75b62017-03-27 10:51:42 -07002329 td->dft_idletime_threshold = DFL_IDLE_THRESHOLD_HD;
2330 }
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002331#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2332 /* if no low limit, use previous default */
2333 td->throtl_slice = DFL_THROTL_SLICE_HD;
2334#endif
Shaohua Li9e234ee2017-03-27 10:51:41 -07002335
Shaohua Lib9147dd2017-03-27 15:19:42 -07002336 td->track_bio_latency = !q->mq_ops && !q->request_fn;
2337 if (!td->track_bio_latency)
2338 blk_stat_enable_accounting(q);
2339
Shaohua Li9e234ee2017-03-27 10:51:41 -07002340 /*
2341 * some tg are created before queue is fully initialized, eg, nonrot
2342 * isn't initialized yet
2343 */
2344 rcu_read_lock();
2345 blkg_for_each_descendant_post(blkg, pos_css, q->root_blkg) {
2346 struct throtl_grp *tg = blkg_to_tg(blkg);
2347
Shaohua Liada75b62017-03-27 10:51:42 -07002348 tg->idletime_threshold = td->dft_idletime_threshold;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002349 }
2350 rcu_read_unlock();
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002351}
2352
Shaohua Li297e3d82017-03-27 10:51:37 -07002353#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2354ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2355{
2356 if (!q->td)
2357 return -EINVAL;
2358 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2359}
2360
2361ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2362 const char *page, size_t count)
2363{
2364 unsigned long v;
2365 unsigned long t;
2366
2367 if (!q->td)
2368 return -EINVAL;
2369 if (kstrtoul(page, 10, &v))
2370 return -EINVAL;
2371 t = msecs_to_jiffies(v);
2372 if (t == 0 || t > MAX_THROTL_SLICE)
2373 return -EINVAL;
2374 q->td->throtl_slice = t;
2375 return count;
2376}
2377#endif
2378
Vivek Goyale43473b2010-09-15 17:06:35 -04002379static int __init throtl_init(void)
2380{
Vivek Goyal450adcb2011-03-01 13:40:54 -05002381 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2382 if (!kthrotld_workqueue)
2383 panic("Failed to create kthrotld\n");
2384
Tejun Heo3c798392012-04-16 13:57:25 -07002385 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04002386}
2387
2388module_init(throtl_init);