blob: db1a3a2ae00617fbe1e4804bbfd327e37ce55737 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Vivek Goyale43473b2010-09-15 17:06:35 -04002/*
3 * Interface for controlling IO bandwidth on a request queue
4 *
5 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
6 */
7
8#include <linux/module.h>
9#include <linux/slab.h>
10#include <linux/blkdev.h>
11#include <linux/bio.h>
12#include <linux/blktrace_api.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040013#include <linux/blk-cgroup.h>
Tejun Heobc9fcbf2011-10-19 14:31:18 +020014#include "blk.h"
Vivek Goyale43473b2010-09-15 17:06:35 -040015
16/* Max dispatch from a group in 1 round */
17static int throtl_grp_quantum = 8;
18
19/* Total max dispatch from all groups in one round */
20static int throtl_quantum = 32;
21
Shaohua Lid61fcfa2017-03-27 10:51:38 -070022/* Throttling is performed over a slice and after that slice is renewed */
23#define DFL_THROTL_SLICE_HD (HZ / 10)
24#define DFL_THROTL_SLICE_SSD (HZ / 50)
Shaohua Li297e3d82017-03-27 10:51:37 -070025#define MAX_THROTL_SLICE (HZ)
Shaohua Li9e234ee2017-03-27 10:51:41 -070026#define MAX_IDLE_TIME (5L * 1000 * 1000) /* 5 s */
Shaohua Li9bb67ae2017-05-17 13:07:26 -070027#define MIN_THROTL_BPS (320 * 1024)
28#define MIN_THROTL_IOPS (10)
Shaohua Lib4f428e2017-05-17 13:07:27 -070029#define DFL_LATENCY_TARGET (-1L)
30#define DFL_IDLE_THRESHOLD (0)
Shaohua Li6679a902017-06-06 12:40:43 -070031#define DFL_HD_BASELINE_LATENCY (4000L) /* 4ms */
32#define LATENCY_FILTERED_SSD (0)
33/*
34 * For HD, very small latency comes from sequential IO. Such IO is helpless to
35 * help determine if its IO is impacted by others, hence we ignore the IO
36 */
37#define LATENCY_FILTERED_HD (1000L) /* 1ms */
Vivek Goyale43473b2010-09-15 17:06:35 -040038
Tejun Heo3c798392012-04-16 13:57:25 -070039static struct blkcg_policy blkcg_policy_throtl;
Tejun Heo03814112012-03-05 13:15:14 -080040
Vivek Goyal450adcb2011-03-01 13:40:54 -050041/* A workqueue to queue throttle related work */
42static struct workqueue_struct *kthrotld_workqueue;
Vivek Goyal450adcb2011-03-01 13:40:54 -050043
Tejun Heoc5cc2072013-05-14 13:52:38 -070044/*
45 * To implement hierarchical throttling, throtl_grps form a tree and bios
46 * are dispatched upwards level by level until they reach the top and get
47 * issued. When dispatching bios from the children and local group at each
48 * level, if the bios are dispatched into a single bio_list, there's a risk
49 * of a local or child group which can queue many bios at once filling up
50 * the list starving others.
51 *
52 * To avoid such starvation, dispatched bios are queued separately
53 * according to where they came from. When they are again dispatched to
54 * the parent, they're popped in round-robin order so that no single source
55 * hogs the dispatch window.
56 *
57 * throtl_qnode is used to keep the queued bios separated by their sources.
58 * Bios are queued to throtl_qnode which in turn is queued to
59 * throtl_service_queue and then dispatched in round-robin order.
60 *
61 * It's also used to track the reference counts on blkg's. A qnode always
62 * belongs to a throtl_grp and gets queued on itself or the parent, so
63 * incrementing the reference of the associated throtl_grp when a qnode is
64 * queued and decrementing when dequeued is enough to keep the whole blkg
65 * tree pinned while bios are in flight.
66 */
67struct throtl_qnode {
68 struct list_head node; /* service_queue->queued[] */
69 struct bio_list bios; /* queued bios */
70 struct throtl_grp *tg; /* tg this qnode belongs to */
71};
72
Tejun Heoc9e03322013-05-14 13:52:32 -070073struct throtl_service_queue {
Tejun Heo77216b02013-05-14 13:52:36 -070074 struct throtl_service_queue *parent_sq; /* the parent service_queue */
75
Tejun Heo73f0d492013-05-14 13:52:35 -070076 /*
77 * Bios queued directly to this service_queue or dispatched from
78 * children throtl_grp's.
79 */
Tejun Heoc5cc2072013-05-14 13:52:38 -070080 struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */
Tejun Heo73f0d492013-05-14 13:52:35 -070081 unsigned int nr_queued[2]; /* number of queued bios */
82
83 /*
84 * RB tree of active children throtl_grp's, which are sorted by
85 * their ->disptime.
86 */
Liu Bo9ff01252018-08-21 05:21:15 +080087 struct rb_root_cached pending_tree; /* RB tree of active tgs */
Tejun Heoc9e03322013-05-14 13:52:32 -070088 unsigned int nr_pending; /* # queued in the tree */
89 unsigned long first_pending_disptime; /* disptime of the first tg */
Tejun Heo69df0ab2013-05-14 13:52:36 -070090 struct timer_list pending_timer; /* fires on first_pending_disptime */
Vivek Goyale43473b2010-09-15 17:06:35 -040091};
92
Tejun Heo5b2c16a2013-05-14 13:52:32 -070093enum tg_state_flags {
94 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
Tejun Heo0e9f4162013-05-14 13:52:35 -070095 THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */
Tejun Heo5b2c16a2013-05-14 13:52:32 -070096};
97
Vivek Goyale43473b2010-09-15 17:06:35 -040098#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
99
Shaohua Li9f626e32017-03-27 10:51:30 -0700100enum {
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700101 LIMIT_LOW,
Shaohua Li9f626e32017-03-27 10:51:30 -0700102 LIMIT_MAX,
103 LIMIT_CNT,
104};
105
Vivek Goyale43473b2010-09-15 17:06:35 -0400106struct throtl_grp {
Tejun Heof95a04a2012-04-16 13:57:26 -0700107 /* must be the first member */
108 struct blkg_policy_data pd;
109
Tejun Heoc9e03322013-05-14 13:52:32 -0700110 /* active throtl group service_queue member */
Vivek Goyale43473b2010-09-15 17:06:35 -0400111 struct rb_node rb_node;
112
Tejun Heo0f3457f2013-05-14 13:52:32 -0700113 /* throtl_data this group belongs to */
114 struct throtl_data *td;
115
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700116 /* this group's service queue */
117 struct throtl_service_queue service_queue;
118
Vivek Goyale43473b2010-09-15 17:06:35 -0400119 /*
Tejun Heoc5cc2072013-05-14 13:52:38 -0700120 * qnode_on_self is used when bios are directly queued to this
121 * throtl_grp so that local bios compete fairly with bios
122 * dispatched from children. qnode_on_parent is used when bios are
123 * dispatched from this throtl_grp into its parent and will compete
124 * with the sibling qnode_on_parents and the parent's
125 * qnode_on_self.
126 */
127 struct throtl_qnode qnode_on_self[2];
128 struct throtl_qnode qnode_on_parent[2];
129
130 /*
Vivek Goyale43473b2010-09-15 17:06:35 -0400131 * Dispatch time in jiffies. This is the estimated time when group
132 * will unthrottle and is ready to dispatch more bio. It is used as
133 * key to sort active groups in service tree.
134 */
135 unsigned long disptime;
136
Vivek Goyale43473b2010-09-15 17:06:35 -0400137 unsigned int flags;
138
Tejun Heo693e7512013-05-14 13:52:38 -0700139 /* are there any throtl rules between this group and td? */
140 bool has_rules[2];
141
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700142 /* internally used bytes per second rate limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700143 uint64_t bps[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700144 /* user configured bps limits */
145 uint64_t bps_conf[2][LIMIT_CNT];
Vivek Goyale43473b2010-09-15 17:06:35 -0400146
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700147 /* internally used IOPS limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700148 unsigned int iops[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700149 /* user configured IOPS limits */
150 unsigned int iops_conf[2][LIMIT_CNT];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400151
Vivek Goyale43473b2010-09-15 17:06:35 -0400152 /* Number of bytes disptached in current slice */
153 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400154 /* Number of bio's dispatched in current slice */
155 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -0400156
Shaohua Li3f0abd82017-03-27 10:51:35 -0700157 unsigned long last_low_overflow_time[2];
158
159 uint64_t last_bytes_disp[2];
160 unsigned int last_io_disp[2];
161
162 unsigned long last_check_time;
163
Shaohua Liec809912017-03-27 10:51:44 -0700164 unsigned long latency_target; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700165 unsigned long latency_target_conf; /* us */
Vivek Goyale43473b2010-09-15 17:06:35 -0400166 /* When did we start a new slice */
167 unsigned long slice_start[2];
168 unsigned long slice_end[2];
Shaohua Li9e234ee2017-03-27 10:51:41 -0700169
170 unsigned long last_finish_time; /* ns / 1024 */
171 unsigned long checked_last_finish_time; /* ns / 1024 */
172 unsigned long avg_idletime; /* ns / 1024 */
173 unsigned long idletime_threshold; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700174 unsigned long idletime_threshold_conf; /* us */
Shaohua Li53696b82017-03-27 15:19:43 -0700175
176 unsigned int bio_cnt; /* total bios */
177 unsigned int bad_bio_cnt; /* bios exceeding latency threshold */
178 unsigned long bio_cnt_reset_time;
Vivek Goyale43473b2010-09-15 17:06:35 -0400179};
180
Shaohua Lib9147dd2017-03-27 15:19:42 -0700181/* We measure latency for request size from <= 4k to >= 1M */
182#define LATENCY_BUCKET_SIZE 9
183
184struct latency_bucket {
185 unsigned long total_latency; /* ns / 1024 */
186 int samples;
187};
188
189struct avg_latency_bucket {
190 unsigned long latency; /* ns / 1024 */
191 bool valid;
192};
193
Vivek Goyale43473b2010-09-15 17:06:35 -0400194struct throtl_data
195{
Vivek Goyale43473b2010-09-15 17:06:35 -0400196 /* service tree for active throtl groups */
Tejun Heoc9e03322013-05-14 13:52:32 -0700197 struct throtl_service_queue service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400198
Vivek Goyale43473b2010-09-15 17:06:35 -0400199 struct request_queue *queue;
200
201 /* Total Number of queued bios on READ and WRITE lists */
202 unsigned int nr_queued[2];
203
Shaohua Li297e3d82017-03-27 10:51:37 -0700204 unsigned int throtl_slice;
205
Vivek Goyale43473b2010-09-15 17:06:35 -0400206 /* Work for dispatching throttled bios */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700207 struct work_struct dispatch_work;
Shaohua Li9f626e32017-03-27 10:51:30 -0700208 unsigned int limit_index;
209 bool limit_valid[LIMIT_CNT];
Shaohua Li3f0abd82017-03-27 10:51:35 -0700210
211 unsigned long low_upgrade_time;
212 unsigned long low_downgrade_time;
Shaohua Li7394e312017-03-27 10:51:40 -0700213
214 unsigned int scale;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700215
Joseph Qib889bf62017-11-21 09:38:30 +0800216 struct latency_bucket tmp_buckets[2][LATENCY_BUCKET_SIZE];
217 struct avg_latency_bucket avg_buckets[2][LATENCY_BUCKET_SIZE];
218 struct latency_bucket __percpu *latency_buckets[2];
Shaohua Lib9147dd2017-03-27 15:19:42 -0700219 unsigned long last_calculate_time;
Shaohua Li6679a902017-06-06 12:40:43 -0700220 unsigned long filtered_latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700221
222 bool track_bio_latency;
Vivek Goyale43473b2010-09-15 17:06:35 -0400223};
224
Kees Cooke99e88a2017-10-16 14:43:17 -0700225static void throtl_pending_timer_fn(struct timer_list *t);
Tejun Heo69df0ab2013-05-14 13:52:36 -0700226
Tejun Heof95a04a2012-04-16 13:57:26 -0700227static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
228{
229 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
230}
231
Tejun Heo3c798392012-04-16 13:57:25 -0700232static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -0800233{
Tejun Heof95a04a2012-04-16 13:57:26 -0700234 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
Tejun Heo03814112012-03-05 13:15:14 -0800235}
236
Tejun Heo3c798392012-04-16 13:57:25 -0700237static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
Tejun Heo03814112012-03-05 13:15:14 -0800238{
Tejun Heof95a04a2012-04-16 13:57:26 -0700239 return pd_to_blkg(&tg->pd);
Tejun Heo03814112012-03-05 13:15:14 -0800240}
241
Tejun Heofda6f272013-05-14 13:52:36 -0700242/**
243 * sq_to_tg - return the throl_grp the specified service queue belongs to
244 * @sq: the throtl_service_queue of interest
245 *
246 * Return the throtl_grp @sq belongs to. If @sq is the top-level one
247 * embedded in throtl_data, %NULL is returned.
248 */
249static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq)
250{
251 if (sq && sq->parent_sq)
252 return container_of(sq, struct throtl_grp, service_queue);
253 else
254 return NULL;
255}
Vivek Goyale43473b2010-09-15 17:06:35 -0400256
Tejun Heofda6f272013-05-14 13:52:36 -0700257/**
258 * sq_to_td - return throtl_data the specified service queue belongs to
259 * @sq: the throtl_service_queue of interest
260 *
Masahiro Yamadab43daed2017-02-27 14:29:09 -0800261 * A service_queue can be embedded in either a throtl_grp or throtl_data.
Tejun Heofda6f272013-05-14 13:52:36 -0700262 * Determine the associated throtl_data accordingly and return it.
263 */
264static struct throtl_data *sq_to_td(struct throtl_service_queue *sq)
265{
266 struct throtl_grp *tg = sq_to_tg(sq);
267
268 if (tg)
269 return tg->td;
270 else
271 return container_of(sq, struct throtl_data, service_queue);
272}
273
Shaohua Li7394e312017-03-27 10:51:40 -0700274/*
275 * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to
276 * make the IO dispatch more smooth.
277 * Scale up: linearly scale up according to lapsed time since upgrade. For
278 * every throtl_slice, the limit scales up 1/2 .low limit till the
279 * limit hits .max limit
280 * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit
281 */
282static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td)
283{
284 /* arbitrary value to avoid too big scale */
285 if (td->scale < 4096 && time_after_eq(jiffies,
286 td->low_upgrade_time + td->scale * td->throtl_slice))
287 td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice;
288
289 return low + (low >> 1) * td->scale;
290}
291
Shaohua Li9f626e32017-03-27 10:51:30 -0700292static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw)
293{
Shaohua Lib22c4172017-03-27 10:51:33 -0700294 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700295 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700296 uint64_t ret;
297
298 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
299 return U64_MAX;
Shaohua Li7394e312017-03-27 10:51:40 -0700300
301 td = tg->td;
302 ret = tg->bps[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700303 if (ret == 0 && td->limit_index == LIMIT_LOW) {
304 /* intermediate node or iops isn't 0 */
305 if (!list_empty(&blkg->blkcg->css.children) ||
306 tg->iops[rw][td->limit_index])
307 return U64_MAX;
308 else
309 return MIN_THROTL_BPS;
310 }
Shaohua Li7394e312017-03-27 10:51:40 -0700311
312 if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] &&
313 tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) {
314 uint64_t adjusted;
315
316 adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td);
317 ret = min(tg->bps[rw][LIMIT_MAX], adjusted);
318 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700319 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700320}
321
322static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
323{
Shaohua Lib22c4172017-03-27 10:51:33 -0700324 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700325 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700326 unsigned int ret;
327
328 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
329 return UINT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700330
Shaohua Li7394e312017-03-27 10:51:40 -0700331 td = tg->td;
332 ret = tg->iops[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700333 if (ret == 0 && tg->td->limit_index == LIMIT_LOW) {
334 /* intermediate node or bps isn't 0 */
335 if (!list_empty(&blkg->blkcg->css.children) ||
336 tg->bps[rw][td->limit_index])
337 return UINT_MAX;
338 else
339 return MIN_THROTL_IOPS;
340 }
Shaohua Li7394e312017-03-27 10:51:40 -0700341
342 if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] &&
343 tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) {
344 uint64_t adjusted;
345
346 adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td);
347 if (adjusted > UINT_MAX)
348 adjusted = UINT_MAX;
349 ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted);
350 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700351 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700352}
353
Shaohua Lib9147dd2017-03-27 15:19:42 -0700354#define request_bucket_index(sectors) \
355 clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1)
356
Tejun Heofda6f272013-05-14 13:52:36 -0700357/**
358 * throtl_log - log debug message via blktrace
359 * @sq: the service_queue being reported
360 * @fmt: printf format string
361 * @args: printf args
362 *
363 * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a
364 * throtl_grp; otherwise, just "throtl".
Tejun Heofda6f272013-05-14 13:52:36 -0700365 */
366#define throtl_log(sq, fmt, args...) do { \
367 struct throtl_grp *__tg = sq_to_tg((sq)); \
368 struct throtl_data *__td = sq_to_td((sq)); \
369 \
370 (void)__td; \
Shaohua Li59fa0222016-05-09 17:22:15 -0700371 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
372 break; \
Tejun Heofda6f272013-05-14 13:52:36 -0700373 if ((__tg)) { \
Shaohua Li35fe6d72017-07-12 11:49:56 -0700374 blk_add_cgroup_trace_msg(__td->queue, \
375 tg_to_blkg(__tg)->blkcg, "throtl " fmt, ##args);\
Tejun Heofda6f272013-05-14 13:52:36 -0700376 } else { \
377 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
378 } \
379} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400380
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700381static inline unsigned int throtl_bio_data_size(struct bio *bio)
382{
383 /* assume it's one sector */
384 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
385 return 512;
386 return bio->bi_iter.bi_size;
387}
388
Tejun Heoc5cc2072013-05-14 13:52:38 -0700389static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
390{
391 INIT_LIST_HEAD(&qn->node);
392 bio_list_init(&qn->bios);
393 qn->tg = tg;
394}
395
396/**
397 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
398 * @bio: bio being added
399 * @qn: qnode to add bio to
400 * @queued: the service_queue->queued[] list @qn belongs to
401 *
402 * Add @bio to @qn and put @qn on @queued if it's not already on.
403 * @qn->tg's reference count is bumped when @qn is activated. See the
404 * comment on top of throtl_qnode definition for details.
405 */
406static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
407 struct list_head *queued)
408{
409 bio_list_add(&qn->bios, bio);
410 if (list_empty(&qn->node)) {
411 list_add_tail(&qn->node, queued);
412 blkg_get(tg_to_blkg(qn->tg));
413 }
414}
415
416/**
417 * throtl_peek_queued - peek the first bio on a qnode list
418 * @queued: the qnode list to peek
419 */
420static struct bio *throtl_peek_queued(struct list_head *queued)
421{
422 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
423 struct bio *bio;
424
425 if (list_empty(queued))
426 return NULL;
427
428 bio = bio_list_peek(&qn->bios);
429 WARN_ON_ONCE(!bio);
430 return bio;
431}
432
433/**
434 * throtl_pop_queued - pop the first bio form a qnode list
435 * @queued: the qnode list to pop a bio from
436 * @tg_to_put: optional out argument for throtl_grp to put
437 *
438 * Pop the first bio from the qnode list @queued. After popping, the first
439 * qnode is removed from @queued if empty or moved to the end of @queued so
440 * that the popping order is round-robin.
441 *
442 * When the first qnode is removed, its associated throtl_grp should be put
443 * too. If @tg_to_put is NULL, this function automatically puts it;
444 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
445 * responsible for putting it.
446 */
447static struct bio *throtl_pop_queued(struct list_head *queued,
448 struct throtl_grp **tg_to_put)
449{
450 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
451 struct bio *bio;
452
453 if (list_empty(queued))
454 return NULL;
455
456 bio = bio_list_pop(&qn->bios);
457 WARN_ON_ONCE(!bio);
458
459 if (bio_list_empty(&qn->bios)) {
460 list_del_init(&qn->node);
461 if (tg_to_put)
462 *tg_to_put = qn->tg;
463 else
464 blkg_put(tg_to_blkg(qn->tg));
465 } else {
466 list_move_tail(&qn->node, queued);
467 }
468
469 return bio;
470}
471
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700472/* init a service_queue, assumes the caller zeroed it */
Tejun Heob2ce2642015-08-18 14:55:13 -0700473static void throtl_service_queue_init(struct throtl_service_queue *sq)
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700474{
Tejun Heoc5cc2072013-05-14 13:52:38 -0700475 INIT_LIST_HEAD(&sq->queued[0]);
476 INIT_LIST_HEAD(&sq->queued[1]);
Liu Bo9ff01252018-08-21 05:21:15 +0800477 sq->pending_tree = RB_ROOT_CACHED;
Kees Cooke99e88a2017-10-16 14:43:17 -0700478 timer_setup(&sq->pending_timer, throtl_pending_timer_fn, 0);
Tejun Heo69df0ab2013-05-14 13:52:36 -0700479}
480
Tejun Heo001bea72015-08-18 14:55:11 -0700481static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
482{
Tejun Heo4fb72032015-08-18 14:55:12 -0700483 struct throtl_grp *tg;
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700484 int rw;
Tejun Heo4fb72032015-08-18 14:55:12 -0700485
486 tg = kzalloc_node(sizeof(*tg), gfp, node);
487 if (!tg)
Tejun Heo77ea7332015-08-18 14:55:24 -0700488 return NULL;
Tejun Heo4fb72032015-08-18 14:55:12 -0700489
Tejun Heob2ce2642015-08-18 14:55:13 -0700490 throtl_service_queue_init(&tg->service_queue);
491
492 for (rw = READ; rw <= WRITE; rw++) {
493 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
494 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
495 }
496
497 RB_CLEAR_NODE(&tg->rb_node);
Shaohua Li9f626e32017-03-27 10:51:30 -0700498 tg->bps[READ][LIMIT_MAX] = U64_MAX;
499 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
500 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
501 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700502 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
503 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
504 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
505 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
506 /* LIMIT_LOW will have default value 0 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700507
Shaohua Liec809912017-03-27 10:51:44 -0700508 tg->latency_target = DFL_LATENCY_TARGET;
Shaohua Li5b81fc32017-05-17 13:07:24 -0700509 tg->latency_target_conf = DFL_LATENCY_TARGET;
Shaohua Lib4f428e2017-05-17 13:07:27 -0700510 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
511 tg->idletime_threshold_conf = DFL_IDLE_THRESHOLD;
Shaohua Liec809912017-03-27 10:51:44 -0700512
Tejun Heo4fb72032015-08-18 14:55:12 -0700513 return &tg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -0700514}
515
Tejun Heoa9520cd2015-08-18 14:55:14 -0700516static void throtl_pd_init(struct blkg_policy_data *pd)
Vivek Goyala29a1712011-05-19 15:38:19 -0400517{
Tejun Heoa9520cd2015-08-18 14:55:14 -0700518 struct throtl_grp *tg = pd_to_tg(pd);
519 struct blkcg_gq *blkg = tg_to_blkg(tg);
Tejun Heo77216b02013-05-14 13:52:36 -0700520 struct throtl_data *td = blkg->q->td;
Tejun Heob2ce2642015-08-18 14:55:13 -0700521 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800522
Tejun Heo91381252013-05-14 13:52:38 -0700523 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -0400524 * If on the default hierarchy, we switch to properly hierarchical
Tejun Heo91381252013-05-14 13:52:38 -0700525 * behavior where limits on a given throtl_grp are applied to the
526 * whole subtree rather than just the group itself. e.g. If 16M
527 * read_bps limit is set on the root group, the whole system can't
528 * exceed 16M for the device.
529 *
Tejun Heoaa6ec292014-07-09 10:08:08 -0400530 * If not on the default hierarchy, the broken flat hierarchy
Tejun Heo91381252013-05-14 13:52:38 -0700531 * behavior is retained where all throtl_grps are treated as if
532 * they're all separate root groups right below throtl_data.
533 * Limits of a group don't interact with limits of other groups
534 * regardless of the position of the group in the hierarchy.
535 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700536 sq->parent_sq = &td->service_queue;
Tejun Heo9e10a132015-09-18 11:56:28 -0400537 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
Tejun Heob2ce2642015-08-18 14:55:13 -0700538 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
Tejun Heo77216b02013-05-14 13:52:36 -0700539 tg->td = td;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700540}
541
Tejun Heo693e7512013-05-14 13:52:38 -0700542/*
543 * Set has_rules[] if @tg or any of its parents have limits configured.
544 * This doesn't require walking up to the top of the hierarchy as the
545 * parent's has_rules[] is guaranteed to be correct.
546 */
547static void tg_update_has_rules(struct throtl_grp *tg)
548{
549 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
Shaohua Li9f626e32017-03-27 10:51:30 -0700550 struct throtl_data *td = tg->td;
Tejun Heo693e7512013-05-14 13:52:38 -0700551 int rw;
552
553 for (rw = READ; rw <= WRITE; rw++)
554 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
Shaohua Li9f626e32017-03-27 10:51:30 -0700555 (td->limit_valid[td->limit_index] &&
556 (tg_bps_limit(tg, rw) != U64_MAX ||
557 tg_iops_limit(tg, rw) != UINT_MAX));
Tejun Heo693e7512013-05-14 13:52:38 -0700558}
559
Tejun Heoa9520cd2015-08-18 14:55:14 -0700560static void throtl_pd_online(struct blkg_policy_data *pd)
Tejun Heo693e7512013-05-14 13:52:38 -0700561{
Shaohua Liaec24242017-03-27 10:51:39 -0700562 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo693e7512013-05-14 13:52:38 -0700563 /*
564 * We don't want new groups to escape the limits of its ancestors.
565 * Update has_rules[] after a new group is brought online.
566 */
Shaohua Liaec24242017-03-27 10:51:39 -0700567 tg_update_has_rules(tg);
Tejun Heo693e7512013-05-14 13:52:38 -0700568}
569
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700570static void blk_throtl_update_limit_valid(struct throtl_data *td)
571{
572 struct cgroup_subsys_state *pos_css;
573 struct blkcg_gq *blkg;
574 bool low_valid = false;
575
576 rcu_read_lock();
577 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
578 struct throtl_grp *tg = blkg_to_tg(blkg);
579
580 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
Liu Bo43ada782018-06-29 09:56:56 +0800581 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) {
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700582 low_valid = true;
Liu Bo43ada782018-06-29 09:56:56 +0800583 break;
584 }
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700585 }
586 rcu_read_unlock();
587
588 td->limit_valid[LIMIT_LOW] = low_valid;
589}
590
Shaohua Lic79892c2017-03-27 10:51:34 -0700591static void throtl_upgrade_state(struct throtl_data *td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700592static void throtl_pd_offline(struct blkg_policy_data *pd)
593{
594 struct throtl_grp *tg = pd_to_tg(pd);
595
596 tg->bps[READ][LIMIT_LOW] = 0;
597 tg->bps[WRITE][LIMIT_LOW] = 0;
598 tg->iops[READ][LIMIT_LOW] = 0;
599 tg->iops[WRITE][LIMIT_LOW] = 0;
600
601 blk_throtl_update_limit_valid(tg->td);
602
Shaohua Lic79892c2017-03-27 10:51:34 -0700603 if (!tg->td->limit_valid[tg->td->limit_index])
604 throtl_upgrade_state(tg->td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700605}
606
Tejun Heo001bea72015-08-18 14:55:11 -0700607static void throtl_pd_free(struct blkg_policy_data *pd)
608{
Tejun Heo4fb72032015-08-18 14:55:12 -0700609 struct throtl_grp *tg = pd_to_tg(pd);
610
Tejun Heob2ce2642015-08-18 14:55:13 -0700611 del_timer_sync(&tg->service_queue.pending_timer);
Tejun Heo4fb72032015-08-18 14:55:12 -0700612 kfree(tg);
Tejun Heo001bea72015-08-18 14:55:11 -0700613}
614
Tejun Heo0049af72013-05-14 13:52:33 -0700615static struct throtl_grp *
616throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400617{
Liu Bo9ff01252018-08-21 05:21:15 +0800618 struct rb_node *n;
Vivek Goyale43473b2010-09-15 17:06:35 -0400619 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700620 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400621 return NULL;
622
Liu Bo9ff01252018-08-21 05:21:15 +0800623 n = rb_first_cached(&parent_sq->pending_tree);
624 WARN_ON_ONCE(!n);
625 if (!n)
626 return NULL;
627 return rb_entry_tg(n);
Vivek Goyale43473b2010-09-15 17:06:35 -0400628}
629
Tejun Heo0049af72013-05-14 13:52:33 -0700630static void throtl_rb_erase(struct rb_node *n,
631 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400632{
Liu Bo9ff01252018-08-21 05:21:15 +0800633 rb_erase_cached(n, &parent_sq->pending_tree);
634 RB_CLEAR_NODE(n);
Tejun Heo0049af72013-05-14 13:52:33 -0700635 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400636}
637
Tejun Heo0049af72013-05-14 13:52:33 -0700638static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400639{
640 struct throtl_grp *tg;
641
Tejun Heo0049af72013-05-14 13:52:33 -0700642 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400643 if (!tg)
644 return;
645
Tejun Heo0049af72013-05-14 13:52:33 -0700646 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400647}
648
Tejun Heo77216b02013-05-14 13:52:36 -0700649static void tg_service_queue_add(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400650{
Tejun Heo77216b02013-05-14 13:52:36 -0700651 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
Liu Bo9ff01252018-08-21 05:21:15 +0800652 struct rb_node **node = &parent_sq->pending_tree.rb_root.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400653 struct rb_node *parent = NULL;
654 struct throtl_grp *__tg;
655 unsigned long key = tg->disptime;
Liu Bo9ff01252018-08-21 05:21:15 +0800656 bool leftmost = true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400657
658 while (*node != NULL) {
659 parent = *node;
660 __tg = rb_entry_tg(parent);
661
662 if (time_before(key, __tg->disptime))
663 node = &parent->rb_left;
664 else {
665 node = &parent->rb_right;
Liu Bo9ff01252018-08-21 05:21:15 +0800666 leftmost = false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400667 }
668 }
669
Vivek Goyale43473b2010-09-15 17:06:35 -0400670 rb_link_node(&tg->rb_node, parent, node);
Liu Bo9ff01252018-08-21 05:21:15 +0800671 rb_insert_color_cached(&tg->rb_node, &parent_sq->pending_tree,
672 leftmost);
Vivek Goyale43473b2010-09-15 17:06:35 -0400673}
674
Tejun Heo77216b02013-05-14 13:52:36 -0700675static void __throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400676{
Tejun Heo77216b02013-05-14 13:52:36 -0700677 tg_service_queue_add(tg);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700678 tg->flags |= THROTL_TG_PENDING;
Tejun Heo77216b02013-05-14 13:52:36 -0700679 tg->service_queue.parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400680}
681
Tejun Heo77216b02013-05-14 13:52:36 -0700682static void throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400683{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700684 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo77216b02013-05-14 13:52:36 -0700685 __throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400686}
687
Tejun Heo77216b02013-05-14 13:52:36 -0700688static void __throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400689{
Tejun Heo77216b02013-05-14 13:52:36 -0700690 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700691 tg->flags &= ~THROTL_TG_PENDING;
Vivek Goyale43473b2010-09-15 17:06:35 -0400692}
693
Tejun Heo77216b02013-05-14 13:52:36 -0700694static void throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400695{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700696 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo77216b02013-05-14 13:52:36 -0700697 __throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400698}
699
Tejun Heoa9131a22013-05-14 13:52:31 -0700700/* Call with queue lock held */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700701static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
702 unsigned long expires)
Tejun Heoa9131a22013-05-14 13:52:31 -0700703{
Joseph Qia41b8162017-06-07 11:36:14 +0800704 unsigned long max_expire = jiffies + 8 * sq_to_td(sq)->throtl_slice;
Shaohua Li06cceed2017-03-27 10:51:36 -0700705
706 /*
707 * Since we are adjusting the throttle limit dynamically, the sleep
708 * time calculated according to previous limit might be invalid. It's
709 * possible the cgroup sleep time is very long and no other cgroups
710 * have IO running so notify the limit changes. Make sure the cgroup
711 * doesn't sleep too long to avoid the missed notification.
712 */
713 if (time_after(expires, max_expire))
714 expires = max_expire;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700715 mod_timer(&sq->pending_timer, expires);
716 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
717 expires - jiffies, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700718}
719
Tejun Heo7f52f982013-05-14 13:52:37 -0700720/**
721 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
722 * @sq: the service_queue to schedule dispatch for
723 * @force: force scheduling
724 *
725 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
726 * dispatch time of the first pending child. Returns %true if either timer
727 * is armed or there's no pending child left. %false if the current
728 * dispatch window is still open and the caller should continue
729 * dispatching.
730 *
731 * If @force is %true, the dispatch timer is always scheduled and this
732 * function is guaranteed to return %true. This is to be used when the
733 * caller can't dispatch itself and needs to invoke pending_timer
734 * unconditionally. Note that forced scheduling is likely to induce short
735 * delay before dispatch starts even if @sq->first_pending_disptime is not
736 * in the future and thus shouldn't be used in hot paths.
737 */
738static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
739 bool force)
Vivek Goyale43473b2010-09-15 17:06:35 -0400740{
Tejun Heo6a525602013-05-14 13:52:32 -0700741 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700742 if (!sq->nr_pending)
Tejun Heo7f52f982013-05-14 13:52:37 -0700743 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400744
Tejun Heoc9e03322013-05-14 13:52:32 -0700745 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400746
Tejun Heo69df0ab2013-05-14 13:52:36 -0700747 /* is the next dispatch time in the future? */
Tejun Heo7f52f982013-05-14 13:52:37 -0700748 if (force || time_after(sq->first_pending_disptime, jiffies)) {
Tejun Heo69df0ab2013-05-14 13:52:36 -0700749 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
Tejun Heo7f52f982013-05-14 13:52:37 -0700750 return true;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700751 }
752
Tejun Heo7f52f982013-05-14 13:52:37 -0700753 /* tell the caller to continue dispatching */
754 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400755}
756
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700757static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
758 bool rw, unsigned long start)
759{
760 tg->bytes_disp[rw] = 0;
761 tg->io_disp[rw] = 0;
762
763 /*
764 * Previous slice has expired. We must have trimmed it after last
765 * bio dispatch. That means since start of last slice, we never used
766 * that bandwidth. Do try to make use of that bandwidth while giving
767 * credit.
768 */
769 if (time_after_eq(start, tg->slice_start[rw]))
770 tg->slice_start[rw] = start;
771
Shaohua Li297e3d82017-03-27 10:51:37 -0700772 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700773 throtl_log(&tg->service_queue,
774 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
775 rw == READ ? 'R' : 'W', tg->slice_start[rw],
776 tg->slice_end[rw], jiffies);
777}
778
Tejun Heo0f3457f2013-05-14 13:52:32 -0700779static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400780{
781 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400782 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400783 tg->slice_start[rw] = jiffies;
Shaohua Li297e3d82017-03-27 10:51:37 -0700784 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Tejun Heofda6f272013-05-14 13:52:36 -0700785 throtl_log(&tg->service_queue,
786 "[%c] new slice start=%lu end=%lu jiffies=%lu",
787 rw == READ ? 'R' : 'W', tg->slice_start[rw],
788 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400789}
790
Tejun Heo0f3457f2013-05-14 13:52:32 -0700791static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
792 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100793{
Shaohua Li297e3d82017-03-27 10:51:37 -0700794 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100795}
796
Tejun Heo0f3457f2013-05-14 13:52:32 -0700797static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
798 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400799{
Shaohua Li297e3d82017-03-27 10:51:37 -0700800 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Tejun Heofda6f272013-05-14 13:52:36 -0700801 throtl_log(&tg->service_queue,
802 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
803 rw == READ ? 'R' : 'W', tg->slice_start[rw],
804 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400805}
806
807/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700808static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400809{
810 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200811 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400812
Chengguang Xu0b6bad72018-05-29 18:32:44 +0800813 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400814}
815
816/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700817static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400818{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200819 unsigned long nr_slices, time_elapsed, io_trim;
820 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400821
822 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
823
824 /*
825 * If bps are unlimited (-1), then time slice don't get
826 * renewed. Don't try to trim the slice if slice is used. A new
827 * slice will start when appropriate.
828 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700829 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400830 return;
831
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100832 /*
833 * A bio has been dispatched. Also adjust slice_end. It might happen
834 * that initially cgroup limit was very low resulting in high
835 * slice_end, but later limit was bumped up and bio was dispached
836 * sooner, then we need to reduce slice_end. A high bogus slice_end
837 * is bad because it does not allow new slice to start.
838 */
839
Shaohua Li297e3d82017-03-27 10:51:37 -0700840 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100841
Vivek Goyale43473b2010-09-15 17:06:35 -0400842 time_elapsed = jiffies - tg->slice_start[rw];
843
Shaohua Li297e3d82017-03-27 10:51:37 -0700844 nr_slices = time_elapsed / tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400845
846 if (!nr_slices)
847 return;
Shaohua Li297e3d82017-03-27 10:51:37 -0700848 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200849 do_div(tmp, HZ);
850 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400851
Shaohua Li297e3d82017-03-27 10:51:37 -0700852 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
853 HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400854
Vivek Goyal8e89d132010-09-15 17:06:37 -0400855 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400856 return;
857
858 if (tg->bytes_disp[rw] >= bytes_trim)
859 tg->bytes_disp[rw] -= bytes_trim;
860 else
861 tg->bytes_disp[rw] = 0;
862
Vivek Goyal8e89d132010-09-15 17:06:37 -0400863 if (tg->io_disp[rw] >= io_trim)
864 tg->io_disp[rw] -= io_trim;
865 else
866 tg->io_disp[rw] = 0;
867
Shaohua Li297e3d82017-03-27 10:51:37 -0700868 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400869
Tejun Heofda6f272013-05-14 13:52:36 -0700870 throtl_log(&tg->service_queue,
871 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
872 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
873 tg->slice_start[rw], tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400874}
875
Tejun Heo0f3457f2013-05-14 13:52:32 -0700876static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
877 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400878{
879 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400880 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400881 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200882 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400883
Vivek Goyal8e89d132010-09-15 17:06:37 -0400884 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400885
Vivek Goyal8e89d132010-09-15 17:06:37 -0400886 /* Slice has just started. Consider one slice interval */
887 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700888 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400889
Shaohua Li297e3d82017-03-27 10:51:37 -0700890 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400891
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200892 /*
893 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
894 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
895 * will allow dispatch after 1 second and after that slice should
896 * have been trimmed.
897 */
898
Shaohua Li9f626e32017-03-27 10:51:30 -0700899 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200900 do_div(tmp, HZ);
901
902 if (tmp > UINT_MAX)
903 io_allowed = UINT_MAX;
904 else
905 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400906
907 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400908 if (wait)
909 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200910 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400911 }
912
Vivek Goyal8e89d132010-09-15 17:06:37 -0400913 /* Calc approx time to dispatch */
Liu Bo991f61f2018-08-10 01:47:02 +0800914 jiffy_wait = jiffy_elapsed_rnd - jiffy_elapsed;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400915
916 if (wait)
917 *wait = jiffy_wait;
Chengguang Xu0b6bad72018-05-29 18:32:44 +0800918 return false;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400919}
920
Tejun Heo0f3457f2013-05-14 13:52:32 -0700921static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
922 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400923{
924 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200925 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400926 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700927 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -0400928
929 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
930
931 /* Slice has just started. Consider one slice interval */
932 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700933 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400934
Shaohua Li297e3d82017-03-27 10:51:37 -0700935 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyale43473b2010-09-15 17:06:35 -0400936
Shaohua Li9f626e32017-03-27 10:51:30 -0700937 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyal5e901a22010-10-01 21:16:38 +0200938 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200939 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400940
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700941 if (tg->bytes_disp[rw] + bio_size <= bytes_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400942 if (wait)
943 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200944 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400945 }
946
947 /* Calc approx time to dispatch */
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700948 extra_bytes = tg->bytes_disp[rw] + bio_size - bytes_allowed;
Shaohua Li9f626e32017-03-27 10:51:30 -0700949 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
Vivek Goyale43473b2010-09-15 17:06:35 -0400950
951 if (!jiffy_wait)
952 jiffy_wait = 1;
953
954 /*
955 * This wait time is without taking into consideration the rounding
956 * up we did. Add that time also.
957 */
958 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400959 if (wait)
960 *wait = jiffy_wait;
Chengguang Xu0b6bad72018-05-29 18:32:44 +0800961 return false;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400962}
Vivek Goyale43473b2010-09-15 17:06:35 -0400963
Vivek Goyal8e89d132010-09-15 17:06:37 -0400964/*
965 * Returns whether one can dispatch a bio or not. Also returns approx number
966 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
967 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700968static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
969 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400970{
971 bool rw = bio_data_dir(bio);
972 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
973
974 /*
975 * Currently whole state machine of group depends on first bio
976 * queued in the group bio list. So one should not be calling
977 * this function with a different bio if there are other bios
978 * queued.
979 */
Tejun Heo73f0d492013-05-14 13:52:35 -0700980 BUG_ON(tg->service_queue.nr_queued[rw] &&
Tejun Heoc5cc2072013-05-14 13:52:38 -0700981 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
Vivek Goyal8e89d132010-09-15 17:06:37 -0400982
983 /* If tg->bps = -1, then BW is unlimited */
Shaohua Li9f626e32017-03-27 10:51:30 -0700984 if (tg_bps_limit(tg, rw) == U64_MAX &&
985 tg_iops_limit(tg, rw) == UINT_MAX) {
Vivek Goyal8e89d132010-09-15 17:06:37 -0400986 if (wait)
987 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200988 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400989 }
990
991 /*
992 * If previous slice expired, start a new one otherwise renew/extend
993 * existing slice to make sure it is at least throtl_slice interval
Vivek Goyal164c80e2016-09-19 15:12:41 -0600994 * long since now. New slice is started only for empty throttle group.
995 * If there is queued bio, that means there should be an active
996 * slice and it should be extended instead.
Vivek Goyal8e89d132010-09-15 17:06:37 -0400997 */
Vivek Goyal164c80e2016-09-19 15:12:41 -0600998 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
Tejun Heo0f3457f2013-05-14 13:52:32 -0700999 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001000 else {
Shaohua Li297e3d82017-03-27 10:51:37 -07001001 if (time_before(tg->slice_end[rw],
1002 jiffies + tg->td->throtl_slice))
1003 throtl_extend_slice(tg, rw,
1004 jiffies + tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001005 }
1006
Tejun Heo0f3457f2013-05-14 13:52:32 -07001007 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
1008 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001009 if (wait)
1010 *wait = 0;
Chengguang Xu0b6bad72018-05-29 18:32:44 +08001011 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001012 }
1013
1014 max_wait = max(bps_wait, iops_wait);
1015
1016 if (wait)
1017 *wait = max_wait;
1018
1019 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001020 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001021
Chengguang Xu0b6bad72018-05-29 18:32:44 +08001022 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001023}
1024
1025static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1026{
1027 bool rw = bio_data_dir(bio);
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001028 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001029
1030 /* Charge the bio to the group */
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001031 tg->bytes_disp[rw] += bio_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001032 tg->io_disp[rw]++;
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001033 tg->last_bytes_disp[rw] += bio_size;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001034 tg->last_io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001035
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001036 /*
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001037 * BIO_THROTTLED is used to prevent the same bio to be throttled
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001038 * more than once as a throttled bio will go through blk-throtl the
1039 * second time when it eventually gets issued. Set it when a bio
1040 * is being charged to a tg.
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001041 */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001042 if (!bio_flagged(bio, BIO_THROTTLED))
1043 bio_set_flag(bio, BIO_THROTTLED);
Vivek Goyale43473b2010-09-15 17:06:35 -04001044}
1045
Tejun Heoc5cc2072013-05-14 13:52:38 -07001046/**
1047 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1048 * @bio: bio to add
1049 * @qn: qnode to use
1050 * @tg: the target throtl_grp
1051 *
1052 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1053 * tg->qnode_on_self[] is used.
1054 */
1055static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1056 struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001057{
Tejun Heo73f0d492013-05-14 13:52:35 -07001058 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001059 bool rw = bio_data_dir(bio);
1060
Tejun Heoc5cc2072013-05-14 13:52:38 -07001061 if (!qn)
1062 qn = &tg->qnode_on_self[rw];
1063
Tejun Heo0e9f4162013-05-14 13:52:35 -07001064 /*
1065 * If @tg doesn't currently have any bios queued in the same
1066 * direction, queueing @bio can change when @tg should be
1067 * dispatched. Mark that @tg was empty. This is automatically
1068 * cleaered on the next tg_update_disptime().
1069 */
1070 if (!sq->nr_queued[rw])
1071 tg->flags |= THROTL_TG_WAS_EMPTY;
1072
Tejun Heoc5cc2072013-05-14 13:52:38 -07001073 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1074
Tejun Heo73f0d492013-05-14 13:52:35 -07001075 sq->nr_queued[rw]++;
Tejun Heo77216b02013-05-14 13:52:36 -07001076 throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001077}
1078
Tejun Heo77216b02013-05-14 13:52:36 -07001079static void tg_update_disptime(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001080{
Tejun Heo73f0d492013-05-14 13:52:35 -07001081 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001082 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1083 struct bio *bio;
1084
Markus Elfringd609af32017-01-21 22:15:33 +01001085 bio = throtl_peek_queued(&sq->queued[READ]);
1086 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001087 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001088
Markus Elfringd609af32017-01-21 22:15:33 +01001089 bio = throtl_peek_queued(&sq->queued[WRITE]);
1090 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001091 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001092
1093 min_wait = min(read_wait, write_wait);
1094 disptime = jiffies + min_wait;
1095
Vivek Goyale43473b2010-09-15 17:06:35 -04001096 /* Update dispatch time */
Tejun Heo77216b02013-05-14 13:52:36 -07001097 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001098 tg->disptime = disptime;
Tejun Heo77216b02013-05-14 13:52:36 -07001099 throtl_enqueue_tg(tg);
Tejun Heo0e9f4162013-05-14 13:52:35 -07001100
1101 /* see throtl_add_bio_tg() */
1102 tg->flags &= ~THROTL_TG_WAS_EMPTY;
Vivek Goyale43473b2010-09-15 17:06:35 -04001103}
1104
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001105static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1106 struct throtl_grp *parent_tg, bool rw)
1107{
1108 if (throtl_slice_used(parent_tg, rw)) {
1109 throtl_start_new_slice_with_credit(parent_tg, rw,
1110 child_tg->slice_start[rw]);
1111 }
1112
1113}
1114
Tejun Heo77216b02013-05-14 13:52:36 -07001115static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -04001116{
Tejun Heo73f0d492013-05-14 13:52:35 -07001117 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001118 struct throtl_service_queue *parent_sq = sq->parent_sq;
1119 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001120 struct throtl_grp *tg_to_put = NULL;
Vivek Goyale43473b2010-09-15 17:06:35 -04001121 struct bio *bio;
1122
Tejun Heoc5cc2072013-05-14 13:52:38 -07001123 /*
1124 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1125 * from @tg may put its reference and @parent_sq might end up
1126 * getting released prematurely. Remember the tg to put and put it
1127 * after @bio is transferred to @parent_sq.
1128 */
1129 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
Tejun Heo73f0d492013-05-14 13:52:35 -07001130 sq->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -04001131
1132 throtl_charge_bio(tg, bio);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001133
1134 /*
1135 * If our parent is another tg, we just need to transfer @bio to
1136 * the parent using throtl_add_bio_tg(). If our parent is
1137 * @td->service_queue, @bio is ready to be issued. Put it on its
1138 * bio_lists[] and decrease total number queued. The caller is
1139 * responsible for issuing these bios.
1140 */
1141 if (parent_tg) {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001142 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001143 start_parent_slice_with_credit(tg, parent_tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001144 } else {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001145 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1146 &parent_sq->queued[rw]);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001147 BUG_ON(tg->td->nr_queued[rw] <= 0);
1148 tg->td->nr_queued[rw]--;
1149 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001150
Tejun Heo0f3457f2013-05-14 13:52:32 -07001151 throtl_trim_slice(tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001152
Tejun Heoc5cc2072013-05-14 13:52:38 -07001153 if (tg_to_put)
1154 blkg_put(tg_to_blkg(tg_to_put));
Vivek Goyale43473b2010-09-15 17:06:35 -04001155}
1156
Tejun Heo77216b02013-05-14 13:52:36 -07001157static int throtl_dispatch_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001158{
Tejun Heo73f0d492013-05-14 13:52:35 -07001159 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001160 unsigned int nr_reads = 0, nr_writes = 0;
1161 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +01001162 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -04001163 struct bio *bio;
1164
1165 /* Try to dispatch 75% READS and 25% WRITES */
1166
Tejun Heoc5cc2072013-05-14 13:52:38 -07001167 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001168 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001169
Tejun Heo77216b02013-05-14 13:52:36 -07001170 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001171 nr_reads++;
1172
1173 if (nr_reads >= max_nr_reads)
1174 break;
1175 }
1176
Tejun Heoc5cc2072013-05-14 13:52:38 -07001177 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001178 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001179
Tejun Heo77216b02013-05-14 13:52:36 -07001180 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001181 nr_writes++;
1182
1183 if (nr_writes >= max_nr_writes)
1184 break;
1185 }
1186
1187 return nr_reads + nr_writes;
1188}
1189
Tejun Heo651930b2013-05-14 13:52:35 -07001190static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -04001191{
1192 unsigned int nr_disp = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001193
1194 while (1) {
Tejun Heo73f0d492013-05-14 13:52:35 -07001195 struct throtl_grp *tg = throtl_rb_first(parent_sq);
Liu Bo2ab74cd2018-05-29 16:29:12 +08001196 struct throtl_service_queue *sq;
Vivek Goyale43473b2010-09-15 17:06:35 -04001197
1198 if (!tg)
1199 break;
1200
1201 if (time_before(jiffies, tg->disptime))
1202 break;
1203
Tejun Heo77216b02013-05-14 13:52:36 -07001204 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001205
Tejun Heo77216b02013-05-14 13:52:36 -07001206 nr_disp += throtl_dispatch_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001207
Liu Bo2ab74cd2018-05-29 16:29:12 +08001208 sq = &tg->service_queue;
Tejun Heo73f0d492013-05-14 13:52:35 -07001209 if (sq->nr_queued[0] || sq->nr_queued[1])
Tejun Heo77216b02013-05-14 13:52:36 -07001210 tg_update_disptime(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001211
1212 if (nr_disp >= throtl_quantum)
1213 break;
1214 }
1215
1216 return nr_disp;
1217}
1218
Shaohua Lic79892c2017-03-27 10:51:34 -07001219static bool throtl_can_upgrade(struct throtl_data *td,
1220 struct throtl_grp *this_tg);
Tejun Heo6e1a5702013-05-14 13:52:37 -07001221/**
1222 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1223 * @arg: the throtl_service_queue being serviced
1224 *
1225 * This timer is armed when a child throtl_grp with active bio's become
1226 * pending and queued on the service_queue's pending_tree and expires when
1227 * the first child throtl_grp should be dispatched. This function
Tejun Heo2e48a532013-05-14 13:52:38 -07001228 * dispatches bio's from the children throtl_grps to the parent
1229 * service_queue.
1230 *
1231 * If the parent's parent is another throtl_grp, dispatching is propagated
1232 * by either arming its pending_timer or repeating dispatch directly. If
1233 * the top-level service_tree is reached, throtl_data->dispatch_work is
1234 * kicked so that the ready bio's are issued.
Tejun Heo6e1a5702013-05-14 13:52:37 -07001235 */
Kees Cooke99e88a2017-10-16 14:43:17 -07001236static void throtl_pending_timer_fn(struct timer_list *t)
Tejun Heo69df0ab2013-05-14 13:52:36 -07001237{
Kees Cooke99e88a2017-10-16 14:43:17 -07001238 struct throtl_service_queue *sq = from_timer(sq, t, pending_timer);
Tejun Heo2e48a532013-05-14 13:52:38 -07001239 struct throtl_grp *tg = sq_to_tg(sq);
Tejun Heo69df0ab2013-05-14 13:52:36 -07001240 struct throtl_data *td = sq_to_td(sq);
Tejun Heocb761992013-05-14 13:52:31 -07001241 struct request_queue *q = td->queue;
Tejun Heo2e48a532013-05-14 13:52:38 -07001242 struct throtl_service_queue *parent_sq;
1243 bool dispatched;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001244 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001245
1246 spin_lock_irq(q->queue_lock);
Shaohua Lic79892c2017-03-27 10:51:34 -07001247 if (throtl_can_upgrade(td, NULL))
1248 throtl_upgrade_state(td);
1249
Tejun Heo2e48a532013-05-14 13:52:38 -07001250again:
1251 parent_sq = sq->parent_sq;
1252 dispatched = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001253
Tejun Heo7f52f982013-05-14 13:52:37 -07001254 while (true) {
1255 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo2e48a532013-05-14 13:52:38 -07001256 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1257 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04001258
Tejun Heo7f52f982013-05-14 13:52:37 -07001259 ret = throtl_select_dispatch(sq);
1260 if (ret) {
Tejun Heo7f52f982013-05-14 13:52:37 -07001261 throtl_log(sq, "bios disp=%u", ret);
1262 dispatched = true;
Tejun Heo651930b2013-05-14 13:52:35 -07001263 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001264
Tejun Heo7f52f982013-05-14 13:52:37 -07001265 if (throtl_schedule_next_dispatch(sq, false))
1266 break;
1267
1268 /* this dispatch windows is still open, relax and repeat */
1269 spin_unlock_irq(q->queue_lock);
1270 cpu_relax();
1271 spin_lock_irq(q->queue_lock);
1272 }
Tejun Heo6a525602013-05-14 13:52:32 -07001273
Tejun Heo2e48a532013-05-14 13:52:38 -07001274 if (!dispatched)
1275 goto out_unlock;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001276
Tejun Heo2e48a532013-05-14 13:52:38 -07001277 if (parent_sq) {
1278 /* @parent_sq is another throl_grp, propagate dispatch */
1279 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1280 tg_update_disptime(tg);
1281 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1282 /* window is already open, repeat dispatching */
1283 sq = parent_sq;
1284 tg = sq_to_tg(sq);
1285 goto again;
1286 }
1287 }
1288 } else {
1289 /* reached the top-level, queue issueing */
1290 queue_work(kthrotld_workqueue, &td->dispatch_work);
1291 }
1292out_unlock:
Tejun Heo6e1a5702013-05-14 13:52:37 -07001293 spin_unlock_irq(q->queue_lock);
1294}
1295
1296/**
1297 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1298 * @work: work item being executed
1299 *
1300 * This function is queued for execution when bio's reach the bio_lists[]
1301 * of throtl_data->service_queue. Those bio's are ready and issued by this
1302 * function.
1303 */
Fabian Frederick8876e1402014-04-17 21:41:16 +02001304static void blk_throtl_dispatch_work_fn(struct work_struct *work)
Tejun Heo6e1a5702013-05-14 13:52:37 -07001305{
1306 struct throtl_data *td = container_of(work, struct throtl_data,
1307 dispatch_work);
1308 struct throtl_service_queue *td_sq = &td->service_queue;
1309 struct request_queue *q = td->queue;
1310 struct bio_list bio_list_on_stack;
1311 struct bio *bio;
1312 struct blk_plug plug;
1313 int rw;
1314
1315 bio_list_init(&bio_list_on_stack);
1316
1317 spin_lock_irq(q->queue_lock);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001318 for (rw = READ; rw <= WRITE; rw++)
1319 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1320 bio_list_add(&bio_list_on_stack, bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001321 spin_unlock_irq(q->queue_lock);
1322
Tejun Heo6e1a5702013-05-14 13:52:37 -07001323 if (!bio_list_empty(&bio_list_on_stack)) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001324 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001325 while((bio = bio_list_pop(&bio_list_on_stack)))
1326 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001327 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001328 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001329}
1330
Tejun Heof95a04a2012-04-16 13:57:26 -07001331static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1332 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001333{
Tejun Heof95a04a2012-04-16 13:57:26 -07001334 struct throtl_grp *tg = pd_to_tg(pd);
1335 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001336
Shaohua Li2ab54922017-03-27 10:51:29 -07001337 if (v == U64_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001338 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001339 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001340}
1341
Tejun Heof95a04a2012-04-16 13:57:26 -07001342static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1343 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001344{
Tejun Heof95a04a2012-04-16 13:57:26 -07001345 struct throtl_grp *tg = pd_to_tg(pd);
1346 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001347
Shaohua Li2ab54922017-03-27 10:51:29 -07001348 if (v == UINT_MAX)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001349 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001350 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001351}
1352
Tejun Heo2da8ca82013-12-05 12:28:04 -05001353static int tg_print_conf_u64(struct seq_file *sf, void *v)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001354{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001355 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1356 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001357 return 0;
1358}
1359
Tejun Heo2da8ca82013-12-05 12:28:04 -05001360static int tg_print_conf_uint(struct seq_file *sf, void *v)
Vivek Goyale43473b2010-09-15 17:06:35 -04001361{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001362 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1363 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001364 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001365}
1366
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001367static void tg_conf_updated(struct throtl_grp *tg, bool global)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001368{
Tejun Heo69948b02015-08-18 14:55:32 -07001369 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo492eb212013-08-08 20:11:25 -04001370 struct cgroup_subsys_state *pos_css;
Tejun Heo69948b02015-08-18 14:55:32 -07001371 struct blkcg_gq *blkg;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001372
Tejun Heofda6f272013-05-14 13:52:36 -07001373 throtl_log(&tg->service_queue,
1374 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Shaohua Li9f626e32017-03-27 10:51:30 -07001375 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1376 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
Tejun Heo632b4492013-05-14 13:52:31 -07001377
1378 /*
Tejun Heo693e7512013-05-14 13:52:38 -07001379 * Update has_rules[] flags for the updated tg's subtree. A tg is
1380 * considered to have rules if either the tg itself or any of its
1381 * ancestors has rules. This identifies groups without any
1382 * restrictions in the whole hierarchy and allows them to bypass
1383 * blk-throttle.
1384 */
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001385 blkg_for_each_descendant_pre(blkg, pos_css,
1386 global ? tg->td->queue->root_blkg : tg_to_blkg(tg)) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001387 struct throtl_grp *this_tg = blkg_to_tg(blkg);
1388 struct throtl_grp *parent_tg;
1389
1390 tg_update_has_rules(this_tg);
1391 /* ignore root/second level */
1392 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) || !blkg->parent ||
1393 !blkg->parent->parent)
1394 continue;
1395 parent_tg = blkg_to_tg(blkg->parent);
1396 /*
1397 * make sure all children has lower idle time threshold and
1398 * higher latency target
1399 */
1400 this_tg->idletime_threshold = min(this_tg->idletime_threshold,
1401 parent_tg->idletime_threshold);
1402 this_tg->latency_target = max(this_tg->latency_target,
1403 parent_tg->latency_target);
1404 }
Tejun Heo693e7512013-05-14 13:52:38 -07001405
1406 /*
Tejun Heo632b4492013-05-14 13:52:31 -07001407 * We're already holding queue_lock and know @tg is valid. Let's
1408 * apply the new config directly.
1409 *
1410 * Restart the slices for both READ and WRITES. It might happen
1411 * that a group's limit are dropped suddenly and we don't want to
1412 * account recently dispatched IO with new low rate.
1413 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001414 throtl_start_new_slice(tg, 0);
1415 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -07001416
Tejun Heo5b2c16a2013-05-14 13:52:32 -07001417 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo77216b02013-05-14 13:52:36 -07001418 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07001419 throtl_schedule_next_dispatch(sq->parent_sq, true);
Tejun Heo632b4492013-05-14 13:52:31 -07001420 }
Tejun Heo69948b02015-08-18 14:55:32 -07001421}
Tejun Heo60c2bc22012-04-01 14:38:43 -07001422
Tejun Heo69948b02015-08-18 14:55:32 -07001423static ssize_t tg_set_conf(struct kernfs_open_file *of,
1424 char *buf, size_t nbytes, loff_t off, bool is_u64)
1425{
1426 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1427 struct blkg_conf_ctx ctx;
1428 struct throtl_grp *tg;
1429 int ret;
1430 u64 v;
1431
1432 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1433 if (ret)
1434 return ret;
1435
1436 ret = -EINVAL;
1437 if (sscanf(ctx.body, "%llu", &v) != 1)
1438 goto out_finish;
1439 if (!v)
Shaohua Li2ab54922017-03-27 10:51:29 -07001440 v = U64_MAX;
Tejun Heo69948b02015-08-18 14:55:32 -07001441
1442 tg = blkg_to_tg(ctx.blkg);
1443
1444 if (is_u64)
1445 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1446 else
1447 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
1448
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001449 tg_conf_updated(tg, false);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001450 ret = 0;
1451out_finish:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001452 blkg_conf_finish(&ctx);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001453 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001454}
1455
Tejun Heo451af502014-05-13 12:16:21 -04001456static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1457 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001458{
Tejun Heo451af502014-05-13 12:16:21 -04001459 return tg_set_conf(of, buf, nbytes, off, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001460}
1461
Tejun Heo451af502014-05-13 12:16:21 -04001462static ssize_t tg_set_conf_uint(struct kernfs_open_file *of,
1463 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001464{
Tejun Heo451af502014-05-13 12:16:21 -04001465 return tg_set_conf(of, buf, nbytes, off, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001466}
1467
Tejun Heo880f50e2015-08-18 14:55:30 -07001468static struct cftype throtl_legacy_files[] = {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001469 {
1470 .name = "throttle.read_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001471 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001472 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001473 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001474 },
1475 {
1476 .name = "throttle.write_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001477 .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001478 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001479 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001480 },
1481 {
1482 .name = "throttle.read_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001483 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001484 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001485 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001486 },
1487 {
1488 .name = "throttle.write_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001489 .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001490 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001491 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001492 },
1493 {
1494 .name = "throttle.io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001495 .private = (unsigned long)&blkcg_policy_throtl,
1496 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001497 },
1498 {
weiping zhang17534c62017-12-11 22:56:25 +08001499 .name = "throttle.io_service_bytes_recursive",
1500 .private = (unsigned long)&blkcg_policy_throtl,
1501 .seq_show = blkg_print_stat_bytes_recursive,
1502 },
1503 {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001504 .name = "throttle.io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001505 .private = (unsigned long)&blkcg_policy_throtl,
1506 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001507 },
weiping zhang17534c62017-12-11 22:56:25 +08001508 {
1509 .name = "throttle.io_serviced_recursive",
1510 .private = (unsigned long)&blkcg_policy_throtl,
1511 .seq_show = blkg_print_stat_ios_recursive,
1512 },
Tejun Heo60c2bc22012-04-01 14:38:43 -07001513 { } /* terminate */
1514};
1515
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001516static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001517 int off)
1518{
1519 struct throtl_grp *tg = pd_to_tg(pd);
1520 const char *dname = blkg_dev_name(pd->blkg);
1521 char bufs[4][21] = { "max", "max", "max", "max" };
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001522 u64 bps_dft;
1523 unsigned int iops_dft;
Shaohua Liada75b62017-03-27 10:51:42 -07001524 char idle_time[26] = "";
Shaohua Liec809912017-03-27 10:51:44 -07001525 char latency_time[26] = "";
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001526
1527 if (!dname)
1528 return 0;
Shaohua Li9f626e32017-03-27 10:51:30 -07001529
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001530 if (off == LIMIT_LOW) {
1531 bps_dft = 0;
1532 iops_dft = 0;
1533 } else {
1534 bps_dft = U64_MAX;
1535 iops_dft = UINT_MAX;
1536 }
1537
1538 if (tg->bps_conf[READ][off] == bps_dft &&
1539 tg->bps_conf[WRITE][off] == bps_dft &&
1540 tg->iops_conf[READ][off] == iops_dft &&
Shaohua Liada75b62017-03-27 10:51:42 -07001541 tg->iops_conf[WRITE][off] == iops_dft &&
Shaohua Liec809912017-03-27 10:51:44 -07001542 (off != LIMIT_LOW ||
Shaohua Lib4f428e2017-05-17 13:07:27 -07001543 (tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD &&
Shaohua Li5b81fc32017-05-17 13:07:24 -07001544 tg->latency_target_conf == DFL_LATENCY_TARGET)))
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001545 return 0;
1546
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001547 if (tg->bps_conf[READ][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001548 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001549 tg->bps_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001550 if (tg->bps_conf[WRITE][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001551 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001552 tg->bps_conf[WRITE][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001553 if (tg->iops_conf[READ][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001554 snprintf(bufs[2], sizeof(bufs[2]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001555 tg->iops_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001556 if (tg->iops_conf[WRITE][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001557 snprintf(bufs[3], sizeof(bufs[3]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001558 tg->iops_conf[WRITE][off]);
Shaohua Liada75b62017-03-27 10:51:42 -07001559 if (off == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001560 if (tg->idletime_threshold_conf == ULONG_MAX)
Shaohua Liada75b62017-03-27 10:51:42 -07001561 strcpy(idle_time, " idle=max");
1562 else
1563 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
Shaohua Li5b81fc32017-05-17 13:07:24 -07001564 tg->idletime_threshold_conf);
Shaohua Liec809912017-03-27 10:51:44 -07001565
Shaohua Li5b81fc32017-05-17 13:07:24 -07001566 if (tg->latency_target_conf == ULONG_MAX)
Shaohua Liec809912017-03-27 10:51:44 -07001567 strcpy(latency_time, " latency=max");
1568 else
1569 snprintf(latency_time, sizeof(latency_time),
Shaohua Li5b81fc32017-05-17 13:07:24 -07001570 " latency=%lu", tg->latency_target_conf);
Shaohua Liada75b62017-03-27 10:51:42 -07001571 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001572
Shaohua Liec809912017-03-27 10:51:44 -07001573 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1574 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1575 latency_time);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001576 return 0;
1577}
1578
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001579static int tg_print_limit(struct seq_file *sf, void *v)
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001580{
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001581 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001582 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1583 return 0;
1584}
1585
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001586static ssize_t tg_set_limit(struct kernfs_open_file *of,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001587 char *buf, size_t nbytes, loff_t off)
1588{
1589 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1590 struct blkg_conf_ctx ctx;
1591 struct throtl_grp *tg;
1592 u64 v[4];
Shaohua Liada75b62017-03-27 10:51:42 -07001593 unsigned long idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001594 unsigned long latency_time;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001595 int ret;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001596 int index = of_cft(of)->private;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001597
1598 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1599 if (ret)
1600 return ret;
1601
1602 tg = blkg_to_tg(ctx.blkg);
1603
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001604 v[0] = tg->bps_conf[READ][index];
1605 v[1] = tg->bps_conf[WRITE][index];
1606 v[2] = tg->iops_conf[READ][index];
1607 v[3] = tg->iops_conf[WRITE][index];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001608
Shaohua Li5b81fc32017-05-17 13:07:24 -07001609 idle_time = tg->idletime_threshold_conf;
1610 latency_time = tg->latency_target_conf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001611 while (true) {
1612 char tok[27]; /* wiops=18446744073709551616 */
1613 char *p;
Shaohua Li2ab54922017-03-27 10:51:29 -07001614 u64 val = U64_MAX;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001615 int len;
1616
1617 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1618 break;
1619 if (tok[0] == '\0')
1620 break;
1621 ctx.body += len;
1622
1623 ret = -EINVAL;
1624 p = tok;
1625 strsep(&p, "=");
1626 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1627 goto out_finish;
1628
1629 ret = -ERANGE;
1630 if (!val)
1631 goto out_finish;
1632
1633 ret = -EINVAL;
1634 if (!strcmp(tok, "rbps"))
1635 v[0] = val;
1636 else if (!strcmp(tok, "wbps"))
1637 v[1] = val;
1638 else if (!strcmp(tok, "riops"))
1639 v[2] = min_t(u64, val, UINT_MAX);
1640 else if (!strcmp(tok, "wiops"))
1641 v[3] = min_t(u64, val, UINT_MAX);
Shaohua Liada75b62017-03-27 10:51:42 -07001642 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1643 idle_time = val;
Shaohua Liec809912017-03-27 10:51:44 -07001644 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1645 latency_time = val;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001646 else
1647 goto out_finish;
1648 }
1649
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001650 tg->bps_conf[READ][index] = v[0];
1651 tg->bps_conf[WRITE][index] = v[1];
1652 tg->iops_conf[READ][index] = v[2];
1653 tg->iops_conf[WRITE][index] = v[3];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001654
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001655 if (index == LIMIT_MAX) {
1656 tg->bps[READ][index] = v[0];
1657 tg->bps[WRITE][index] = v[1];
1658 tg->iops[READ][index] = v[2];
1659 tg->iops[WRITE][index] = v[3];
1660 }
1661 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1662 tg->bps_conf[READ][LIMIT_MAX]);
1663 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1664 tg->bps_conf[WRITE][LIMIT_MAX]);
1665 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1666 tg->iops_conf[READ][LIMIT_MAX]);
1667 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1668 tg->iops_conf[WRITE][LIMIT_MAX]);
Shaohua Lib4f428e2017-05-17 13:07:27 -07001669 tg->idletime_threshold_conf = idle_time;
1670 tg->latency_target_conf = latency_time;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001671
Shaohua Lib4f428e2017-05-17 13:07:27 -07001672 /* force user to configure all settings for low limit */
1673 if (!(tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW] ||
1674 tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) ||
1675 tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD ||
1676 tg->latency_target_conf == DFL_LATENCY_TARGET) {
1677 tg->bps[READ][LIMIT_LOW] = 0;
1678 tg->bps[WRITE][LIMIT_LOW] = 0;
1679 tg->iops[READ][LIMIT_LOW] = 0;
1680 tg->iops[WRITE][LIMIT_LOW] = 0;
1681 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
1682 tg->latency_target = DFL_LATENCY_TARGET;
1683 } else if (index == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001684 tg->idletime_threshold = tg->idletime_threshold_conf;
Shaohua Li5b81fc32017-05-17 13:07:24 -07001685 tg->latency_target = tg->latency_target_conf;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001686 }
Shaohua Lib4f428e2017-05-17 13:07:27 -07001687
1688 blk_throtl_update_limit_valid(tg->td);
1689 if (tg->td->limit_valid[LIMIT_LOW]) {
1690 if (index == LIMIT_LOW)
1691 tg->td->limit_index = LIMIT_LOW;
1692 } else
1693 tg->td->limit_index = LIMIT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001694 tg_conf_updated(tg, index == LIMIT_LOW &&
1695 tg->td->limit_valid[LIMIT_LOW]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001696 ret = 0;
1697out_finish:
1698 blkg_conf_finish(&ctx);
1699 return ret ?: nbytes;
1700}
1701
1702static struct cftype throtl_files[] = {
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001703#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1704 {
1705 .name = "low",
1706 .flags = CFTYPE_NOT_ON_ROOT,
1707 .seq_show = tg_print_limit,
1708 .write = tg_set_limit,
1709 .private = LIMIT_LOW,
1710 },
1711#endif
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001712 {
1713 .name = "max",
1714 .flags = CFTYPE_NOT_ON_ROOT,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001715 .seq_show = tg_print_limit,
1716 .write = tg_set_limit,
1717 .private = LIMIT_MAX,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001718 },
1719 { } /* terminate */
1720};
1721
Vivek Goyalda527772011-03-02 19:05:33 -05001722static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001723{
1724 struct throtl_data *td = q->td;
1725
Tejun Heo69df0ab2013-05-14 13:52:36 -07001726 cancel_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001727}
1728
Tejun Heo3c798392012-04-16 13:57:25 -07001729static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001730 .dfl_cftypes = throtl_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001731 .legacy_cftypes = throtl_legacy_files,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001732
Tejun Heo001bea72015-08-18 14:55:11 -07001733 .pd_alloc_fn = throtl_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001734 .pd_init_fn = throtl_pd_init,
Tejun Heo693e7512013-05-14 13:52:38 -07001735 .pd_online_fn = throtl_pd_online,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001736 .pd_offline_fn = throtl_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07001737 .pd_free_fn = throtl_pd_free,
Vivek Goyale43473b2010-09-15 17:06:35 -04001738};
1739
Shaohua Li3f0abd82017-03-27 10:51:35 -07001740static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1741{
1742 unsigned long rtime = jiffies, wtime = jiffies;
1743
1744 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1745 rtime = tg->last_low_overflow_time[READ];
1746 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1747 wtime = tg->last_low_overflow_time[WRITE];
1748 return min(rtime, wtime);
1749}
1750
1751/* tg should not be an intermediate node */
1752static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1753{
1754 struct throtl_service_queue *parent_sq;
1755 struct throtl_grp *parent = tg;
1756 unsigned long ret = __tg_last_low_overflow_time(tg);
1757
1758 while (true) {
1759 parent_sq = parent->service_queue.parent_sq;
1760 parent = sq_to_tg(parent_sq);
1761 if (!parent)
1762 break;
1763
1764 /*
1765 * The parent doesn't have low limit, it always reaches low
1766 * limit. Its overflow time is useless for children
1767 */
1768 if (!parent->bps[READ][LIMIT_LOW] &&
1769 !parent->iops[READ][LIMIT_LOW] &&
1770 !parent->bps[WRITE][LIMIT_LOW] &&
1771 !parent->iops[WRITE][LIMIT_LOW])
1772 continue;
1773 if (time_after(__tg_last_low_overflow_time(parent), ret))
1774 ret = __tg_last_low_overflow_time(parent);
1775 }
1776 return ret;
1777}
1778
Shaohua Li9e234ee2017-03-27 10:51:41 -07001779static bool throtl_tg_is_idle(struct throtl_grp *tg)
1780{
1781 /*
1782 * cgroup is idle if:
1783 * - single idle is too long, longer than a fixed value (in case user
Shaohua Lib4f428e2017-05-17 13:07:27 -07001784 * configure a too big threshold) or 4 times of idletime threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001785 * - average think time is more than threshold
Shaohua Li53696b82017-03-27 15:19:43 -07001786 * - IO latency is largely below threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001787 */
Shaohua Lib4f428e2017-05-17 13:07:27 -07001788 unsigned long time;
Shaohua Li4cff7292017-05-17 13:07:25 -07001789 bool ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001790
Shaohua Lib4f428e2017-05-17 13:07:27 -07001791 time = min_t(unsigned long, MAX_IDLE_TIME, 4 * tg->idletime_threshold);
1792 ret = tg->latency_target == DFL_LATENCY_TARGET ||
1793 tg->idletime_threshold == DFL_IDLE_THRESHOLD ||
1794 (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1795 tg->avg_idletime > tg->idletime_threshold ||
1796 (tg->latency_target && tg->bio_cnt &&
Shaohua Li53696b82017-03-27 15:19:43 -07001797 tg->bad_bio_cnt * 5 < tg->bio_cnt);
Shaohua Li4cff7292017-05-17 13:07:25 -07001798 throtl_log(&tg->service_queue,
1799 "avg_idle=%ld, idle_threshold=%ld, bad_bio=%d, total_bio=%d, is_idle=%d, scale=%d",
1800 tg->avg_idletime, tg->idletime_threshold, tg->bad_bio_cnt,
1801 tg->bio_cnt, ret, tg->td->scale);
1802 return ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001803}
1804
Shaohua Lic79892c2017-03-27 10:51:34 -07001805static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1806{
1807 struct throtl_service_queue *sq = &tg->service_queue;
1808 bool read_limit, write_limit;
1809
1810 /*
1811 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1812 * reaches), it's ok to upgrade to next limit
1813 */
1814 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1815 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1816 if (!read_limit && !write_limit)
1817 return true;
1818 if (read_limit && sq->nr_queued[READ] &&
1819 (!write_limit || sq->nr_queued[WRITE]))
1820 return true;
1821 if (write_limit && sq->nr_queued[WRITE] &&
1822 (!read_limit || sq->nr_queued[READ]))
1823 return true;
Shaohua Liaec24242017-03-27 10:51:39 -07001824
1825 if (time_after_eq(jiffies,
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001826 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1827 throtl_tg_is_idle(tg))
Shaohua Liaec24242017-03-27 10:51:39 -07001828 return true;
Shaohua Lic79892c2017-03-27 10:51:34 -07001829 return false;
1830}
1831
1832static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1833{
1834 while (true) {
1835 if (throtl_tg_can_upgrade(tg))
1836 return true;
1837 tg = sq_to_tg(tg->service_queue.parent_sq);
1838 if (!tg || !tg_to_blkg(tg)->parent)
1839 return false;
1840 }
1841 return false;
1842}
1843
1844static bool throtl_can_upgrade(struct throtl_data *td,
1845 struct throtl_grp *this_tg)
1846{
1847 struct cgroup_subsys_state *pos_css;
1848 struct blkcg_gq *blkg;
1849
1850 if (td->limit_index != LIMIT_LOW)
1851 return false;
1852
Shaohua Li297e3d82017-03-27 10:51:37 -07001853 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001854 return false;
1855
Shaohua Lic79892c2017-03-27 10:51:34 -07001856 rcu_read_lock();
1857 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1858 struct throtl_grp *tg = blkg_to_tg(blkg);
1859
1860 if (tg == this_tg)
1861 continue;
1862 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1863 continue;
1864 if (!throtl_hierarchy_can_upgrade(tg)) {
1865 rcu_read_unlock();
1866 return false;
1867 }
1868 }
1869 rcu_read_unlock();
1870 return true;
1871}
1872
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001873static void throtl_upgrade_check(struct throtl_grp *tg)
1874{
1875 unsigned long now = jiffies;
1876
1877 if (tg->td->limit_index != LIMIT_LOW)
1878 return;
1879
1880 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1881 return;
1882
1883 tg->last_check_time = now;
1884
1885 if (!time_after_eq(now,
1886 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1887 return;
1888
1889 if (throtl_can_upgrade(tg->td, NULL))
1890 throtl_upgrade_state(tg->td);
1891}
1892
Shaohua Lic79892c2017-03-27 10:51:34 -07001893static void throtl_upgrade_state(struct throtl_data *td)
1894{
1895 struct cgroup_subsys_state *pos_css;
1896 struct blkcg_gq *blkg;
1897
Shaohua Li4cff7292017-05-17 13:07:25 -07001898 throtl_log(&td->service_queue, "upgrade to max");
Shaohua Lic79892c2017-03-27 10:51:34 -07001899 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001900 td->low_upgrade_time = jiffies;
Shaohua Li7394e312017-03-27 10:51:40 -07001901 td->scale = 0;
Shaohua Lic79892c2017-03-27 10:51:34 -07001902 rcu_read_lock();
1903 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1904 struct throtl_grp *tg = blkg_to_tg(blkg);
1905 struct throtl_service_queue *sq = &tg->service_queue;
1906
1907 tg->disptime = jiffies - 1;
1908 throtl_select_dispatch(sq);
Joseph Qi4f02fb72017-09-30 14:38:49 +08001909 throtl_schedule_next_dispatch(sq, true);
Shaohua Lic79892c2017-03-27 10:51:34 -07001910 }
1911 rcu_read_unlock();
1912 throtl_select_dispatch(&td->service_queue);
Joseph Qi4f02fb72017-09-30 14:38:49 +08001913 throtl_schedule_next_dispatch(&td->service_queue, true);
Shaohua Lic79892c2017-03-27 10:51:34 -07001914 queue_work(kthrotld_workqueue, &td->dispatch_work);
1915}
1916
Shaohua Li3f0abd82017-03-27 10:51:35 -07001917static void throtl_downgrade_state(struct throtl_data *td, int new)
1918{
Shaohua Li7394e312017-03-27 10:51:40 -07001919 td->scale /= 2;
1920
Shaohua Li4cff7292017-05-17 13:07:25 -07001921 throtl_log(&td->service_queue, "downgrade, scale %d", td->scale);
Shaohua Li7394e312017-03-27 10:51:40 -07001922 if (td->scale) {
1923 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1924 return;
1925 }
1926
Shaohua Li3f0abd82017-03-27 10:51:35 -07001927 td->limit_index = new;
1928 td->low_downgrade_time = jiffies;
1929}
1930
1931static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1932{
1933 struct throtl_data *td = tg->td;
1934 unsigned long now = jiffies;
1935
1936 /*
1937 * If cgroup is below low limit, consider downgrade and throttle other
1938 * cgroups
1939 */
Shaohua Li297e3d82017-03-27 10:51:37 -07001940 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1941 time_after_eq(now, tg_last_low_overflow_time(tg) +
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001942 td->throtl_slice) &&
1943 (!throtl_tg_is_idle(tg) ||
1944 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001945 return true;
1946 return false;
1947}
1948
1949static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1950{
1951 while (true) {
1952 if (!throtl_tg_can_downgrade(tg))
1953 return false;
1954 tg = sq_to_tg(tg->service_queue.parent_sq);
1955 if (!tg || !tg_to_blkg(tg)->parent)
1956 break;
1957 }
1958 return true;
1959}
1960
1961static void throtl_downgrade_check(struct throtl_grp *tg)
1962{
1963 uint64_t bps;
1964 unsigned int iops;
1965 unsigned long elapsed_time;
1966 unsigned long now = jiffies;
1967
1968 if (tg->td->limit_index != LIMIT_MAX ||
1969 !tg->td->limit_valid[LIMIT_LOW])
1970 return;
1971 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1972 return;
Shaohua Li297e3d82017-03-27 10:51:37 -07001973 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001974 return;
1975
1976 elapsed_time = now - tg->last_check_time;
1977 tg->last_check_time = now;
1978
Shaohua Li297e3d82017-03-27 10:51:37 -07001979 if (time_before(now, tg_last_low_overflow_time(tg) +
1980 tg->td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001981 return;
1982
1983 if (tg->bps[READ][LIMIT_LOW]) {
1984 bps = tg->last_bytes_disp[READ] * HZ;
1985 do_div(bps, elapsed_time);
1986 if (bps >= tg->bps[READ][LIMIT_LOW])
1987 tg->last_low_overflow_time[READ] = now;
1988 }
1989
1990 if (tg->bps[WRITE][LIMIT_LOW]) {
1991 bps = tg->last_bytes_disp[WRITE] * HZ;
1992 do_div(bps, elapsed_time);
1993 if (bps >= tg->bps[WRITE][LIMIT_LOW])
1994 tg->last_low_overflow_time[WRITE] = now;
1995 }
1996
1997 if (tg->iops[READ][LIMIT_LOW]) {
1998 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
1999 if (iops >= tg->iops[READ][LIMIT_LOW])
2000 tg->last_low_overflow_time[READ] = now;
2001 }
2002
2003 if (tg->iops[WRITE][LIMIT_LOW]) {
2004 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
2005 if (iops >= tg->iops[WRITE][LIMIT_LOW])
2006 tg->last_low_overflow_time[WRITE] = now;
2007 }
2008
2009 /*
2010 * If cgroup is below low limit, consider downgrade and throttle other
2011 * cgroups
2012 */
2013 if (throtl_hierarchy_can_downgrade(tg))
2014 throtl_downgrade_state(tg->td, LIMIT_LOW);
2015
2016 tg->last_bytes_disp[READ] = 0;
2017 tg->last_bytes_disp[WRITE] = 0;
2018 tg->last_io_disp[READ] = 0;
2019 tg->last_io_disp[WRITE] = 0;
2020}
2021
Shaohua Li9e234ee2017-03-27 10:51:41 -07002022static void blk_throtl_update_idletime(struct throtl_grp *tg)
2023{
2024 unsigned long now = ktime_get_ns() >> 10;
2025 unsigned long last_finish_time = tg->last_finish_time;
2026
2027 if (now <= last_finish_time || last_finish_time == 0 ||
2028 last_finish_time == tg->checked_last_finish_time)
2029 return;
2030
2031 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
2032 tg->checked_last_finish_time = last_finish_time;
2033}
2034
Shaohua Lib9147dd2017-03-27 15:19:42 -07002035#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2036static void throtl_update_latency_buckets(struct throtl_data *td)
2037{
Joseph Qib889bf62017-11-21 09:38:30 +08002038 struct avg_latency_bucket avg_latency[2][LATENCY_BUCKET_SIZE];
2039 int i, cpu, rw;
2040 unsigned long last_latency[2] = { 0 };
2041 unsigned long latency[2];
Shaohua Lib9147dd2017-03-27 15:19:42 -07002042
2043 if (!blk_queue_nonrot(td->queue))
2044 return;
2045 if (time_before(jiffies, td->last_calculate_time + HZ))
2046 return;
2047 td->last_calculate_time = jiffies;
2048
2049 memset(avg_latency, 0, sizeof(avg_latency));
Joseph Qib889bf62017-11-21 09:38:30 +08002050 for (rw = READ; rw <= WRITE; rw++) {
2051 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2052 struct latency_bucket *tmp = &td->tmp_buckets[rw][i];
Shaohua Lib9147dd2017-03-27 15:19:42 -07002053
Joseph Qib889bf62017-11-21 09:38:30 +08002054 for_each_possible_cpu(cpu) {
2055 struct latency_bucket *bucket;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002056
Joseph Qib889bf62017-11-21 09:38:30 +08002057 /* this isn't race free, but ok in practice */
2058 bucket = per_cpu_ptr(td->latency_buckets[rw],
2059 cpu);
2060 tmp->total_latency += bucket[i].total_latency;
2061 tmp->samples += bucket[i].samples;
2062 bucket[i].total_latency = 0;
2063 bucket[i].samples = 0;
2064 }
Shaohua Lib9147dd2017-03-27 15:19:42 -07002065
Joseph Qib889bf62017-11-21 09:38:30 +08002066 if (tmp->samples >= 32) {
2067 int samples = tmp->samples;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002068
Joseph Qib889bf62017-11-21 09:38:30 +08002069 latency[rw] = tmp->total_latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002070
Joseph Qib889bf62017-11-21 09:38:30 +08002071 tmp->total_latency = 0;
2072 tmp->samples = 0;
2073 latency[rw] /= samples;
2074 if (latency[rw] == 0)
2075 continue;
2076 avg_latency[rw][i].latency = latency[rw];
2077 }
Shaohua Lib9147dd2017-03-27 15:19:42 -07002078 }
2079 }
2080
Joseph Qib889bf62017-11-21 09:38:30 +08002081 for (rw = READ; rw <= WRITE; rw++) {
2082 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2083 if (!avg_latency[rw][i].latency) {
2084 if (td->avg_buckets[rw][i].latency < last_latency[rw])
2085 td->avg_buckets[rw][i].latency =
2086 last_latency[rw];
2087 continue;
2088 }
2089
2090 if (!td->avg_buckets[rw][i].valid)
2091 latency[rw] = avg_latency[rw][i].latency;
2092 else
2093 latency[rw] = (td->avg_buckets[rw][i].latency * 7 +
2094 avg_latency[rw][i].latency) >> 3;
2095
2096 td->avg_buckets[rw][i].latency = max(latency[rw],
2097 last_latency[rw]);
2098 td->avg_buckets[rw][i].valid = true;
2099 last_latency[rw] = td->avg_buckets[rw][i].latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002100 }
Shaohua Lib9147dd2017-03-27 15:19:42 -07002101 }
Shaohua Li4cff7292017-05-17 13:07:25 -07002102
2103 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2104 throtl_log(&td->service_queue,
Joseph Qib889bf62017-11-21 09:38:30 +08002105 "Latency bucket %d: read latency=%ld, read valid=%d, "
2106 "write latency=%ld, write valid=%d", i,
2107 td->avg_buckets[READ][i].latency,
2108 td->avg_buckets[READ][i].valid,
2109 td->avg_buckets[WRITE][i].latency,
2110 td->avg_buckets[WRITE][i].valid);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002111}
2112#else
2113static inline void throtl_update_latency_buckets(struct throtl_data *td)
2114{
2115}
2116#endif
2117
Dennis Zhoub5f29542018-11-01 17:24:10 -04002118static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2119{
2120#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2121 /* fallback to root_blkg if we fail to get a blkg ref */
2122 if (bio->bi_css && (bio_associate_blkg(bio, tg_to_blkg(tg)) == -ENODEV))
2123 bio_associate_blkg(bio, bio->bi_disk->queue->root_blkg);
2124 bio_issue_init(&bio->bi_issue, bio_sectors(bio));
2125#endif
2126}
2127
Tejun Heoae118892015-08-18 14:55:20 -07002128bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2129 struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04002130{
Tejun Heoc5cc2072013-05-14 13:52:38 -07002131 struct throtl_qnode *qn = NULL;
Dennis Zhoub5f29542018-11-01 17:24:10 -04002132 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
Tejun Heo73f0d492013-05-14 13:52:35 -07002133 struct throtl_service_queue *sq;
Tejun Heo0e9f4162013-05-14 13:52:35 -07002134 bool rw = bio_data_dir(bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002135 bool throttled = false;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002136 struct throtl_data *td = tg->td;
Vivek Goyale43473b2010-09-15 17:06:35 -04002137
Tejun Heoae118892015-08-18 14:55:20 -07002138 WARN_ON_ONCE(!rcu_read_lock_held());
2139
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002140 /* see throtl_charge_bio() */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002141 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
Tejun Heobc16a4f2011-10-19 14:33:01 +02002142 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04002143
2144 spin_lock_irq(q->queue_lock);
Tejun Heoc9589f02015-08-18 14:55:19 -07002145
Shaohua Lib9147dd2017-03-27 15:19:42 -07002146 throtl_update_latency_buckets(td);
2147
Tejun Heoc9589f02015-08-18 14:55:19 -07002148 if (unlikely(blk_queue_bypass(q)))
Tejun Heobc16a4f2011-10-19 14:33:01 +02002149 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04002150
Dennis Zhoub5f29542018-11-01 17:24:10 -04002151 blk_throtl_assoc_bio(tg, bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002152 blk_throtl_update_idletime(tg);
2153
Tejun Heo73f0d492013-05-14 13:52:35 -07002154 sq = &tg->service_queue;
2155
Shaohua Lic79892c2017-03-27 10:51:34 -07002156again:
Tejun Heo9e660ac2013-05-14 13:52:38 -07002157 while (true) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002158 if (tg->last_low_overflow_time[rw] == 0)
2159 tg->last_low_overflow_time[rw] = jiffies;
2160 throtl_downgrade_check(tg);
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07002161 throtl_upgrade_check(tg);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002162 /* throtl is FIFO - if bios are already queued, should queue */
2163 if (sq->nr_queued[rw])
2164 break;
Vivek Goyalde701c72011-03-07 21:09:32 +01002165
Tejun Heo9e660ac2013-05-14 13:52:38 -07002166 /* if above limits, break to queue */
Shaohua Lic79892c2017-03-27 10:51:34 -07002167 if (!tg_may_dispatch(tg, bio, NULL)) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002168 tg->last_low_overflow_time[rw] = jiffies;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002169 if (throtl_can_upgrade(td, tg)) {
2170 throtl_upgrade_state(td);
Shaohua Lic79892c2017-03-27 10:51:34 -07002171 goto again;
2172 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002173 break;
Shaohua Lic79892c2017-03-27 10:51:34 -07002174 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002175
2176 /* within limits, let's charge and dispatch directly */
Vivek Goyale43473b2010-09-15 17:06:35 -04002177 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01002178
2179 /*
2180 * We need to trim slice even when bios are not being queued
2181 * otherwise it might happen that a bio is not queued for
2182 * a long time and slice keeps on extending and trim is not
2183 * called for a long time. Now if limits are reduced suddenly
2184 * we take into account all the IO dispatched so far at new
2185 * low rate and * newly queued IO gets a really long dispatch
2186 * time.
2187 *
2188 * So keep on trimming slice even if bio is not queued.
2189 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07002190 throtl_trim_slice(tg, rw);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002191
2192 /*
2193 * @bio passed through this layer without being throttled.
2194 * Climb up the ladder. If we''re already at the top, it
2195 * can be executed directly.
2196 */
Tejun Heoc5cc2072013-05-14 13:52:38 -07002197 qn = &tg->qnode_on_parent[rw];
Tejun Heo9e660ac2013-05-14 13:52:38 -07002198 sq = sq->parent_sq;
2199 tg = sq_to_tg(sq);
2200 if (!tg)
2201 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04002202 }
2203
Tejun Heo9e660ac2013-05-14 13:52:38 -07002204 /* out-of-limit, queue to @tg */
Tejun Heofda6f272013-05-14 13:52:36 -07002205 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2206 rw == READ ? 'R' : 'W',
Shaohua Li9f626e32017-03-27 10:51:30 -07002207 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2208 tg_bps_limit(tg, rw),
2209 tg->io_disp[rw], tg_iops_limit(tg, rw),
Tejun Heofda6f272013-05-14 13:52:36 -07002210 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04002211
Shaohua Li3f0abd82017-03-27 10:51:35 -07002212 tg->last_low_overflow_time[rw] = jiffies;
2213
Shaohua Lib9147dd2017-03-27 15:19:42 -07002214 td->nr_queued[rw]++;
Tejun Heoc5cc2072013-05-14 13:52:38 -07002215 throtl_add_bio_tg(bio, qn, tg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002216 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04002217
Tejun Heo7f52f982013-05-14 13:52:37 -07002218 /*
2219 * Update @tg's dispatch time and force schedule dispatch if @tg
2220 * was empty before @bio. The forced scheduling isn't likely to
2221 * cause undue delay as @bio is likely to be dispatched directly if
2222 * its @tg's disptime is not in the future.
2223 */
Tejun Heo0e9f4162013-05-14 13:52:35 -07002224 if (tg->flags & THROTL_TG_WAS_EMPTY) {
Tejun Heo77216b02013-05-14 13:52:36 -07002225 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07002226 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
Vivek Goyale43473b2010-09-15 17:06:35 -04002227 }
2228
Tejun Heobc16a4f2011-10-19 14:33:01 +02002229out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04002230 spin_unlock_irq(q->queue_lock);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002231out:
Shaohua Li111be882017-12-20 11:10:17 -07002232 bio_set_flag(bio, BIO_THROTTLED);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002233
2234#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2235 if (throttled || !td->track_bio_latency)
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002236 bio->bi_issue.value |= BIO_ISSUE_THROTL_SKIP_LATENCY;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002237#endif
Tejun Heobc16a4f2011-10-19 14:33:01 +02002238 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04002239}
2240
Shaohua Li9e234ee2017-03-27 10:51:41 -07002241#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Lib9147dd2017-03-27 15:19:42 -07002242static void throtl_track_latency(struct throtl_data *td, sector_t size,
2243 int op, unsigned long time)
2244{
2245 struct latency_bucket *latency;
2246 int index;
2247
Joseph Qib889bf62017-11-21 09:38:30 +08002248 if (!td || td->limit_index != LIMIT_LOW ||
2249 !(op == REQ_OP_READ || op == REQ_OP_WRITE) ||
Shaohua Lib9147dd2017-03-27 15:19:42 -07002250 !blk_queue_nonrot(td->queue))
2251 return;
2252
2253 index = request_bucket_index(size);
2254
Joseph Qib889bf62017-11-21 09:38:30 +08002255 latency = get_cpu_ptr(td->latency_buckets[op]);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002256 latency[index].total_latency += time;
2257 latency[index].samples++;
Joseph Qib889bf62017-11-21 09:38:30 +08002258 put_cpu_ptr(td->latency_buckets[op]);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002259}
2260
2261void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2262{
2263 struct request_queue *q = rq->q;
2264 struct throtl_data *td = q->td;
2265
Omar Sandoval544ccc8d2018-05-09 02:08:50 -07002266 throtl_track_latency(td, rq->throtl_size, req_op(rq), time_ns >> 10);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002267}
2268
Shaohua Li9e234ee2017-03-27 10:51:41 -07002269void blk_throtl_bio_endio(struct bio *bio)
2270{
Josef Bacik08e18ea2018-07-03 11:14:50 -04002271 struct blkcg_gq *blkg;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002272 struct throtl_grp *tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002273 u64 finish_time_ns;
2274 unsigned long finish_time;
2275 unsigned long start_time;
2276 unsigned long lat;
Joseph Qib889bf62017-11-21 09:38:30 +08002277 int rw = bio_data_dir(bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002278
Josef Bacik08e18ea2018-07-03 11:14:50 -04002279 blkg = bio->bi_blkg;
2280 if (!blkg)
Shaohua Li9e234ee2017-03-27 10:51:41 -07002281 return;
Josef Bacik08e18ea2018-07-03 11:14:50 -04002282 tg = blkg_to_tg(blkg);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002283
Shaohua Lib9147dd2017-03-27 15:19:42 -07002284 finish_time_ns = ktime_get_ns();
2285 tg->last_finish_time = finish_time_ns >> 10;
2286
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002287 start_time = bio_issue_time(&bio->bi_issue) >> 10;
2288 finish_time = __bio_issue_time(finish_time_ns) >> 10;
Josef Bacik08e18ea2018-07-03 11:14:50 -04002289 if (!start_time || finish_time <= start_time)
Shaohua Li53696b82017-03-27 15:19:43 -07002290 return;
2291
2292 lat = finish_time - start_time;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002293 /* this is only for bio based driver */
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002294 if (!(bio->bi_issue.value & BIO_ISSUE_THROTL_SKIP_LATENCY))
2295 throtl_track_latency(tg->td, bio_issue_size(&bio->bi_issue),
2296 bio_op(bio), lat);
Shaohua Li53696b82017-03-27 15:19:43 -07002297
Shaohua Li6679a902017-06-06 12:40:43 -07002298 if (tg->latency_target && lat >= tg->td->filtered_latency) {
Shaohua Li53696b82017-03-27 15:19:43 -07002299 int bucket;
2300 unsigned int threshold;
2301
Omar Sandoval5238dcf2018-05-09 02:08:49 -07002302 bucket = request_bucket_index(bio_issue_size(&bio->bi_issue));
Joseph Qib889bf62017-11-21 09:38:30 +08002303 threshold = tg->td->avg_buckets[rw][bucket].latency +
Shaohua Li53696b82017-03-27 15:19:43 -07002304 tg->latency_target;
2305 if (lat > threshold)
2306 tg->bad_bio_cnt++;
2307 /*
2308 * Not race free, could get wrong count, which means cgroups
2309 * will be throttled
2310 */
2311 tg->bio_cnt++;
2312 }
2313
2314 if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) {
2315 tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies;
2316 tg->bio_cnt /= 2;
2317 tg->bad_bio_cnt /= 2;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002318 }
Shaohua Li9e234ee2017-03-27 10:51:41 -07002319}
2320#endif
2321
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002322/*
2323 * Dispatch all bios from all children tg's queued on @parent_sq. On
2324 * return, @parent_sq is guaranteed to not have any active children tg's
2325 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2326 */
2327static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2328{
2329 struct throtl_grp *tg;
2330
2331 while ((tg = throtl_rb_first(parent_sq))) {
2332 struct throtl_service_queue *sq = &tg->service_queue;
2333 struct bio *bio;
2334
2335 throtl_dequeue_tg(tg);
2336
Tejun Heoc5cc2072013-05-14 13:52:38 -07002337 while ((bio = throtl_peek_queued(&sq->queued[READ])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002338 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Tejun Heoc5cc2072013-05-14 13:52:38 -07002339 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002340 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2341 }
2342}
2343
Tejun Heoc9a929d2011-10-19 14:42:16 +02002344/**
2345 * blk_throtl_drain - drain throttled bios
2346 * @q: request_queue to drain throttled bios for
2347 *
2348 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2349 */
2350void blk_throtl_drain(struct request_queue *q)
2351 __releases(q->queue_lock) __acquires(q->queue_lock)
2352{
2353 struct throtl_data *td = q->td;
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002354 struct blkcg_gq *blkg;
Tejun Heo492eb212013-08-08 20:11:25 -04002355 struct cgroup_subsys_state *pos_css;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002356 struct bio *bio;
Tejun Heo651930b2013-05-14 13:52:35 -07002357 int rw;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002358
Andi Kleen8bcb6c72012-03-30 12:33:28 +02002359 queue_lockdep_assert_held(q);
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002360 rcu_read_lock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002361
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002362 /*
2363 * Drain each tg while doing post-order walk on the blkg tree, so
2364 * that all bios are propagated to td->service_queue. It'd be
2365 * better to walk service_queue tree directly but blkg walk is
2366 * easier.
2367 */
Tejun Heo492eb212013-08-08 20:11:25 -04002368 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002369 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
Tejun Heo73f0d492013-05-14 13:52:35 -07002370
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002371 /* finally, transfer bios from top-level tg's into the td */
2372 tg_drain_bios(&td->service_queue);
2373
2374 rcu_read_unlock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002375 spin_unlock_irq(q->queue_lock);
2376
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002377 /* all bios now should be in td->service_queue, issue them */
Tejun Heo651930b2013-05-14 13:52:35 -07002378 for (rw = READ; rw <= WRITE; rw++)
Tejun Heoc5cc2072013-05-14 13:52:38 -07002379 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2380 NULL)))
Tejun Heo651930b2013-05-14 13:52:35 -07002381 generic_make_request(bio);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002382
2383 spin_lock_irq(q->queue_lock);
2384}
2385
Vivek Goyale43473b2010-09-15 17:06:35 -04002386int blk_throtl_init(struct request_queue *q)
2387{
2388 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07002389 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002390
2391 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2392 if (!td)
2393 return -ENOMEM;
Joseph Qib889bf62017-11-21 09:38:30 +08002394 td->latency_buckets[READ] = __alloc_percpu(sizeof(struct latency_bucket) *
Shaohua Lib9147dd2017-03-27 15:19:42 -07002395 LATENCY_BUCKET_SIZE, __alignof__(u64));
Joseph Qib889bf62017-11-21 09:38:30 +08002396 if (!td->latency_buckets[READ]) {
2397 kfree(td);
2398 return -ENOMEM;
2399 }
2400 td->latency_buckets[WRITE] = __alloc_percpu(sizeof(struct latency_bucket) *
2401 LATENCY_BUCKET_SIZE, __alignof__(u64));
2402 if (!td->latency_buckets[WRITE]) {
2403 free_percpu(td->latency_buckets[READ]);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002404 kfree(td);
2405 return -ENOMEM;
2406 }
Vivek Goyale43473b2010-09-15 17:06:35 -04002407
Tejun Heo69df0ab2013-05-14 13:52:36 -07002408 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heob2ce2642015-08-18 14:55:13 -07002409 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04002410
Tejun Heocd1604f2012-03-05 13:15:06 -08002411 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04002412 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02002413
Shaohua Li9f626e32017-03-27 10:51:30 -07002414 td->limit_valid[LIMIT_MAX] = true;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07002415 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07002416 td->low_upgrade_time = jiffies;
2417 td->low_downgrade_time = jiffies;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002418
Tejun Heoa2b16932012-04-13 13:11:33 -07002419 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07002420 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002421 if (ret) {
Joseph Qib889bf62017-11-21 09:38:30 +08002422 free_percpu(td->latency_buckets[READ]);
2423 free_percpu(td->latency_buckets[WRITE]);
Vivek Goyal29b12582011-05-19 15:38:24 -04002424 kfree(td);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002425 }
Tejun Heoa2b16932012-04-13 13:11:33 -07002426 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002427}
2428
2429void blk_throtl_exit(struct request_queue *q)
2430{
Tejun Heoc875f4d2012-03-05 13:15:22 -08002431 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05002432 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07002433 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Joseph Qib889bf62017-11-21 09:38:30 +08002434 free_percpu(q->td->latency_buckets[READ]);
2435 free_percpu(q->td->latency_buckets[WRITE]);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002436 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04002437}
2438
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002439void blk_throtl_register_queue(struct request_queue *q)
2440{
2441 struct throtl_data *td;
Shaohua Li6679a902017-06-06 12:40:43 -07002442 int i;
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002443
2444 td = q->td;
2445 BUG_ON(!td);
2446
Shaohua Li6679a902017-06-06 12:40:43 -07002447 if (blk_queue_nonrot(q)) {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002448 td->throtl_slice = DFL_THROTL_SLICE_SSD;
Shaohua Li6679a902017-06-06 12:40:43 -07002449 td->filtered_latency = LATENCY_FILTERED_SSD;
2450 } else {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002451 td->throtl_slice = DFL_THROTL_SLICE_HD;
Shaohua Li6679a902017-06-06 12:40:43 -07002452 td->filtered_latency = LATENCY_FILTERED_HD;
Joseph Qib889bf62017-11-21 09:38:30 +08002453 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2454 td->avg_buckets[READ][i].latency = DFL_HD_BASELINE_LATENCY;
2455 td->avg_buckets[WRITE][i].latency = DFL_HD_BASELINE_LATENCY;
2456 }
Shaohua Li6679a902017-06-06 12:40:43 -07002457 }
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002458#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2459 /* if no low limit, use previous default */
2460 td->throtl_slice = DFL_THROTL_SLICE_HD;
2461#endif
Shaohua Li9e234ee2017-03-27 10:51:41 -07002462
weiping zhang475a0552018-01-20 07:34:25 +08002463 td->track_bio_latency = !queue_is_rq_based(q);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002464 if (!td->track_bio_latency)
2465 blk_stat_enable_accounting(q);
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002466}
2467
Shaohua Li297e3d82017-03-27 10:51:37 -07002468#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2469ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2470{
2471 if (!q->td)
2472 return -EINVAL;
2473 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2474}
2475
2476ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2477 const char *page, size_t count)
2478{
2479 unsigned long v;
2480 unsigned long t;
2481
2482 if (!q->td)
2483 return -EINVAL;
2484 if (kstrtoul(page, 10, &v))
2485 return -EINVAL;
2486 t = msecs_to_jiffies(v);
2487 if (t == 0 || t > MAX_THROTL_SLICE)
2488 return -EINVAL;
2489 q->td->throtl_slice = t;
2490 return count;
2491}
2492#endif
2493
Vivek Goyale43473b2010-09-15 17:06:35 -04002494static int __init throtl_init(void)
2495{
Vivek Goyal450adcb2011-03-01 13:40:54 -05002496 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2497 if (!kthrotld_workqueue)
2498 panic("Failed to create kthrotld\n");
2499
Tejun Heo3c798392012-04-16 13:57:25 -07002500 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04002501}
2502
2503module_init(throtl_init);