Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Interface for controlling IO bandwidth on a request queue |
| 3 | * |
| 4 | * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com> |
| 5 | */ |
| 6 | |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/slab.h> |
| 9 | #include <linux/blkdev.h> |
| 10 | #include <linux/bio.h> |
| 11 | #include <linux/blktrace_api.h> |
Tejun Heo | eea8f41 | 2015-05-22 17:13:17 -0400 | [diff] [blame] | 12 | #include <linux/blk-cgroup.h> |
Tejun Heo | bc9fcbf | 2011-10-19 14:31:18 +0200 | [diff] [blame] | 13 | #include "blk.h" |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 14 | |
| 15 | /* Max dispatch from a group in 1 round */ |
| 16 | static int throtl_grp_quantum = 8; |
| 17 | |
| 18 | /* Total max dispatch from all groups in one round */ |
| 19 | static int throtl_quantum = 32; |
| 20 | |
Shaohua Li | d61fcfa | 2017-03-27 10:51:38 -0700 | [diff] [blame] | 21 | /* Throttling is performed over a slice and after that slice is renewed */ |
| 22 | #define DFL_THROTL_SLICE_HD (HZ / 10) |
| 23 | #define DFL_THROTL_SLICE_SSD (HZ / 50) |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 24 | #define MAX_THROTL_SLICE (HZ) |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 25 | #define DFL_IDLE_THRESHOLD_SSD (1000L) /* 1 ms */ |
| 26 | #define DFL_IDLE_THRESHOLD_HD (100L * 1000) /* 100 ms */ |
| 27 | #define MAX_IDLE_TIME (5L * 1000 * 1000) /* 5 s */ |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 28 | /* default latency target is 0, eg, guarantee IO latency by default */ |
| 29 | #define DFL_LATENCY_TARGET (0) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 30 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 31 | #define SKIP_LATENCY (((u64)1) << BLK_STAT_RES_SHIFT) |
| 32 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 33 | static struct blkcg_policy blkcg_policy_throtl; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 34 | |
Vivek Goyal | 450adcb | 2011-03-01 13:40:54 -0500 | [diff] [blame] | 35 | /* A workqueue to queue throttle related work */ |
| 36 | static struct workqueue_struct *kthrotld_workqueue; |
Vivek Goyal | 450adcb | 2011-03-01 13:40:54 -0500 | [diff] [blame] | 37 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 38 | /* |
| 39 | * To implement hierarchical throttling, throtl_grps form a tree and bios |
| 40 | * are dispatched upwards level by level until they reach the top and get |
| 41 | * issued. When dispatching bios from the children and local group at each |
| 42 | * level, if the bios are dispatched into a single bio_list, there's a risk |
| 43 | * of a local or child group which can queue many bios at once filling up |
| 44 | * the list starving others. |
| 45 | * |
| 46 | * To avoid such starvation, dispatched bios are queued separately |
| 47 | * according to where they came from. When they are again dispatched to |
| 48 | * the parent, they're popped in round-robin order so that no single source |
| 49 | * hogs the dispatch window. |
| 50 | * |
| 51 | * throtl_qnode is used to keep the queued bios separated by their sources. |
| 52 | * Bios are queued to throtl_qnode which in turn is queued to |
| 53 | * throtl_service_queue and then dispatched in round-robin order. |
| 54 | * |
| 55 | * It's also used to track the reference counts on blkg's. A qnode always |
| 56 | * belongs to a throtl_grp and gets queued on itself or the parent, so |
| 57 | * incrementing the reference of the associated throtl_grp when a qnode is |
| 58 | * queued and decrementing when dequeued is enough to keep the whole blkg |
| 59 | * tree pinned while bios are in flight. |
| 60 | */ |
| 61 | struct throtl_qnode { |
| 62 | struct list_head node; /* service_queue->queued[] */ |
| 63 | struct bio_list bios; /* queued bios */ |
| 64 | struct throtl_grp *tg; /* tg this qnode belongs to */ |
| 65 | }; |
| 66 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 67 | struct throtl_service_queue { |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 68 | struct throtl_service_queue *parent_sq; /* the parent service_queue */ |
| 69 | |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 70 | /* |
| 71 | * Bios queued directly to this service_queue or dispatched from |
| 72 | * children throtl_grp's. |
| 73 | */ |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 74 | struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */ |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 75 | unsigned int nr_queued[2]; /* number of queued bios */ |
| 76 | |
| 77 | /* |
| 78 | * RB tree of active children throtl_grp's, which are sorted by |
| 79 | * their ->disptime. |
| 80 | */ |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 81 | struct rb_root pending_tree; /* RB tree of active tgs */ |
| 82 | struct rb_node *first_pending; /* first node in the tree */ |
| 83 | unsigned int nr_pending; /* # queued in the tree */ |
| 84 | unsigned long first_pending_disptime; /* disptime of the first tg */ |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 85 | struct timer_list pending_timer; /* fires on first_pending_disptime */ |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 86 | }; |
| 87 | |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 88 | enum tg_state_flags { |
| 89 | THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */ |
Tejun Heo | 0e9f416 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 90 | THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */ |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 93 | #define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node) |
| 94 | |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 95 | enum { |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 96 | LIMIT_LOW, |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 97 | LIMIT_MAX, |
| 98 | LIMIT_CNT, |
| 99 | }; |
| 100 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 101 | struct throtl_grp { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 102 | /* must be the first member */ |
| 103 | struct blkg_policy_data pd; |
| 104 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 105 | /* active throtl group service_queue member */ |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 106 | struct rb_node rb_node; |
| 107 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 108 | /* throtl_data this group belongs to */ |
| 109 | struct throtl_data *td; |
| 110 | |
Tejun Heo | 49a2f1e | 2013-05-14 13:52:34 -0700 | [diff] [blame] | 111 | /* this group's service queue */ |
| 112 | struct throtl_service_queue service_queue; |
| 113 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 114 | /* |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 115 | * qnode_on_self is used when bios are directly queued to this |
| 116 | * throtl_grp so that local bios compete fairly with bios |
| 117 | * dispatched from children. qnode_on_parent is used when bios are |
| 118 | * dispatched from this throtl_grp into its parent and will compete |
| 119 | * with the sibling qnode_on_parents and the parent's |
| 120 | * qnode_on_self. |
| 121 | */ |
| 122 | struct throtl_qnode qnode_on_self[2]; |
| 123 | struct throtl_qnode qnode_on_parent[2]; |
| 124 | |
| 125 | /* |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 126 | * Dispatch time in jiffies. This is the estimated time when group |
| 127 | * will unthrottle and is ready to dispatch more bio. It is used as |
| 128 | * key to sort active groups in service tree. |
| 129 | */ |
| 130 | unsigned long disptime; |
| 131 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 132 | unsigned int flags; |
| 133 | |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 134 | /* are there any throtl rules between this group and td? */ |
| 135 | bool has_rules[2]; |
| 136 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 137 | /* internally used bytes per second rate limits */ |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 138 | uint64_t bps[2][LIMIT_CNT]; |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 139 | /* user configured bps limits */ |
| 140 | uint64_t bps_conf[2][LIMIT_CNT]; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 141 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 142 | /* internally used IOPS limits */ |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 143 | unsigned int iops[2][LIMIT_CNT]; |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 144 | /* user configured IOPS limits */ |
| 145 | unsigned int iops_conf[2][LIMIT_CNT]; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 146 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 147 | /* Number of bytes disptached in current slice */ |
| 148 | uint64_t bytes_disp[2]; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 149 | /* Number of bio's dispatched in current slice */ |
| 150 | unsigned int io_disp[2]; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 151 | |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 152 | unsigned long last_low_overflow_time[2]; |
| 153 | |
| 154 | uint64_t last_bytes_disp[2]; |
| 155 | unsigned int last_io_disp[2]; |
| 156 | |
| 157 | unsigned long last_check_time; |
| 158 | |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 159 | unsigned long latency_target; /* us */ |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 160 | /* When did we start a new slice */ |
| 161 | unsigned long slice_start[2]; |
| 162 | unsigned long slice_end[2]; |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 163 | |
| 164 | unsigned long last_finish_time; /* ns / 1024 */ |
| 165 | unsigned long checked_last_finish_time; /* ns / 1024 */ |
| 166 | unsigned long avg_idletime; /* ns / 1024 */ |
| 167 | unsigned long idletime_threshold; /* us */ |
Shaohua Li | 53696b8 | 2017-03-27 15:19:43 -0700 | [diff] [blame^] | 168 | |
| 169 | unsigned int bio_cnt; /* total bios */ |
| 170 | unsigned int bad_bio_cnt; /* bios exceeding latency threshold */ |
| 171 | unsigned long bio_cnt_reset_time; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 172 | }; |
| 173 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 174 | /* We measure latency for request size from <= 4k to >= 1M */ |
| 175 | #define LATENCY_BUCKET_SIZE 9 |
| 176 | |
| 177 | struct latency_bucket { |
| 178 | unsigned long total_latency; /* ns / 1024 */ |
| 179 | int samples; |
| 180 | }; |
| 181 | |
| 182 | struct avg_latency_bucket { |
| 183 | unsigned long latency; /* ns / 1024 */ |
| 184 | bool valid; |
| 185 | }; |
| 186 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 187 | struct throtl_data |
| 188 | { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 189 | /* service tree for active throtl groups */ |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 190 | struct throtl_service_queue service_queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 191 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 192 | struct request_queue *queue; |
| 193 | |
| 194 | /* Total Number of queued bios on READ and WRITE lists */ |
| 195 | unsigned int nr_queued[2]; |
| 196 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 197 | unsigned int throtl_slice; |
| 198 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 199 | /* Work for dispatching throttled bios */ |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 200 | struct work_struct dispatch_work; |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 201 | unsigned int limit_index; |
| 202 | bool limit_valid[LIMIT_CNT]; |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 203 | |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 204 | unsigned long dft_idletime_threshold; /* us */ |
| 205 | |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 206 | unsigned long low_upgrade_time; |
| 207 | unsigned long low_downgrade_time; |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 208 | |
| 209 | unsigned int scale; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 210 | |
| 211 | struct latency_bucket tmp_buckets[LATENCY_BUCKET_SIZE]; |
| 212 | struct avg_latency_bucket avg_buckets[LATENCY_BUCKET_SIZE]; |
| 213 | struct latency_bucket __percpu *latency_buckets; |
| 214 | unsigned long last_calculate_time; |
| 215 | |
| 216 | bool track_bio_latency; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 217 | }; |
| 218 | |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 219 | static void throtl_pending_timer_fn(unsigned long arg); |
| 220 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 221 | static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd) |
| 222 | { |
| 223 | return pd ? container_of(pd, struct throtl_grp, pd) : NULL; |
| 224 | } |
| 225 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 226 | static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 227 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 228 | return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl)); |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 229 | } |
| 230 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 231 | static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 232 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 233 | return pd_to_blkg(&tg->pd); |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 234 | } |
| 235 | |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 236 | /** |
| 237 | * sq_to_tg - return the throl_grp the specified service queue belongs to |
| 238 | * @sq: the throtl_service_queue of interest |
| 239 | * |
| 240 | * Return the throtl_grp @sq belongs to. If @sq is the top-level one |
| 241 | * embedded in throtl_data, %NULL is returned. |
| 242 | */ |
| 243 | static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq) |
| 244 | { |
| 245 | if (sq && sq->parent_sq) |
| 246 | return container_of(sq, struct throtl_grp, service_queue); |
| 247 | else |
| 248 | return NULL; |
| 249 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 250 | |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 251 | /** |
| 252 | * sq_to_td - return throtl_data the specified service queue belongs to |
| 253 | * @sq: the throtl_service_queue of interest |
| 254 | * |
Masahiro Yamada | b43daed | 2017-02-27 14:29:09 -0800 | [diff] [blame] | 255 | * A service_queue can be embedded in either a throtl_grp or throtl_data. |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 256 | * Determine the associated throtl_data accordingly and return it. |
| 257 | */ |
| 258 | static struct throtl_data *sq_to_td(struct throtl_service_queue *sq) |
| 259 | { |
| 260 | struct throtl_grp *tg = sq_to_tg(sq); |
| 261 | |
| 262 | if (tg) |
| 263 | return tg->td; |
| 264 | else |
| 265 | return container_of(sq, struct throtl_data, service_queue); |
| 266 | } |
| 267 | |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 268 | /* |
| 269 | * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to |
| 270 | * make the IO dispatch more smooth. |
| 271 | * Scale up: linearly scale up according to lapsed time since upgrade. For |
| 272 | * every throtl_slice, the limit scales up 1/2 .low limit till the |
| 273 | * limit hits .max limit |
| 274 | * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit |
| 275 | */ |
| 276 | static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td) |
| 277 | { |
| 278 | /* arbitrary value to avoid too big scale */ |
| 279 | if (td->scale < 4096 && time_after_eq(jiffies, |
| 280 | td->low_upgrade_time + td->scale * td->throtl_slice)) |
| 281 | td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice; |
| 282 | |
| 283 | return low + (low >> 1) * td->scale; |
| 284 | } |
| 285 | |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 286 | static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw) |
| 287 | { |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 288 | struct blkcg_gq *blkg = tg_to_blkg(tg); |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 289 | struct throtl_data *td; |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 290 | uint64_t ret; |
| 291 | |
| 292 | if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent) |
| 293 | return U64_MAX; |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 294 | |
| 295 | td = tg->td; |
| 296 | ret = tg->bps[rw][td->limit_index]; |
| 297 | if (ret == 0 && td->limit_index == LIMIT_LOW) |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 298 | return tg->bps[rw][LIMIT_MAX]; |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 299 | |
| 300 | if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] && |
| 301 | tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) { |
| 302 | uint64_t adjusted; |
| 303 | |
| 304 | adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td); |
| 305 | ret = min(tg->bps[rw][LIMIT_MAX], adjusted); |
| 306 | } |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 307 | return ret; |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw) |
| 311 | { |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 312 | struct blkcg_gq *blkg = tg_to_blkg(tg); |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 313 | struct throtl_data *td; |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 314 | unsigned int ret; |
| 315 | |
| 316 | if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent) |
| 317 | return UINT_MAX; |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 318 | td = tg->td; |
| 319 | ret = tg->iops[rw][td->limit_index]; |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 320 | if (ret == 0 && tg->td->limit_index == LIMIT_LOW) |
| 321 | return tg->iops[rw][LIMIT_MAX]; |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 322 | |
| 323 | if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] && |
| 324 | tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) { |
| 325 | uint64_t adjusted; |
| 326 | |
| 327 | adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td); |
| 328 | if (adjusted > UINT_MAX) |
| 329 | adjusted = UINT_MAX; |
| 330 | ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted); |
| 331 | } |
Shaohua Li | b22c417 | 2017-03-27 10:51:33 -0700 | [diff] [blame] | 332 | return ret; |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 333 | } |
| 334 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 335 | #define request_bucket_index(sectors) \ |
| 336 | clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1) |
| 337 | |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 338 | /** |
| 339 | * throtl_log - log debug message via blktrace |
| 340 | * @sq: the service_queue being reported |
| 341 | * @fmt: printf format string |
| 342 | * @args: printf args |
| 343 | * |
| 344 | * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a |
| 345 | * throtl_grp; otherwise, just "throtl". |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 346 | */ |
| 347 | #define throtl_log(sq, fmt, args...) do { \ |
| 348 | struct throtl_grp *__tg = sq_to_tg((sq)); \ |
| 349 | struct throtl_data *__td = sq_to_td((sq)); \ |
| 350 | \ |
| 351 | (void)__td; \ |
Shaohua Li | 59fa022 | 2016-05-09 17:22:15 -0700 | [diff] [blame] | 352 | if (likely(!blk_trace_note_message_enabled(__td->queue))) \ |
| 353 | break; \ |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 354 | if ((__tg)) { \ |
| 355 | char __pbuf[128]; \ |
| 356 | \ |
| 357 | blkg_path(tg_to_blkg(__tg), __pbuf, sizeof(__pbuf)); \ |
| 358 | blk_add_trace_msg(__td->queue, "throtl %s " fmt, __pbuf, ##args); \ |
| 359 | } else { \ |
| 360 | blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \ |
| 361 | } \ |
| 362 | } while (0) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 363 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 364 | static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg) |
| 365 | { |
| 366 | INIT_LIST_HEAD(&qn->node); |
| 367 | bio_list_init(&qn->bios); |
| 368 | qn->tg = tg; |
| 369 | } |
| 370 | |
| 371 | /** |
| 372 | * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it |
| 373 | * @bio: bio being added |
| 374 | * @qn: qnode to add bio to |
| 375 | * @queued: the service_queue->queued[] list @qn belongs to |
| 376 | * |
| 377 | * Add @bio to @qn and put @qn on @queued if it's not already on. |
| 378 | * @qn->tg's reference count is bumped when @qn is activated. See the |
| 379 | * comment on top of throtl_qnode definition for details. |
| 380 | */ |
| 381 | static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn, |
| 382 | struct list_head *queued) |
| 383 | { |
| 384 | bio_list_add(&qn->bios, bio); |
| 385 | if (list_empty(&qn->node)) { |
| 386 | list_add_tail(&qn->node, queued); |
| 387 | blkg_get(tg_to_blkg(qn->tg)); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | /** |
| 392 | * throtl_peek_queued - peek the first bio on a qnode list |
| 393 | * @queued: the qnode list to peek |
| 394 | */ |
| 395 | static struct bio *throtl_peek_queued(struct list_head *queued) |
| 396 | { |
| 397 | struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node); |
| 398 | struct bio *bio; |
| 399 | |
| 400 | if (list_empty(queued)) |
| 401 | return NULL; |
| 402 | |
| 403 | bio = bio_list_peek(&qn->bios); |
| 404 | WARN_ON_ONCE(!bio); |
| 405 | return bio; |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * throtl_pop_queued - pop the first bio form a qnode list |
| 410 | * @queued: the qnode list to pop a bio from |
| 411 | * @tg_to_put: optional out argument for throtl_grp to put |
| 412 | * |
| 413 | * Pop the first bio from the qnode list @queued. After popping, the first |
| 414 | * qnode is removed from @queued if empty or moved to the end of @queued so |
| 415 | * that the popping order is round-robin. |
| 416 | * |
| 417 | * When the first qnode is removed, its associated throtl_grp should be put |
| 418 | * too. If @tg_to_put is NULL, this function automatically puts it; |
| 419 | * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is |
| 420 | * responsible for putting it. |
| 421 | */ |
| 422 | static struct bio *throtl_pop_queued(struct list_head *queued, |
| 423 | struct throtl_grp **tg_to_put) |
| 424 | { |
| 425 | struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node); |
| 426 | struct bio *bio; |
| 427 | |
| 428 | if (list_empty(queued)) |
| 429 | return NULL; |
| 430 | |
| 431 | bio = bio_list_pop(&qn->bios); |
| 432 | WARN_ON_ONCE(!bio); |
| 433 | |
| 434 | if (bio_list_empty(&qn->bios)) { |
| 435 | list_del_init(&qn->node); |
| 436 | if (tg_to_put) |
| 437 | *tg_to_put = qn->tg; |
| 438 | else |
| 439 | blkg_put(tg_to_blkg(qn->tg)); |
| 440 | } else { |
| 441 | list_move_tail(&qn->node, queued); |
| 442 | } |
| 443 | |
| 444 | return bio; |
| 445 | } |
| 446 | |
Tejun Heo | 49a2f1e | 2013-05-14 13:52:34 -0700 | [diff] [blame] | 447 | /* init a service_queue, assumes the caller zeroed it */ |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 448 | static void throtl_service_queue_init(struct throtl_service_queue *sq) |
Tejun Heo | 49a2f1e | 2013-05-14 13:52:34 -0700 | [diff] [blame] | 449 | { |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 450 | INIT_LIST_HEAD(&sq->queued[0]); |
| 451 | INIT_LIST_HEAD(&sq->queued[1]); |
Tejun Heo | 49a2f1e | 2013-05-14 13:52:34 -0700 | [diff] [blame] | 452 | sq->pending_tree = RB_ROOT; |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 453 | setup_timer(&sq->pending_timer, throtl_pending_timer_fn, |
| 454 | (unsigned long)sq); |
| 455 | } |
| 456 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 457 | static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node) |
| 458 | { |
Tejun Heo | 4fb7203 | 2015-08-18 14:55:12 -0700 | [diff] [blame] | 459 | struct throtl_grp *tg; |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 460 | int rw; |
Tejun Heo | 4fb7203 | 2015-08-18 14:55:12 -0700 | [diff] [blame] | 461 | |
| 462 | tg = kzalloc_node(sizeof(*tg), gfp, node); |
| 463 | if (!tg) |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 464 | return NULL; |
Tejun Heo | 4fb7203 | 2015-08-18 14:55:12 -0700 | [diff] [blame] | 465 | |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 466 | throtl_service_queue_init(&tg->service_queue); |
| 467 | |
| 468 | for (rw = READ; rw <= WRITE; rw++) { |
| 469 | throtl_qnode_init(&tg->qnode_on_self[rw], tg); |
| 470 | throtl_qnode_init(&tg->qnode_on_parent[rw], tg); |
| 471 | } |
| 472 | |
| 473 | RB_CLEAR_NODE(&tg->rb_node); |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 474 | tg->bps[READ][LIMIT_MAX] = U64_MAX; |
| 475 | tg->bps[WRITE][LIMIT_MAX] = U64_MAX; |
| 476 | tg->iops[READ][LIMIT_MAX] = UINT_MAX; |
| 477 | tg->iops[WRITE][LIMIT_MAX] = UINT_MAX; |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 478 | tg->bps_conf[READ][LIMIT_MAX] = U64_MAX; |
| 479 | tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX; |
| 480 | tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX; |
| 481 | tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX; |
| 482 | /* LIMIT_LOW will have default value 0 */ |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 483 | |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 484 | tg->latency_target = DFL_LATENCY_TARGET; |
| 485 | |
Tejun Heo | 4fb7203 | 2015-08-18 14:55:12 -0700 | [diff] [blame] | 486 | return &tg->pd; |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 487 | } |
| 488 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 489 | static void throtl_pd_init(struct blkg_policy_data *pd) |
Vivek Goyal | a29a171 | 2011-05-19 15:38:19 -0400 | [diff] [blame] | 490 | { |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 491 | struct throtl_grp *tg = pd_to_tg(pd); |
| 492 | struct blkcg_gq *blkg = tg_to_blkg(tg); |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 493 | struct throtl_data *td = blkg->q->td; |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 494 | struct throtl_service_queue *sq = &tg->service_queue; |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 495 | |
Tejun Heo | 9138125 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 496 | /* |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 497 | * If on the default hierarchy, we switch to properly hierarchical |
Tejun Heo | 9138125 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 498 | * behavior where limits on a given throtl_grp are applied to the |
| 499 | * whole subtree rather than just the group itself. e.g. If 16M |
| 500 | * read_bps limit is set on the root group, the whole system can't |
| 501 | * exceed 16M for the device. |
| 502 | * |
Tejun Heo | aa6ec29 | 2014-07-09 10:08:08 -0400 | [diff] [blame] | 503 | * If not on the default hierarchy, the broken flat hierarchy |
Tejun Heo | 9138125 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 504 | * behavior is retained where all throtl_grps are treated as if |
| 505 | * they're all separate root groups right below throtl_data. |
| 506 | * Limits of a group don't interact with limits of other groups |
| 507 | * regardless of the position of the group in the hierarchy. |
| 508 | */ |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 509 | sq->parent_sq = &td->service_queue; |
Tejun Heo | 9e10a13 | 2015-09-18 11:56:28 -0400 | [diff] [blame] | 510 | if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent) |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 511 | sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue; |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 512 | tg->td = td; |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 513 | |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 514 | tg->idletime_threshold = td->dft_idletime_threshold; |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 515 | } |
| 516 | |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 517 | /* |
| 518 | * Set has_rules[] if @tg or any of its parents have limits configured. |
| 519 | * This doesn't require walking up to the top of the hierarchy as the |
| 520 | * parent's has_rules[] is guaranteed to be correct. |
| 521 | */ |
| 522 | static void tg_update_has_rules(struct throtl_grp *tg) |
| 523 | { |
| 524 | struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq); |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 525 | struct throtl_data *td = tg->td; |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 526 | int rw; |
| 527 | |
| 528 | for (rw = READ; rw <= WRITE; rw++) |
| 529 | tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) || |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 530 | (td->limit_valid[td->limit_index] && |
| 531 | (tg_bps_limit(tg, rw) != U64_MAX || |
| 532 | tg_iops_limit(tg, rw) != UINT_MAX)); |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 533 | } |
| 534 | |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 535 | static void throtl_pd_online(struct blkg_policy_data *pd) |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 536 | { |
Shaohua Li | aec2424 | 2017-03-27 10:51:39 -0700 | [diff] [blame] | 537 | struct throtl_grp *tg = pd_to_tg(pd); |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 538 | /* |
| 539 | * We don't want new groups to escape the limits of its ancestors. |
| 540 | * Update has_rules[] after a new group is brought online. |
| 541 | */ |
Shaohua Li | aec2424 | 2017-03-27 10:51:39 -0700 | [diff] [blame] | 542 | tg_update_has_rules(tg); |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 545 | static void blk_throtl_update_limit_valid(struct throtl_data *td) |
| 546 | { |
| 547 | struct cgroup_subsys_state *pos_css; |
| 548 | struct blkcg_gq *blkg; |
| 549 | bool low_valid = false; |
| 550 | |
| 551 | rcu_read_lock(); |
| 552 | blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) { |
| 553 | struct throtl_grp *tg = blkg_to_tg(blkg); |
| 554 | |
| 555 | if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] || |
| 556 | tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) |
| 557 | low_valid = true; |
| 558 | } |
| 559 | rcu_read_unlock(); |
| 560 | |
| 561 | td->limit_valid[LIMIT_LOW] = low_valid; |
| 562 | } |
| 563 | |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 564 | static void throtl_upgrade_state(struct throtl_data *td); |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 565 | static void throtl_pd_offline(struct blkg_policy_data *pd) |
| 566 | { |
| 567 | struct throtl_grp *tg = pd_to_tg(pd); |
| 568 | |
| 569 | tg->bps[READ][LIMIT_LOW] = 0; |
| 570 | tg->bps[WRITE][LIMIT_LOW] = 0; |
| 571 | tg->iops[READ][LIMIT_LOW] = 0; |
| 572 | tg->iops[WRITE][LIMIT_LOW] = 0; |
| 573 | |
| 574 | blk_throtl_update_limit_valid(tg->td); |
| 575 | |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 576 | if (!tg->td->limit_valid[tg->td->limit_index]) |
| 577 | throtl_upgrade_state(tg->td); |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 580 | static void throtl_pd_free(struct blkg_policy_data *pd) |
| 581 | { |
Tejun Heo | 4fb7203 | 2015-08-18 14:55:12 -0700 | [diff] [blame] | 582 | struct throtl_grp *tg = pd_to_tg(pd); |
| 583 | |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 584 | del_timer_sync(&tg->service_queue.pending_timer); |
Tejun Heo | 4fb7203 | 2015-08-18 14:55:12 -0700 | [diff] [blame] | 585 | kfree(tg); |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 586 | } |
| 587 | |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 588 | static struct throtl_grp * |
| 589 | throtl_rb_first(struct throtl_service_queue *parent_sq) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 590 | { |
| 591 | /* Service tree is empty */ |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 592 | if (!parent_sq->nr_pending) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 593 | return NULL; |
| 594 | |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 595 | if (!parent_sq->first_pending) |
| 596 | parent_sq->first_pending = rb_first(&parent_sq->pending_tree); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 597 | |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 598 | if (parent_sq->first_pending) |
| 599 | return rb_entry_tg(parent_sq->first_pending); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 600 | |
| 601 | return NULL; |
| 602 | } |
| 603 | |
| 604 | static void rb_erase_init(struct rb_node *n, struct rb_root *root) |
| 605 | { |
| 606 | rb_erase(n, root); |
| 607 | RB_CLEAR_NODE(n); |
| 608 | } |
| 609 | |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 610 | static void throtl_rb_erase(struct rb_node *n, |
| 611 | struct throtl_service_queue *parent_sq) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 612 | { |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 613 | if (parent_sq->first_pending == n) |
| 614 | parent_sq->first_pending = NULL; |
| 615 | rb_erase_init(n, &parent_sq->pending_tree); |
| 616 | --parent_sq->nr_pending; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 617 | } |
| 618 | |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 619 | static void update_min_dispatch_time(struct throtl_service_queue *parent_sq) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 620 | { |
| 621 | struct throtl_grp *tg; |
| 622 | |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 623 | tg = throtl_rb_first(parent_sq); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 624 | if (!tg) |
| 625 | return; |
| 626 | |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 627 | parent_sq->first_pending_disptime = tg->disptime; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 628 | } |
| 629 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 630 | static void tg_service_queue_add(struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 631 | { |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 632 | struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq; |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 633 | struct rb_node **node = &parent_sq->pending_tree.rb_node; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 634 | struct rb_node *parent = NULL; |
| 635 | struct throtl_grp *__tg; |
| 636 | unsigned long key = tg->disptime; |
| 637 | int left = 1; |
| 638 | |
| 639 | while (*node != NULL) { |
| 640 | parent = *node; |
| 641 | __tg = rb_entry_tg(parent); |
| 642 | |
| 643 | if (time_before(key, __tg->disptime)) |
| 644 | node = &parent->rb_left; |
| 645 | else { |
| 646 | node = &parent->rb_right; |
| 647 | left = 0; |
| 648 | } |
| 649 | } |
| 650 | |
| 651 | if (left) |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 652 | parent_sq->first_pending = &tg->rb_node; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 653 | |
| 654 | rb_link_node(&tg->rb_node, parent, node); |
Tejun Heo | 0049af7 | 2013-05-14 13:52:33 -0700 | [diff] [blame] | 655 | rb_insert_color(&tg->rb_node, &parent_sq->pending_tree); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 656 | } |
| 657 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 658 | static void __throtl_enqueue_tg(struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 659 | { |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 660 | tg_service_queue_add(tg); |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 661 | tg->flags |= THROTL_TG_PENDING; |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 662 | tg->service_queue.parent_sq->nr_pending++; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 663 | } |
| 664 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 665 | static void throtl_enqueue_tg(struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 666 | { |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 667 | if (!(tg->flags & THROTL_TG_PENDING)) |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 668 | __throtl_enqueue_tg(tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 669 | } |
| 670 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 671 | static void __throtl_dequeue_tg(struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 672 | { |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 673 | throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq); |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 674 | tg->flags &= ~THROTL_TG_PENDING; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 675 | } |
| 676 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 677 | static void throtl_dequeue_tg(struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 678 | { |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 679 | if (tg->flags & THROTL_TG_PENDING) |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 680 | __throtl_dequeue_tg(tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 681 | } |
| 682 | |
Tejun Heo | a9131a2 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 683 | /* Call with queue lock held */ |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 684 | static void throtl_schedule_pending_timer(struct throtl_service_queue *sq, |
| 685 | unsigned long expires) |
Tejun Heo | a9131a2 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 686 | { |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 687 | unsigned long max_expire = jiffies + 8 * sq_to_tg(sq)->td->throtl_slice; |
Shaohua Li | 06cceed | 2017-03-27 10:51:36 -0700 | [diff] [blame] | 688 | |
| 689 | /* |
| 690 | * Since we are adjusting the throttle limit dynamically, the sleep |
| 691 | * time calculated according to previous limit might be invalid. It's |
| 692 | * possible the cgroup sleep time is very long and no other cgroups |
| 693 | * have IO running so notify the limit changes. Make sure the cgroup |
| 694 | * doesn't sleep too long to avoid the missed notification. |
| 695 | */ |
| 696 | if (time_after(expires, max_expire)) |
| 697 | expires = max_expire; |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 698 | mod_timer(&sq->pending_timer, expires); |
| 699 | throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu", |
| 700 | expires - jiffies, jiffies); |
Tejun Heo | a9131a2 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 701 | } |
| 702 | |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 703 | /** |
| 704 | * throtl_schedule_next_dispatch - schedule the next dispatch cycle |
| 705 | * @sq: the service_queue to schedule dispatch for |
| 706 | * @force: force scheduling |
| 707 | * |
| 708 | * Arm @sq->pending_timer so that the next dispatch cycle starts on the |
| 709 | * dispatch time of the first pending child. Returns %true if either timer |
| 710 | * is armed or there's no pending child left. %false if the current |
| 711 | * dispatch window is still open and the caller should continue |
| 712 | * dispatching. |
| 713 | * |
| 714 | * If @force is %true, the dispatch timer is always scheduled and this |
| 715 | * function is guaranteed to return %true. This is to be used when the |
| 716 | * caller can't dispatch itself and needs to invoke pending_timer |
| 717 | * unconditionally. Note that forced scheduling is likely to induce short |
| 718 | * delay before dispatch starts even if @sq->first_pending_disptime is not |
| 719 | * in the future and thus shouldn't be used in hot paths. |
| 720 | */ |
| 721 | static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq, |
| 722 | bool force) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 723 | { |
Tejun Heo | 6a52560 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 724 | /* any pending children left? */ |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 725 | if (!sq->nr_pending) |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 726 | return true; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 727 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 728 | update_min_dispatch_time(sq); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 729 | |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 730 | /* is the next dispatch time in the future? */ |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 731 | if (force || time_after(sq->first_pending_disptime, jiffies)) { |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 732 | throtl_schedule_pending_timer(sq, sq->first_pending_disptime); |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 733 | return true; |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 734 | } |
| 735 | |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 736 | /* tell the caller to continue dispatching */ |
| 737 | return false; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 738 | } |
| 739 | |
Vivek Goyal | 32ee5bc | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 740 | static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg, |
| 741 | bool rw, unsigned long start) |
| 742 | { |
| 743 | tg->bytes_disp[rw] = 0; |
| 744 | tg->io_disp[rw] = 0; |
| 745 | |
| 746 | /* |
| 747 | * Previous slice has expired. We must have trimmed it after last |
| 748 | * bio dispatch. That means since start of last slice, we never used |
| 749 | * that bandwidth. Do try to make use of that bandwidth while giving |
| 750 | * credit. |
| 751 | */ |
| 752 | if (time_after_eq(start, tg->slice_start[rw])) |
| 753 | tg->slice_start[rw] = start; |
| 754 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 755 | tg->slice_end[rw] = jiffies + tg->td->throtl_slice; |
Vivek Goyal | 32ee5bc | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 756 | throtl_log(&tg->service_queue, |
| 757 | "[%c] new slice with credit start=%lu end=%lu jiffies=%lu", |
| 758 | rw == READ ? 'R' : 'W', tg->slice_start[rw], |
| 759 | tg->slice_end[rw], jiffies); |
| 760 | } |
| 761 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 762 | static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 763 | { |
| 764 | tg->bytes_disp[rw] = 0; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 765 | tg->io_disp[rw] = 0; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 766 | tg->slice_start[rw] = jiffies; |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 767 | tg->slice_end[rw] = jiffies + tg->td->throtl_slice; |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 768 | throtl_log(&tg->service_queue, |
| 769 | "[%c] new slice start=%lu end=%lu jiffies=%lu", |
| 770 | rw == READ ? 'R' : 'W', tg->slice_start[rw], |
| 771 | tg->slice_end[rw], jiffies); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 772 | } |
| 773 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 774 | static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw, |
| 775 | unsigned long jiffy_end) |
Vivek Goyal | d1ae8ff | 2010-12-01 19:34:46 +0100 | [diff] [blame] | 776 | { |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 777 | tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice); |
Vivek Goyal | d1ae8ff | 2010-12-01 19:34:46 +0100 | [diff] [blame] | 778 | } |
| 779 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 780 | static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw, |
| 781 | unsigned long jiffy_end) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 782 | { |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 783 | tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice); |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 784 | throtl_log(&tg->service_queue, |
| 785 | "[%c] extend slice start=%lu end=%lu jiffies=%lu", |
| 786 | rw == READ ? 'R' : 'W', tg->slice_start[rw], |
| 787 | tg->slice_end[rw], jiffies); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | /* Determine if previously allocated or extended slice is complete or not */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 791 | static bool throtl_slice_used(struct throtl_grp *tg, bool rw) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 792 | { |
| 793 | if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw])) |
Fabian Frederick | 5cf8c22 | 2014-05-02 18:28:17 +0200 | [diff] [blame] | 794 | return false; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 795 | |
| 796 | return 1; |
| 797 | } |
| 798 | |
| 799 | /* Trim the used slices and adjust slice start accordingly */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 800 | static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 801 | { |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 802 | unsigned long nr_slices, time_elapsed, io_trim; |
| 803 | u64 bytes_trim, tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 804 | |
| 805 | BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw])); |
| 806 | |
| 807 | /* |
| 808 | * If bps are unlimited (-1), then time slice don't get |
| 809 | * renewed. Don't try to trim the slice if slice is used. A new |
| 810 | * slice will start when appropriate. |
| 811 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 812 | if (throtl_slice_used(tg, rw)) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 813 | return; |
| 814 | |
Vivek Goyal | d1ae8ff | 2010-12-01 19:34:46 +0100 | [diff] [blame] | 815 | /* |
| 816 | * A bio has been dispatched. Also adjust slice_end. It might happen |
| 817 | * that initially cgroup limit was very low resulting in high |
| 818 | * slice_end, but later limit was bumped up and bio was dispached |
| 819 | * sooner, then we need to reduce slice_end. A high bogus slice_end |
| 820 | * is bad because it does not allow new slice to start. |
| 821 | */ |
| 822 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 823 | throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice); |
Vivek Goyal | d1ae8ff | 2010-12-01 19:34:46 +0100 | [diff] [blame] | 824 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 825 | time_elapsed = jiffies - tg->slice_start[rw]; |
| 826 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 827 | nr_slices = time_elapsed / tg->td->throtl_slice; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 828 | |
| 829 | if (!nr_slices) |
| 830 | return; |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 831 | tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices; |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 832 | do_div(tmp, HZ); |
| 833 | bytes_trim = tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 834 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 835 | io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) / |
| 836 | HZ; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 837 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 838 | if (!bytes_trim && !io_trim) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 839 | return; |
| 840 | |
| 841 | if (tg->bytes_disp[rw] >= bytes_trim) |
| 842 | tg->bytes_disp[rw] -= bytes_trim; |
| 843 | else |
| 844 | tg->bytes_disp[rw] = 0; |
| 845 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 846 | if (tg->io_disp[rw] >= io_trim) |
| 847 | tg->io_disp[rw] -= io_trim; |
| 848 | else |
| 849 | tg->io_disp[rw] = 0; |
| 850 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 851 | tg->slice_start[rw] += nr_slices * tg->td->throtl_slice; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 852 | |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 853 | throtl_log(&tg->service_queue, |
| 854 | "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu", |
| 855 | rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim, |
| 856 | tg->slice_start[rw], tg->slice_end[rw], jiffies); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 857 | } |
| 858 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 859 | static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio, |
| 860 | unsigned long *wait) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 861 | { |
| 862 | bool rw = bio_data_dir(bio); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 863 | unsigned int io_allowed; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 864 | unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd; |
Vivek Goyal | c49c06e | 2010-10-01 21:16:42 +0200 | [diff] [blame] | 865 | u64 tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 866 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 867 | jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw]; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 868 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 869 | /* Slice has just started. Consider one slice interval */ |
| 870 | if (!jiffy_elapsed) |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 871 | jiffy_elapsed_rnd = tg->td->throtl_slice; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 872 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 873 | jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 874 | |
Vivek Goyal | c49c06e | 2010-10-01 21:16:42 +0200 | [diff] [blame] | 875 | /* |
| 876 | * jiffy_elapsed_rnd should not be a big value as minimum iops can be |
| 877 | * 1 then at max jiffy elapsed should be equivalent of 1 second as we |
| 878 | * will allow dispatch after 1 second and after that slice should |
| 879 | * have been trimmed. |
| 880 | */ |
| 881 | |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 882 | tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd; |
Vivek Goyal | c49c06e | 2010-10-01 21:16:42 +0200 | [diff] [blame] | 883 | do_div(tmp, HZ); |
| 884 | |
| 885 | if (tmp > UINT_MAX) |
| 886 | io_allowed = UINT_MAX; |
| 887 | else |
| 888 | io_allowed = tmp; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 889 | |
| 890 | if (tg->io_disp[rw] + 1 <= io_allowed) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 891 | if (wait) |
| 892 | *wait = 0; |
Fabian Frederick | 5cf8c22 | 2014-05-02 18:28:17 +0200 | [diff] [blame] | 893 | return true; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 894 | } |
| 895 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 896 | /* Calc approx time to dispatch */ |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 897 | jiffy_wait = ((tg->io_disp[rw] + 1) * HZ) / tg_iops_limit(tg, rw) + 1; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 898 | |
| 899 | if (jiffy_wait > jiffy_elapsed) |
| 900 | jiffy_wait = jiffy_wait - jiffy_elapsed; |
| 901 | else |
| 902 | jiffy_wait = 1; |
| 903 | |
| 904 | if (wait) |
| 905 | *wait = jiffy_wait; |
| 906 | return 0; |
| 907 | } |
| 908 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 909 | static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio, |
| 910 | unsigned long *wait) |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 911 | { |
| 912 | bool rw = bio_data_dir(bio); |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 913 | u64 bytes_allowed, extra_bytes, tmp; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 914 | unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 915 | |
| 916 | jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw]; |
| 917 | |
| 918 | /* Slice has just started. Consider one slice interval */ |
| 919 | if (!jiffy_elapsed) |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 920 | jiffy_elapsed_rnd = tg->td->throtl_slice; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 921 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 922 | jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 923 | |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 924 | tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd; |
Vivek Goyal | 5e901a2 | 2010-10-01 21:16:38 +0200 | [diff] [blame] | 925 | do_div(tmp, HZ); |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 926 | bytes_allowed = tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 927 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 928 | if (tg->bytes_disp[rw] + bio->bi_iter.bi_size <= bytes_allowed) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 929 | if (wait) |
| 930 | *wait = 0; |
Fabian Frederick | 5cf8c22 | 2014-05-02 18:28:17 +0200 | [diff] [blame] | 931 | return true; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | /* Calc approx time to dispatch */ |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 935 | extra_bytes = tg->bytes_disp[rw] + bio->bi_iter.bi_size - bytes_allowed; |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 936 | jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw)); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 937 | |
| 938 | if (!jiffy_wait) |
| 939 | jiffy_wait = 1; |
| 940 | |
| 941 | /* |
| 942 | * This wait time is without taking into consideration the rounding |
| 943 | * up we did. Add that time also. |
| 944 | */ |
| 945 | jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 946 | if (wait) |
| 947 | *wait = jiffy_wait; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 948 | return 0; |
| 949 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 950 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 951 | /* |
| 952 | * Returns whether one can dispatch a bio or not. Also returns approx number |
| 953 | * of jiffies to wait before this bio is with-in IO rate and can be dispatched |
| 954 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 955 | static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio, |
| 956 | unsigned long *wait) |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 957 | { |
| 958 | bool rw = bio_data_dir(bio); |
| 959 | unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0; |
| 960 | |
| 961 | /* |
| 962 | * Currently whole state machine of group depends on first bio |
| 963 | * queued in the group bio list. So one should not be calling |
| 964 | * this function with a different bio if there are other bios |
| 965 | * queued. |
| 966 | */ |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 967 | BUG_ON(tg->service_queue.nr_queued[rw] && |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 968 | bio != throtl_peek_queued(&tg->service_queue.queued[rw])); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 969 | |
| 970 | /* If tg->bps = -1, then BW is unlimited */ |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 971 | if (tg_bps_limit(tg, rw) == U64_MAX && |
| 972 | tg_iops_limit(tg, rw) == UINT_MAX) { |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 973 | if (wait) |
| 974 | *wait = 0; |
Fabian Frederick | 5cf8c22 | 2014-05-02 18:28:17 +0200 | [diff] [blame] | 975 | return true; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | /* |
| 979 | * If previous slice expired, start a new one otherwise renew/extend |
| 980 | * existing slice to make sure it is at least throtl_slice interval |
Vivek Goyal | 164c80e | 2016-09-19 15:12:41 -0600 | [diff] [blame] | 981 | * long since now. New slice is started only for empty throttle group. |
| 982 | * If there is queued bio, that means there should be an active |
| 983 | * slice and it should be extended instead. |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 984 | */ |
Vivek Goyal | 164c80e | 2016-09-19 15:12:41 -0600 | [diff] [blame] | 985 | if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw])) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 986 | throtl_start_new_slice(tg, rw); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 987 | else { |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 988 | if (time_before(tg->slice_end[rw], |
| 989 | jiffies + tg->td->throtl_slice)) |
| 990 | throtl_extend_slice(tg, rw, |
| 991 | jiffies + tg->td->throtl_slice); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 992 | } |
| 993 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 994 | if (tg_with_in_bps_limit(tg, bio, &bps_wait) && |
| 995 | tg_with_in_iops_limit(tg, bio, &iops_wait)) { |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 996 | if (wait) |
| 997 | *wait = 0; |
| 998 | return 1; |
| 999 | } |
| 1000 | |
| 1001 | max_wait = max(bps_wait, iops_wait); |
| 1002 | |
| 1003 | if (wait) |
| 1004 | *wait = max_wait; |
| 1005 | |
| 1006 | if (time_before(tg->slice_end[rw], jiffies + max_wait)) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1007 | throtl_extend_slice(tg, rw, jiffies + max_wait); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1008 | |
| 1009 | return 0; |
| 1010 | } |
| 1011 | |
| 1012 | static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio) |
| 1013 | { |
| 1014 | bool rw = bio_data_dir(bio); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1015 | |
| 1016 | /* Charge the bio to the group */ |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1017 | tg->bytes_disp[rw] += bio->bi_iter.bi_size; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 1018 | tg->io_disp[rw]++; |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1019 | tg->last_bytes_disp[rw] += bio->bi_iter.bi_size; |
| 1020 | tg->last_io_disp[rw]++; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1021 | |
Tejun Heo | 2a0f61e | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1022 | /* |
Christoph Hellwig | 8d2bbd4 | 2016-10-20 15:12:12 +0200 | [diff] [blame] | 1023 | * BIO_THROTTLED is used to prevent the same bio to be throttled |
Tejun Heo | 2a0f61e | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1024 | * more than once as a throttled bio will go through blk-throtl the |
| 1025 | * second time when it eventually gets issued. Set it when a bio |
| 1026 | * is being charged to a tg. |
Tejun Heo | 2a0f61e | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1027 | */ |
Christoph Hellwig | 8d2bbd4 | 2016-10-20 15:12:12 +0200 | [diff] [blame] | 1028 | if (!bio_flagged(bio, BIO_THROTTLED)) |
| 1029 | bio_set_flag(bio, BIO_THROTTLED); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1030 | } |
| 1031 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1032 | /** |
| 1033 | * throtl_add_bio_tg - add a bio to the specified throtl_grp |
| 1034 | * @bio: bio to add |
| 1035 | * @qn: qnode to use |
| 1036 | * @tg: the target throtl_grp |
| 1037 | * |
| 1038 | * Add @bio to @tg's service_queue using @qn. If @qn is not specified, |
| 1039 | * tg->qnode_on_self[] is used. |
| 1040 | */ |
| 1041 | static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn, |
| 1042 | struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1043 | { |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1044 | struct throtl_service_queue *sq = &tg->service_queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1045 | bool rw = bio_data_dir(bio); |
| 1046 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1047 | if (!qn) |
| 1048 | qn = &tg->qnode_on_self[rw]; |
| 1049 | |
Tejun Heo | 0e9f416 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1050 | /* |
| 1051 | * If @tg doesn't currently have any bios queued in the same |
| 1052 | * direction, queueing @bio can change when @tg should be |
| 1053 | * dispatched. Mark that @tg was empty. This is automatically |
| 1054 | * cleaered on the next tg_update_disptime(). |
| 1055 | */ |
| 1056 | if (!sq->nr_queued[rw]) |
| 1057 | tg->flags |= THROTL_TG_WAS_EMPTY; |
| 1058 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1059 | throtl_qnode_add_bio(bio, qn, &sq->queued[rw]); |
| 1060 | |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1061 | sq->nr_queued[rw]++; |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1062 | throtl_enqueue_tg(tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1063 | } |
| 1064 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1065 | static void tg_update_disptime(struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1066 | { |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1067 | struct throtl_service_queue *sq = &tg->service_queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1068 | unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime; |
| 1069 | struct bio *bio; |
| 1070 | |
Markus Elfring | d609af3 | 2017-01-21 22:15:33 +0100 | [diff] [blame] | 1071 | bio = throtl_peek_queued(&sq->queued[READ]); |
| 1072 | if (bio) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1073 | tg_may_dispatch(tg, bio, &read_wait); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1074 | |
Markus Elfring | d609af3 | 2017-01-21 22:15:33 +0100 | [diff] [blame] | 1075 | bio = throtl_peek_queued(&sq->queued[WRITE]); |
| 1076 | if (bio) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1077 | tg_may_dispatch(tg, bio, &write_wait); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1078 | |
| 1079 | min_wait = min(read_wait, write_wait); |
| 1080 | disptime = jiffies + min_wait; |
| 1081 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1082 | /* Update dispatch time */ |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1083 | throtl_dequeue_tg(tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1084 | tg->disptime = disptime; |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1085 | throtl_enqueue_tg(tg); |
Tejun Heo | 0e9f416 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1086 | |
| 1087 | /* see throtl_add_bio_tg() */ |
| 1088 | tg->flags &= ~THROTL_TG_WAS_EMPTY; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1089 | } |
| 1090 | |
Vivek Goyal | 32ee5bc | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1091 | static void start_parent_slice_with_credit(struct throtl_grp *child_tg, |
| 1092 | struct throtl_grp *parent_tg, bool rw) |
| 1093 | { |
| 1094 | if (throtl_slice_used(parent_tg, rw)) { |
| 1095 | throtl_start_new_slice_with_credit(parent_tg, rw, |
| 1096 | child_tg->slice_start[rw]); |
| 1097 | } |
| 1098 | |
| 1099 | } |
| 1100 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1101 | static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1102 | { |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1103 | struct throtl_service_queue *sq = &tg->service_queue; |
Tejun Heo | 6bc9c2b | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1104 | struct throtl_service_queue *parent_sq = sq->parent_sq; |
| 1105 | struct throtl_grp *parent_tg = sq_to_tg(parent_sq); |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1106 | struct throtl_grp *tg_to_put = NULL; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1107 | struct bio *bio; |
| 1108 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1109 | /* |
| 1110 | * @bio is being transferred from @tg to @parent_sq. Popping a bio |
| 1111 | * from @tg may put its reference and @parent_sq might end up |
| 1112 | * getting released prematurely. Remember the tg to put and put it |
| 1113 | * after @bio is transferred to @parent_sq. |
| 1114 | */ |
| 1115 | bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put); |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1116 | sq->nr_queued[rw]--; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1117 | |
| 1118 | throtl_charge_bio(tg, bio); |
Tejun Heo | 6bc9c2b | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1119 | |
| 1120 | /* |
| 1121 | * If our parent is another tg, we just need to transfer @bio to |
| 1122 | * the parent using throtl_add_bio_tg(). If our parent is |
| 1123 | * @td->service_queue, @bio is ready to be issued. Put it on its |
| 1124 | * bio_lists[] and decrease total number queued. The caller is |
| 1125 | * responsible for issuing these bios. |
| 1126 | */ |
| 1127 | if (parent_tg) { |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1128 | throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg); |
Vivek Goyal | 32ee5bc | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1129 | start_parent_slice_with_credit(tg, parent_tg, rw); |
Tejun Heo | 6bc9c2b | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1130 | } else { |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1131 | throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw], |
| 1132 | &parent_sq->queued[rw]); |
Tejun Heo | 6bc9c2b | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1133 | BUG_ON(tg->td->nr_queued[rw] <= 0); |
| 1134 | tg->td->nr_queued[rw]--; |
| 1135 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1136 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1137 | throtl_trim_slice(tg, rw); |
Tejun Heo | 6bc9c2b | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1138 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1139 | if (tg_to_put) |
| 1140 | blkg_put(tg_to_blkg(tg_to_put)); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1141 | } |
| 1142 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1143 | static int throtl_dispatch_tg(struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1144 | { |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1145 | struct throtl_service_queue *sq = &tg->service_queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1146 | unsigned int nr_reads = 0, nr_writes = 0; |
| 1147 | unsigned int max_nr_reads = throtl_grp_quantum*3/4; |
Vivek Goyal | c2f6805 | 2010-11-15 19:32:42 +0100 | [diff] [blame] | 1148 | unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1149 | struct bio *bio; |
| 1150 | |
| 1151 | /* Try to dispatch 75% READS and 25% WRITES */ |
| 1152 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1153 | while ((bio = throtl_peek_queued(&sq->queued[READ])) && |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1154 | tg_may_dispatch(tg, bio, NULL)) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1155 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1156 | tg_dispatch_one_bio(tg, bio_data_dir(bio)); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1157 | nr_reads++; |
| 1158 | |
| 1159 | if (nr_reads >= max_nr_reads) |
| 1160 | break; |
| 1161 | } |
| 1162 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1163 | while ((bio = throtl_peek_queued(&sq->queued[WRITE])) && |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1164 | tg_may_dispatch(tg, bio, NULL)) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1165 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1166 | tg_dispatch_one_bio(tg, bio_data_dir(bio)); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1167 | nr_writes++; |
| 1168 | |
| 1169 | if (nr_writes >= max_nr_writes) |
| 1170 | break; |
| 1171 | } |
| 1172 | |
| 1173 | return nr_reads + nr_writes; |
| 1174 | } |
| 1175 | |
Tejun Heo | 651930b | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1176 | static int throtl_select_dispatch(struct throtl_service_queue *parent_sq) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1177 | { |
| 1178 | unsigned int nr_disp = 0; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1179 | |
| 1180 | while (1) { |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1181 | struct throtl_grp *tg = throtl_rb_first(parent_sq); |
| 1182 | struct throtl_service_queue *sq = &tg->service_queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1183 | |
| 1184 | if (!tg) |
| 1185 | break; |
| 1186 | |
| 1187 | if (time_before(jiffies, tg->disptime)) |
| 1188 | break; |
| 1189 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1190 | throtl_dequeue_tg(tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1191 | |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1192 | nr_disp += throtl_dispatch_tg(tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1193 | |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1194 | if (sq->nr_queued[0] || sq->nr_queued[1]) |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1195 | tg_update_disptime(tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1196 | |
| 1197 | if (nr_disp >= throtl_quantum) |
| 1198 | break; |
| 1199 | } |
| 1200 | |
| 1201 | return nr_disp; |
| 1202 | } |
| 1203 | |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 1204 | static bool throtl_can_upgrade(struct throtl_data *td, |
| 1205 | struct throtl_grp *this_tg); |
Tejun Heo | 6e1a570 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1206 | /** |
| 1207 | * throtl_pending_timer_fn - timer function for service_queue->pending_timer |
| 1208 | * @arg: the throtl_service_queue being serviced |
| 1209 | * |
| 1210 | * This timer is armed when a child throtl_grp with active bio's become |
| 1211 | * pending and queued on the service_queue's pending_tree and expires when |
| 1212 | * the first child throtl_grp should be dispatched. This function |
Tejun Heo | 2e48a53 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1213 | * dispatches bio's from the children throtl_grps to the parent |
| 1214 | * service_queue. |
| 1215 | * |
| 1216 | * If the parent's parent is another throtl_grp, dispatching is propagated |
| 1217 | * by either arming its pending_timer or repeating dispatch directly. If |
| 1218 | * the top-level service_tree is reached, throtl_data->dispatch_work is |
| 1219 | * kicked so that the ready bio's are issued. |
Tejun Heo | 6e1a570 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1220 | */ |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1221 | static void throtl_pending_timer_fn(unsigned long arg) |
| 1222 | { |
| 1223 | struct throtl_service_queue *sq = (void *)arg; |
Tejun Heo | 2e48a53 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1224 | struct throtl_grp *tg = sq_to_tg(sq); |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1225 | struct throtl_data *td = sq_to_td(sq); |
Tejun Heo | cb76199 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 1226 | struct request_queue *q = td->queue; |
Tejun Heo | 2e48a53 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1227 | struct throtl_service_queue *parent_sq; |
| 1228 | bool dispatched; |
Tejun Heo | 6e1a570 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1229 | int ret; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1230 | |
| 1231 | spin_lock_irq(q->queue_lock); |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 1232 | if (throtl_can_upgrade(td, NULL)) |
| 1233 | throtl_upgrade_state(td); |
| 1234 | |
Tejun Heo | 2e48a53 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1235 | again: |
| 1236 | parent_sq = sq->parent_sq; |
| 1237 | dispatched = false; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1238 | |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1239 | while (true) { |
| 1240 | throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u", |
Tejun Heo | 2e48a53 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1241 | sq->nr_queued[READ] + sq->nr_queued[WRITE], |
| 1242 | sq->nr_queued[READ], sq->nr_queued[WRITE]); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1243 | |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1244 | ret = throtl_select_dispatch(sq); |
| 1245 | if (ret) { |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1246 | throtl_log(sq, "bios disp=%u", ret); |
| 1247 | dispatched = true; |
Tejun Heo | 651930b | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 1248 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1249 | |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1250 | if (throtl_schedule_next_dispatch(sq, false)) |
| 1251 | break; |
| 1252 | |
| 1253 | /* this dispatch windows is still open, relax and repeat */ |
| 1254 | spin_unlock_irq(q->queue_lock); |
| 1255 | cpu_relax(); |
| 1256 | spin_lock_irq(q->queue_lock); |
| 1257 | } |
Tejun Heo | 6a52560 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1258 | |
Tejun Heo | 2e48a53 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1259 | if (!dispatched) |
| 1260 | goto out_unlock; |
Tejun Heo | 6e1a570 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1261 | |
Tejun Heo | 2e48a53 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1262 | if (parent_sq) { |
| 1263 | /* @parent_sq is another throl_grp, propagate dispatch */ |
| 1264 | if (tg->flags & THROTL_TG_WAS_EMPTY) { |
| 1265 | tg_update_disptime(tg); |
| 1266 | if (!throtl_schedule_next_dispatch(parent_sq, false)) { |
| 1267 | /* window is already open, repeat dispatching */ |
| 1268 | sq = parent_sq; |
| 1269 | tg = sq_to_tg(sq); |
| 1270 | goto again; |
| 1271 | } |
| 1272 | } |
| 1273 | } else { |
| 1274 | /* reached the top-level, queue issueing */ |
| 1275 | queue_work(kthrotld_workqueue, &td->dispatch_work); |
| 1276 | } |
| 1277 | out_unlock: |
Tejun Heo | 6e1a570 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1278 | spin_unlock_irq(q->queue_lock); |
| 1279 | } |
| 1280 | |
| 1281 | /** |
| 1282 | * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work |
| 1283 | * @work: work item being executed |
| 1284 | * |
| 1285 | * This function is queued for execution when bio's reach the bio_lists[] |
| 1286 | * of throtl_data->service_queue. Those bio's are ready and issued by this |
| 1287 | * function. |
| 1288 | */ |
Fabian Frederick | 8876e14 | 2014-04-17 21:41:16 +0200 | [diff] [blame] | 1289 | static void blk_throtl_dispatch_work_fn(struct work_struct *work) |
Tejun Heo | 6e1a570 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1290 | { |
| 1291 | struct throtl_data *td = container_of(work, struct throtl_data, |
| 1292 | dispatch_work); |
| 1293 | struct throtl_service_queue *td_sq = &td->service_queue; |
| 1294 | struct request_queue *q = td->queue; |
| 1295 | struct bio_list bio_list_on_stack; |
| 1296 | struct bio *bio; |
| 1297 | struct blk_plug plug; |
| 1298 | int rw; |
| 1299 | |
| 1300 | bio_list_init(&bio_list_on_stack); |
| 1301 | |
| 1302 | spin_lock_irq(q->queue_lock); |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1303 | for (rw = READ; rw <= WRITE; rw++) |
| 1304 | while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL))) |
| 1305 | bio_list_add(&bio_list_on_stack, bio); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1306 | spin_unlock_irq(q->queue_lock); |
| 1307 | |
Tejun Heo | 6e1a570 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1308 | if (!bio_list_empty(&bio_list_on_stack)) { |
Vivek Goyal | 69d60eb | 2011-03-09 08:27:37 +0100 | [diff] [blame] | 1309 | blk_start_plug(&plug); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1310 | while((bio = bio_list_pop(&bio_list_on_stack))) |
| 1311 | generic_make_request(bio); |
Vivek Goyal | 69d60eb | 2011-03-09 08:27:37 +0100 | [diff] [blame] | 1312 | blk_finish_plug(&plug); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1313 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1314 | } |
| 1315 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1316 | static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd, |
| 1317 | int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1318 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1319 | struct throtl_grp *tg = pd_to_tg(pd); |
| 1320 | u64 v = *(u64 *)((void *)tg + off); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1321 | |
Shaohua Li | 2ab5492 | 2017-03-27 10:51:29 -0700 | [diff] [blame] | 1322 | if (v == U64_MAX) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1323 | return 0; |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1324 | return __blkg_prfill_u64(sf, pd, v); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1325 | } |
| 1326 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1327 | static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd, |
| 1328 | int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1329 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1330 | struct throtl_grp *tg = pd_to_tg(pd); |
| 1331 | unsigned int v = *(unsigned int *)((void *)tg + off); |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1332 | |
Shaohua Li | 2ab5492 | 2017-03-27 10:51:29 -0700 | [diff] [blame] | 1333 | if (v == UINT_MAX) |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1334 | return 0; |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 1335 | return __blkg_prfill_u64(sf, pd, v); |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1336 | } |
| 1337 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1338 | static int tg_print_conf_u64(struct seq_file *sf, void *v) |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1339 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1340 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64, |
| 1341 | &blkcg_policy_throtl, seq_cft(sf)->private, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1342 | return 0; |
| 1343 | } |
| 1344 | |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1345 | static int tg_print_conf_uint(struct seq_file *sf, void *v) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1346 | { |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1347 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint, |
| 1348 | &blkcg_policy_throtl, seq_cft(sf)->private, false); |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1349 | return 0; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1350 | } |
| 1351 | |
Tejun Heo | 69948b0 | 2015-08-18 14:55:32 -0700 | [diff] [blame] | 1352 | static void tg_conf_updated(struct throtl_grp *tg) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1353 | { |
Tejun Heo | 69948b0 | 2015-08-18 14:55:32 -0700 | [diff] [blame] | 1354 | struct throtl_service_queue *sq = &tg->service_queue; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 1355 | struct cgroup_subsys_state *pos_css; |
Tejun Heo | 69948b0 | 2015-08-18 14:55:32 -0700 | [diff] [blame] | 1356 | struct blkcg_gq *blkg; |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1357 | |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1358 | throtl_log(&tg->service_queue, |
| 1359 | "limit change rbps=%llu wbps=%llu riops=%u wiops=%u", |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1360 | tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE), |
| 1361 | tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE)); |
Tejun Heo | 632b449 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 1362 | |
| 1363 | /* |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1364 | * Update has_rules[] flags for the updated tg's subtree. A tg is |
| 1365 | * considered to have rules if either the tg itself or any of its |
| 1366 | * ancestors has rules. This identifies groups without any |
| 1367 | * restrictions in the whole hierarchy and allows them to bypass |
| 1368 | * blk-throttle. |
| 1369 | */ |
Tejun Heo | 69948b0 | 2015-08-18 14:55:32 -0700 | [diff] [blame] | 1370 | blkg_for_each_descendant_pre(blkg, pos_css, tg_to_blkg(tg)) |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1371 | tg_update_has_rules(blkg_to_tg(blkg)); |
| 1372 | |
| 1373 | /* |
Tejun Heo | 632b449 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 1374 | * We're already holding queue_lock and know @tg is valid. Let's |
| 1375 | * apply the new config directly. |
| 1376 | * |
| 1377 | * Restart the slices for both READ and WRITES. It might happen |
| 1378 | * that a group's limit are dropped suddenly and we don't want to |
| 1379 | * account recently dispatched IO with new low rate. |
| 1380 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1381 | throtl_start_new_slice(tg, 0); |
| 1382 | throtl_start_new_slice(tg, 1); |
Tejun Heo | 632b449 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 1383 | |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1384 | if (tg->flags & THROTL_TG_PENDING) { |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1385 | tg_update_disptime(tg); |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 1386 | throtl_schedule_next_dispatch(sq->parent_sq, true); |
Tejun Heo | 632b449 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 1387 | } |
Tejun Heo | 69948b0 | 2015-08-18 14:55:32 -0700 | [diff] [blame] | 1388 | } |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1389 | |
Tejun Heo | 69948b0 | 2015-08-18 14:55:32 -0700 | [diff] [blame] | 1390 | static ssize_t tg_set_conf(struct kernfs_open_file *of, |
| 1391 | char *buf, size_t nbytes, loff_t off, bool is_u64) |
| 1392 | { |
| 1393 | struct blkcg *blkcg = css_to_blkcg(of_css(of)); |
| 1394 | struct blkg_conf_ctx ctx; |
| 1395 | struct throtl_grp *tg; |
| 1396 | int ret; |
| 1397 | u64 v; |
| 1398 | |
| 1399 | ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx); |
| 1400 | if (ret) |
| 1401 | return ret; |
| 1402 | |
| 1403 | ret = -EINVAL; |
| 1404 | if (sscanf(ctx.body, "%llu", &v) != 1) |
| 1405 | goto out_finish; |
| 1406 | if (!v) |
Shaohua Li | 2ab5492 | 2017-03-27 10:51:29 -0700 | [diff] [blame] | 1407 | v = U64_MAX; |
Tejun Heo | 69948b0 | 2015-08-18 14:55:32 -0700 | [diff] [blame] | 1408 | |
| 1409 | tg = blkg_to_tg(ctx.blkg); |
| 1410 | |
| 1411 | if (is_u64) |
| 1412 | *(u64 *)((void *)tg + of_cft(of)->private) = v; |
| 1413 | else |
| 1414 | *(unsigned int *)((void *)tg + of_cft(of)->private) = v; |
| 1415 | |
| 1416 | tg_conf_updated(tg); |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1417 | ret = 0; |
| 1418 | out_finish: |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1419 | blkg_conf_finish(&ctx); |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 1420 | return ret ?: nbytes; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1421 | } |
| 1422 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1423 | static ssize_t tg_set_conf_u64(struct kernfs_open_file *of, |
| 1424 | char *buf, size_t nbytes, loff_t off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1425 | { |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1426 | return tg_set_conf(of, buf, nbytes, off, true); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1427 | } |
| 1428 | |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1429 | static ssize_t tg_set_conf_uint(struct kernfs_open_file *of, |
| 1430 | char *buf, size_t nbytes, loff_t off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1431 | { |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1432 | return tg_set_conf(of, buf, nbytes, off, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1433 | } |
| 1434 | |
Tejun Heo | 880f50e | 2015-08-18 14:55:30 -0700 | [diff] [blame] | 1435 | static struct cftype throtl_legacy_files[] = { |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1436 | { |
| 1437 | .name = "throttle.read_bps_device", |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1438 | .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1439 | .seq_show = tg_print_conf_u64, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1440 | .write = tg_set_conf_u64, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1441 | }, |
| 1442 | { |
| 1443 | .name = "throttle.write_bps_device", |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1444 | .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1445 | .seq_show = tg_print_conf_u64, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1446 | .write = tg_set_conf_u64, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1447 | }, |
| 1448 | { |
| 1449 | .name = "throttle.read_iops_device", |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1450 | .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1451 | .seq_show = tg_print_conf_uint, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1452 | .write = tg_set_conf_uint, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1453 | }, |
| 1454 | { |
| 1455 | .name = "throttle.write_iops_device", |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1456 | .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]), |
Tejun Heo | 2da8ca8 | 2013-12-05 12:28:04 -0500 | [diff] [blame] | 1457 | .seq_show = tg_print_conf_uint, |
Tejun Heo | 451af50 | 2014-05-13 12:16:21 -0400 | [diff] [blame] | 1458 | .write = tg_set_conf_uint, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1459 | }, |
| 1460 | { |
| 1461 | .name = "throttle.io_service_bytes", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 1462 | .private = (unsigned long)&blkcg_policy_throtl, |
| 1463 | .seq_show = blkg_print_stat_bytes, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1464 | }, |
| 1465 | { |
| 1466 | .name = "throttle.io_serviced", |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 1467 | .private = (unsigned long)&blkcg_policy_throtl, |
| 1468 | .seq_show = blkg_print_stat_ios, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1469 | }, |
| 1470 | { } /* terminate */ |
| 1471 | }; |
| 1472 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1473 | static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd, |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1474 | int off) |
| 1475 | { |
| 1476 | struct throtl_grp *tg = pd_to_tg(pd); |
| 1477 | const char *dname = blkg_dev_name(pd->blkg); |
| 1478 | char bufs[4][21] = { "max", "max", "max", "max" }; |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1479 | u64 bps_dft; |
| 1480 | unsigned int iops_dft; |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1481 | char idle_time[26] = ""; |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1482 | char latency_time[26] = ""; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1483 | |
| 1484 | if (!dname) |
| 1485 | return 0; |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1486 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1487 | if (off == LIMIT_LOW) { |
| 1488 | bps_dft = 0; |
| 1489 | iops_dft = 0; |
| 1490 | } else { |
| 1491 | bps_dft = U64_MAX; |
| 1492 | iops_dft = UINT_MAX; |
| 1493 | } |
| 1494 | |
| 1495 | if (tg->bps_conf[READ][off] == bps_dft && |
| 1496 | tg->bps_conf[WRITE][off] == bps_dft && |
| 1497 | tg->iops_conf[READ][off] == iops_dft && |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1498 | tg->iops_conf[WRITE][off] == iops_dft && |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1499 | (off != LIMIT_LOW || |
| 1500 | (tg->idletime_threshold == tg->td->dft_idletime_threshold && |
| 1501 | tg->latency_target == DFL_LATENCY_TARGET))) |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1502 | return 0; |
| 1503 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1504 | if (tg->bps_conf[READ][off] != bps_dft) |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1505 | snprintf(bufs[0], sizeof(bufs[0]), "%llu", |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1506 | tg->bps_conf[READ][off]); |
| 1507 | if (tg->bps_conf[WRITE][off] != bps_dft) |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1508 | snprintf(bufs[1], sizeof(bufs[1]), "%llu", |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1509 | tg->bps_conf[WRITE][off]); |
| 1510 | if (tg->iops_conf[READ][off] != iops_dft) |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1511 | snprintf(bufs[2], sizeof(bufs[2]), "%u", |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1512 | tg->iops_conf[READ][off]); |
| 1513 | if (tg->iops_conf[WRITE][off] != iops_dft) |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 1514 | snprintf(bufs[3], sizeof(bufs[3]), "%u", |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1515 | tg->iops_conf[WRITE][off]); |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1516 | if (off == LIMIT_LOW) { |
| 1517 | if (tg->idletime_threshold == ULONG_MAX) |
| 1518 | strcpy(idle_time, " idle=max"); |
| 1519 | else |
| 1520 | snprintf(idle_time, sizeof(idle_time), " idle=%lu", |
| 1521 | tg->idletime_threshold); |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1522 | |
| 1523 | if (tg->latency_target == ULONG_MAX) |
| 1524 | strcpy(latency_time, " latency=max"); |
| 1525 | else |
| 1526 | snprintf(latency_time, sizeof(latency_time), |
| 1527 | " latency=%lu", tg->latency_target); |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1528 | } |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1529 | |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1530 | seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n", |
| 1531 | dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time, |
| 1532 | latency_time); |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1533 | return 0; |
| 1534 | } |
| 1535 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1536 | static int tg_print_limit(struct seq_file *sf, void *v) |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1537 | { |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1538 | blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit, |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1539 | &blkcg_policy_throtl, seq_cft(sf)->private, false); |
| 1540 | return 0; |
| 1541 | } |
| 1542 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1543 | static ssize_t tg_set_limit(struct kernfs_open_file *of, |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1544 | char *buf, size_t nbytes, loff_t off) |
| 1545 | { |
| 1546 | struct blkcg *blkcg = css_to_blkcg(of_css(of)); |
| 1547 | struct blkg_conf_ctx ctx; |
| 1548 | struct throtl_grp *tg; |
| 1549 | u64 v[4]; |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1550 | unsigned long idle_time; |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1551 | unsigned long latency_time; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1552 | int ret; |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1553 | int index = of_cft(of)->private; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1554 | |
| 1555 | ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx); |
| 1556 | if (ret) |
| 1557 | return ret; |
| 1558 | |
| 1559 | tg = blkg_to_tg(ctx.blkg); |
| 1560 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1561 | v[0] = tg->bps_conf[READ][index]; |
| 1562 | v[1] = tg->bps_conf[WRITE][index]; |
| 1563 | v[2] = tg->iops_conf[READ][index]; |
| 1564 | v[3] = tg->iops_conf[WRITE][index]; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1565 | |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1566 | idle_time = tg->idletime_threshold; |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1567 | latency_time = tg->latency_target; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1568 | while (true) { |
| 1569 | char tok[27]; /* wiops=18446744073709551616 */ |
| 1570 | char *p; |
Shaohua Li | 2ab5492 | 2017-03-27 10:51:29 -0700 | [diff] [blame] | 1571 | u64 val = U64_MAX; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1572 | int len; |
| 1573 | |
| 1574 | if (sscanf(ctx.body, "%26s%n", tok, &len) != 1) |
| 1575 | break; |
| 1576 | if (tok[0] == '\0') |
| 1577 | break; |
| 1578 | ctx.body += len; |
| 1579 | |
| 1580 | ret = -EINVAL; |
| 1581 | p = tok; |
| 1582 | strsep(&p, "="); |
| 1583 | if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max"))) |
| 1584 | goto out_finish; |
| 1585 | |
| 1586 | ret = -ERANGE; |
| 1587 | if (!val) |
| 1588 | goto out_finish; |
| 1589 | |
| 1590 | ret = -EINVAL; |
| 1591 | if (!strcmp(tok, "rbps")) |
| 1592 | v[0] = val; |
| 1593 | else if (!strcmp(tok, "wbps")) |
| 1594 | v[1] = val; |
| 1595 | else if (!strcmp(tok, "riops")) |
| 1596 | v[2] = min_t(u64, val, UINT_MAX); |
| 1597 | else if (!strcmp(tok, "wiops")) |
| 1598 | v[3] = min_t(u64, val, UINT_MAX); |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1599 | else if (off == LIMIT_LOW && !strcmp(tok, "idle")) |
| 1600 | idle_time = val; |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1601 | else if (off == LIMIT_LOW && !strcmp(tok, "latency")) |
| 1602 | latency_time = val; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1603 | else |
| 1604 | goto out_finish; |
| 1605 | } |
| 1606 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1607 | tg->bps_conf[READ][index] = v[0]; |
| 1608 | tg->bps_conf[WRITE][index] = v[1]; |
| 1609 | tg->iops_conf[READ][index] = v[2]; |
| 1610 | tg->iops_conf[WRITE][index] = v[3]; |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1611 | |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1612 | if (index == LIMIT_MAX) { |
| 1613 | tg->bps[READ][index] = v[0]; |
| 1614 | tg->bps[WRITE][index] = v[1]; |
| 1615 | tg->iops[READ][index] = v[2]; |
| 1616 | tg->iops[WRITE][index] = v[3]; |
| 1617 | } |
| 1618 | tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW], |
| 1619 | tg->bps_conf[READ][LIMIT_MAX]); |
| 1620 | tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW], |
| 1621 | tg->bps_conf[WRITE][LIMIT_MAX]); |
| 1622 | tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW], |
| 1623 | tg->iops_conf[READ][LIMIT_MAX]); |
| 1624 | tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW], |
| 1625 | tg->iops_conf[WRITE][LIMIT_MAX]); |
| 1626 | |
| 1627 | if (index == LIMIT_LOW) { |
| 1628 | blk_throtl_update_limit_valid(tg->td); |
| 1629 | if (tg->td->limit_valid[LIMIT_LOW]) |
| 1630 | tg->td->limit_index = LIMIT_LOW; |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 1631 | tg->idletime_threshold = (idle_time == ULONG_MAX) ? |
| 1632 | ULONG_MAX : idle_time; |
Shaohua Li | ec80991 | 2017-03-27 10:51:44 -0700 | [diff] [blame] | 1633 | tg->latency_target = (latency_time == ULONG_MAX) ? |
| 1634 | ULONG_MAX : latency_time; |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1635 | } |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1636 | tg_conf_updated(tg); |
| 1637 | ret = 0; |
| 1638 | out_finish: |
| 1639 | blkg_conf_finish(&ctx); |
| 1640 | return ret ?: nbytes; |
| 1641 | } |
| 1642 | |
| 1643 | static struct cftype throtl_files[] = { |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1644 | #ifdef CONFIG_BLK_DEV_THROTTLING_LOW |
| 1645 | { |
| 1646 | .name = "low", |
| 1647 | .flags = CFTYPE_NOT_ON_ROOT, |
| 1648 | .seq_show = tg_print_limit, |
| 1649 | .write = tg_set_limit, |
| 1650 | .private = LIMIT_LOW, |
| 1651 | }, |
| 1652 | #endif |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1653 | { |
| 1654 | .name = "max", |
| 1655 | .flags = CFTYPE_NOT_ON_ROOT, |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1656 | .seq_show = tg_print_limit, |
| 1657 | .write = tg_set_limit, |
| 1658 | .private = LIMIT_MAX, |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1659 | }, |
| 1660 | { } /* terminate */ |
| 1661 | }; |
| 1662 | |
Vivek Goyal | da52777 | 2011-03-02 19:05:33 -0500 | [diff] [blame] | 1663 | static void throtl_shutdown_wq(struct request_queue *q) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1664 | { |
| 1665 | struct throtl_data *td = q->td; |
| 1666 | |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 1667 | cancel_work_sync(&td->dispatch_work); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1668 | } |
| 1669 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1670 | static struct blkcg_policy blkcg_policy_throtl = { |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 1671 | .dfl_cftypes = throtl_files, |
Tejun Heo | 880f50e | 2015-08-18 14:55:30 -0700 | [diff] [blame] | 1672 | .legacy_cftypes = throtl_legacy_files, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 1673 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1674 | .pd_alloc_fn = throtl_pd_alloc, |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 1675 | .pd_init_fn = throtl_pd_init, |
Tejun Heo | 693e751 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 1676 | .pd_online_fn = throtl_pd_online, |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 1677 | .pd_offline_fn = throtl_pd_offline, |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 1678 | .pd_free_fn = throtl_pd_free, |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1679 | }; |
| 1680 | |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1681 | static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg) |
| 1682 | { |
| 1683 | unsigned long rtime = jiffies, wtime = jiffies; |
| 1684 | |
| 1685 | if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW]) |
| 1686 | rtime = tg->last_low_overflow_time[READ]; |
| 1687 | if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) |
| 1688 | wtime = tg->last_low_overflow_time[WRITE]; |
| 1689 | return min(rtime, wtime); |
| 1690 | } |
| 1691 | |
| 1692 | /* tg should not be an intermediate node */ |
| 1693 | static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg) |
| 1694 | { |
| 1695 | struct throtl_service_queue *parent_sq; |
| 1696 | struct throtl_grp *parent = tg; |
| 1697 | unsigned long ret = __tg_last_low_overflow_time(tg); |
| 1698 | |
| 1699 | while (true) { |
| 1700 | parent_sq = parent->service_queue.parent_sq; |
| 1701 | parent = sq_to_tg(parent_sq); |
| 1702 | if (!parent) |
| 1703 | break; |
| 1704 | |
| 1705 | /* |
| 1706 | * The parent doesn't have low limit, it always reaches low |
| 1707 | * limit. Its overflow time is useless for children |
| 1708 | */ |
| 1709 | if (!parent->bps[READ][LIMIT_LOW] && |
| 1710 | !parent->iops[READ][LIMIT_LOW] && |
| 1711 | !parent->bps[WRITE][LIMIT_LOW] && |
| 1712 | !parent->iops[WRITE][LIMIT_LOW]) |
| 1713 | continue; |
| 1714 | if (time_after(__tg_last_low_overflow_time(parent), ret)) |
| 1715 | ret = __tg_last_low_overflow_time(parent); |
| 1716 | } |
| 1717 | return ret; |
| 1718 | } |
| 1719 | |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 1720 | static bool throtl_tg_is_idle(struct throtl_grp *tg) |
| 1721 | { |
| 1722 | /* |
| 1723 | * cgroup is idle if: |
| 1724 | * - single idle is too long, longer than a fixed value (in case user |
| 1725 | * configure a too big threshold) or 4 times of slice |
| 1726 | * - average think time is more than threshold |
Shaohua Li | 53696b8 | 2017-03-27 15:19:43 -0700 | [diff] [blame^] | 1727 | * - IO latency is largely below threshold |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 1728 | */ |
| 1729 | unsigned long time = jiffies_to_usecs(4 * tg->td->throtl_slice); |
| 1730 | |
| 1731 | time = min_t(unsigned long, MAX_IDLE_TIME, time); |
| 1732 | return (ktime_get_ns() >> 10) - tg->last_finish_time > time || |
Shaohua Li | 53696b8 | 2017-03-27 15:19:43 -0700 | [diff] [blame^] | 1733 | tg->avg_idletime > tg->idletime_threshold || |
| 1734 | (tg->latency_target && tg->bio_cnt && |
| 1735 | tg->bad_bio_cnt * 5 < tg->bio_cnt); |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 1736 | } |
| 1737 | |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 1738 | static bool throtl_tg_can_upgrade(struct throtl_grp *tg) |
| 1739 | { |
| 1740 | struct throtl_service_queue *sq = &tg->service_queue; |
| 1741 | bool read_limit, write_limit; |
| 1742 | |
| 1743 | /* |
| 1744 | * if cgroup reaches low limit (if low limit is 0, the cgroup always |
| 1745 | * reaches), it's ok to upgrade to next limit |
| 1746 | */ |
| 1747 | read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW]; |
| 1748 | write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]; |
| 1749 | if (!read_limit && !write_limit) |
| 1750 | return true; |
| 1751 | if (read_limit && sq->nr_queued[READ] && |
| 1752 | (!write_limit || sq->nr_queued[WRITE])) |
| 1753 | return true; |
| 1754 | if (write_limit && sq->nr_queued[WRITE] && |
| 1755 | (!read_limit || sq->nr_queued[READ])) |
| 1756 | return true; |
Shaohua Li | aec2424 | 2017-03-27 10:51:39 -0700 | [diff] [blame] | 1757 | |
| 1758 | if (time_after_eq(jiffies, |
Shaohua Li | fa6fb5a | 2017-03-27 10:51:43 -0700 | [diff] [blame] | 1759 | tg_last_low_overflow_time(tg) + tg->td->throtl_slice) && |
| 1760 | throtl_tg_is_idle(tg)) |
Shaohua Li | aec2424 | 2017-03-27 10:51:39 -0700 | [diff] [blame] | 1761 | return true; |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 1762 | return false; |
| 1763 | } |
| 1764 | |
| 1765 | static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg) |
| 1766 | { |
| 1767 | while (true) { |
| 1768 | if (throtl_tg_can_upgrade(tg)) |
| 1769 | return true; |
| 1770 | tg = sq_to_tg(tg->service_queue.parent_sq); |
| 1771 | if (!tg || !tg_to_blkg(tg)->parent) |
| 1772 | return false; |
| 1773 | } |
| 1774 | return false; |
| 1775 | } |
| 1776 | |
| 1777 | static bool throtl_can_upgrade(struct throtl_data *td, |
| 1778 | struct throtl_grp *this_tg) |
| 1779 | { |
| 1780 | struct cgroup_subsys_state *pos_css; |
| 1781 | struct blkcg_gq *blkg; |
| 1782 | |
| 1783 | if (td->limit_index != LIMIT_LOW) |
| 1784 | return false; |
| 1785 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 1786 | if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice)) |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1787 | return false; |
| 1788 | |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 1789 | rcu_read_lock(); |
| 1790 | blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) { |
| 1791 | struct throtl_grp *tg = blkg_to_tg(blkg); |
| 1792 | |
| 1793 | if (tg == this_tg) |
| 1794 | continue; |
| 1795 | if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children)) |
| 1796 | continue; |
| 1797 | if (!throtl_hierarchy_can_upgrade(tg)) { |
| 1798 | rcu_read_unlock(); |
| 1799 | return false; |
| 1800 | } |
| 1801 | } |
| 1802 | rcu_read_unlock(); |
| 1803 | return true; |
| 1804 | } |
| 1805 | |
Shaohua Li | fa6fb5a | 2017-03-27 10:51:43 -0700 | [diff] [blame] | 1806 | static void throtl_upgrade_check(struct throtl_grp *tg) |
| 1807 | { |
| 1808 | unsigned long now = jiffies; |
| 1809 | |
| 1810 | if (tg->td->limit_index != LIMIT_LOW) |
| 1811 | return; |
| 1812 | |
| 1813 | if (time_after(tg->last_check_time + tg->td->throtl_slice, now)) |
| 1814 | return; |
| 1815 | |
| 1816 | tg->last_check_time = now; |
| 1817 | |
| 1818 | if (!time_after_eq(now, |
| 1819 | __tg_last_low_overflow_time(tg) + tg->td->throtl_slice)) |
| 1820 | return; |
| 1821 | |
| 1822 | if (throtl_can_upgrade(tg->td, NULL)) |
| 1823 | throtl_upgrade_state(tg->td); |
| 1824 | } |
| 1825 | |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 1826 | static void throtl_upgrade_state(struct throtl_data *td) |
| 1827 | { |
| 1828 | struct cgroup_subsys_state *pos_css; |
| 1829 | struct blkcg_gq *blkg; |
| 1830 | |
| 1831 | td->limit_index = LIMIT_MAX; |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1832 | td->low_upgrade_time = jiffies; |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 1833 | td->scale = 0; |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 1834 | rcu_read_lock(); |
| 1835 | blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) { |
| 1836 | struct throtl_grp *tg = blkg_to_tg(blkg); |
| 1837 | struct throtl_service_queue *sq = &tg->service_queue; |
| 1838 | |
| 1839 | tg->disptime = jiffies - 1; |
| 1840 | throtl_select_dispatch(sq); |
| 1841 | throtl_schedule_next_dispatch(sq, false); |
| 1842 | } |
| 1843 | rcu_read_unlock(); |
| 1844 | throtl_select_dispatch(&td->service_queue); |
| 1845 | throtl_schedule_next_dispatch(&td->service_queue, false); |
| 1846 | queue_work(kthrotld_workqueue, &td->dispatch_work); |
| 1847 | } |
| 1848 | |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1849 | static void throtl_downgrade_state(struct throtl_data *td, int new) |
| 1850 | { |
Shaohua Li | 7394e31 | 2017-03-27 10:51:40 -0700 | [diff] [blame] | 1851 | td->scale /= 2; |
| 1852 | |
| 1853 | if (td->scale) { |
| 1854 | td->low_upgrade_time = jiffies - td->scale * td->throtl_slice; |
| 1855 | return; |
| 1856 | } |
| 1857 | |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1858 | td->limit_index = new; |
| 1859 | td->low_downgrade_time = jiffies; |
| 1860 | } |
| 1861 | |
| 1862 | static bool throtl_tg_can_downgrade(struct throtl_grp *tg) |
| 1863 | { |
| 1864 | struct throtl_data *td = tg->td; |
| 1865 | unsigned long now = jiffies; |
| 1866 | |
| 1867 | /* |
| 1868 | * If cgroup is below low limit, consider downgrade and throttle other |
| 1869 | * cgroups |
| 1870 | */ |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 1871 | if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) && |
| 1872 | time_after_eq(now, tg_last_low_overflow_time(tg) + |
Shaohua Li | fa6fb5a | 2017-03-27 10:51:43 -0700 | [diff] [blame] | 1873 | td->throtl_slice) && |
| 1874 | (!throtl_tg_is_idle(tg) || |
| 1875 | !list_empty(&tg_to_blkg(tg)->blkcg->css.children))) |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1876 | return true; |
| 1877 | return false; |
| 1878 | } |
| 1879 | |
| 1880 | static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg) |
| 1881 | { |
| 1882 | while (true) { |
| 1883 | if (!throtl_tg_can_downgrade(tg)) |
| 1884 | return false; |
| 1885 | tg = sq_to_tg(tg->service_queue.parent_sq); |
| 1886 | if (!tg || !tg_to_blkg(tg)->parent) |
| 1887 | break; |
| 1888 | } |
| 1889 | return true; |
| 1890 | } |
| 1891 | |
| 1892 | static void throtl_downgrade_check(struct throtl_grp *tg) |
| 1893 | { |
| 1894 | uint64_t bps; |
| 1895 | unsigned int iops; |
| 1896 | unsigned long elapsed_time; |
| 1897 | unsigned long now = jiffies; |
| 1898 | |
| 1899 | if (tg->td->limit_index != LIMIT_MAX || |
| 1900 | !tg->td->limit_valid[LIMIT_LOW]) |
| 1901 | return; |
| 1902 | if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children)) |
| 1903 | return; |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 1904 | if (time_after(tg->last_check_time + tg->td->throtl_slice, now)) |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1905 | return; |
| 1906 | |
| 1907 | elapsed_time = now - tg->last_check_time; |
| 1908 | tg->last_check_time = now; |
| 1909 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 1910 | if (time_before(now, tg_last_low_overflow_time(tg) + |
| 1911 | tg->td->throtl_slice)) |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 1912 | return; |
| 1913 | |
| 1914 | if (tg->bps[READ][LIMIT_LOW]) { |
| 1915 | bps = tg->last_bytes_disp[READ] * HZ; |
| 1916 | do_div(bps, elapsed_time); |
| 1917 | if (bps >= tg->bps[READ][LIMIT_LOW]) |
| 1918 | tg->last_low_overflow_time[READ] = now; |
| 1919 | } |
| 1920 | |
| 1921 | if (tg->bps[WRITE][LIMIT_LOW]) { |
| 1922 | bps = tg->last_bytes_disp[WRITE] * HZ; |
| 1923 | do_div(bps, elapsed_time); |
| 1924 | if (bps >= tg->bps[WRITE][LIMIT_LOW]) |
| 1925 | tg->last_low_overflow_time[WRITE] = now; |
| 1926 | } |
| 1927 | |
| 1928 | if (tg->iops[READ][LIMIT_LOW]) { |
| 1929 | iops = tg->last_io_disp[READ] * HZ / elapsed_time; |
| 1930 | if (iops >= tg->iops[READ][LIMIT_LOW]) |
| 1931 | tg->last_low_overflow_time[READ] = now; |
| 1932 | } |
| 1933 | |
| 1934 | if (tg->iops[WRITE][LIMIT_LOW]) { |
| 1935 | iops = tg->last_io_disp[WRITE] * HZ / elapsed_time; |
| 1936 | if (iops >= tg->iops[WRITE][LIMIT_LOW]) |
| 1937 | tg->last_low_overflow_time[WRITE] = now; |
| 1938 | } |
| 1939 | |
| 1940 | /* |
| 1941 | * If cgroup is below low limit, consider downgrade and throttle other |
| 1942 | * cgroups |
| 1943 | */ |
| 1944 | if (throtl_hierarchy_can_downgrade(tg)) |
| 1945 | throtl_downgrade_state(tg->td, LIMIT_LOW); |
| 1946 | |
| 1947 | tg->last_bytes_disp[READ] = 0; |
| 1948 | tg->last_bytes_disp[WRITE] = 0; |
| 1949 | tg->last_io_disp[READ] = 0; |
| 1950 | tg->last_io_disp[WRITE] = 0; |
| 1951 | } |
| 1952 | |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 1953 | static void blk_throtl_update_idletime(struct throtl_grp *tg) |
| 1954 | { |
| 1955 | unsigned long now = ktime_get_ns() >> 10; |
| 1956 | unsigned long last_finish_time = tg->last_finish_time; |
| 1957 | |
| 1958 | if (now <= last_finish_time || last_finish_time == 0 || |
| 1959 | last_finish_time == tg->checked_last_finish_time) |
| 1960 | return; |
| 1961 | |
| 1962 | tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3; |
| 1963 | tg->checked_last_finish_time = last_finish_time; |
| 1964 | } |
| 1965 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 1966 | #ifdef CONFIG_BLK_DEV_THROTTLING_LOW |
| 1967 | static void throtl_update_latency_buckets(struct throtl_data *td) |
| 1968 | { |
| 1969 | struct avg_latency_bucket avg_latency[LATENCY_BUCKET_SIZE]; |
| 1970 | int i, cpu; |
| 1971 | unsigned long last_latency = 0; |
| 1972 | unsigned long latency; |
| 1973 | |
| 1974 | if (!blk_queue_nonrot(td->queue)) |
| 1975 | return; |
| 1976 | if (time_before(jiffies, td->last_calculate_time + HZ)) |
| 1977 | return; |
| 1978 | td->last_calculate_time = jiffies; |
| 1979 | |
| 1980 | memset(avg_latency, 0, sizeof(avg_latency)); |
| 1981 | for (i = 0; i < LATENCY_BUCKET_SIZE; i++) { |
| 1982 | struct latency_bucket *tmp = &td->tmp_buckets[i]; |
| 1983 | |
| 1984 | for_each_possible_cpu(cpu) { |
| 1985 | struct latency_bucket *bucket; |
| 1986 | |
| 1987 | /* this isn't race free, but ok in practice */ |
| 1988 | bucket = per_cpu_ptr(td->latency_buckets, cpu); |
| 1989 | tmp->total_latency += bucket[i].total_latency; |
| 1990 | tmp->samples += bucket[i].samples; |
| 1991 | bucket[i].total_latency = 0; |
| 1992 | bucket[i].samples = 0; |
| 1993 | } |
| 1994 | |
| 1995 | if (tmp->samples >= 32) { |
| 1996 | int samples = tmp->samples; |
| 1997 | |
| 1998 | latency = tmp->total_latency; |
| 1999 | |
| 2000 | tmp->total_latency = 0; |
| 2001 | tmp->samples = 0; |
| 2002 | latency /= samples; |
| 2003 | if (latency == 0) |
| 2004 | continue; |
| 2005 | avg_latency[i].latency = latency; |
| 2006 | } |
| 2007 | } |
| 2008 | |
| 2009 | for (i = 0; i < LATENCY_BUCKET_SIZE; i++) { |
| 2010 | if (!avg_latency[i].latency) { |
| 2011 | if (td->avg_buckets[i].latency < last_latency) |
| 2012 | td->avg_buckets[i].latency = last_latency; |
| 2013 | continue; |
| 2014 | } |
| 2015 | |
| 2016 | if (!td->avg_buckets[i].valid) |
| 2017 | latency = avg_latency[i].latency; |
| 2018 | else |
| 2019 | latency = (td->avg_buckets[i].latency * 7 + |
| 2020 | avg_latency[i].latency) >> 3; |
| 2021 | |
| 2022 | td->avg_buckets[i].latency = max(latency, last_latency); |
| 2023 | td->avg_buckets[i].valid = true; |
| 2024 | last_latency = td->avg_buckets[i].latency; |
| 2025 | } |
| 2026 | } |
| 2027 | #else |
| 2028 | static inline void throtl_update_latency_buckets(struct throtl_data *td) |
| 2029 | { |
| 2030 | } |
| 2031 | #endif |
| 2032 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 2033 | bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg, |
| 2034 | struct bio *bio) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2035 | { |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2036 | struct throtl_qnode *qn = NULL; |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 2037 | struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg); |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2038 | struct throtl_service_queue *sq; |
Tejun Heo | 0e9f416 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2039 | bool rw = bio_data_dir(bio); |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 2040 | bool throttled = false; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2041 | struct throtl_data *td = tg->td; |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2042 | int ret; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2043 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 2044 | WARN_ON_ONCE(!rcu_read_lock_held()); |
| 2045 | |
Tejun Heo | 2a0f61e | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 2046 | /* see throtl_charge_bio() */ |
Christoph Hellwig | 8d2bbd4 | 2016-10-20 15:12:12 +0200 | [diff] [blame] | 2047 | if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw]) |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 2048 | goto out; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2049 | |
| 2050 | spin_lock_irq(q->queue_lock); |
Tejun Heo | c9589f0 | 2015-08-18 14:55:19 -0700 | [diff] [blame] | 2051 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2052 | throtl_update_latency_buckets(td); |
| 2053 | |
Tejun Heo | c9589f0 | 2015-08-18 14:55:19 -0700 | [diff] [blame] | 2054 | if (unlikely(blk_queue_bypass(q))) |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 2055 | goto out_unlock; |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 2056 | |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2057 | ret = bio_associate_current(bio); |
| 2058 | #ifdef CONFIG_BLK_DEV_THROTTLING_LOW |
| 2059 | if (ret == 0 || ret == -EBUSY) |
| 2060 | bio->bi_cg_private = tg; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2061 | blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio)); |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2062 | #endif |
| 2063 | blk_throtl_update_idletime(tg); |
| 2064 | |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2065 | sq = &tg->service_queue; |
| 2066 | |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 2067 | again: |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2068 | while (true) { |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 2069 | if (tg->last_low_overflow_time[rw] == 0) |
| 2070 | tg->last_low_overflow_time[rw] = jiffies; |
| 2071 | throtl_downgrade_check(tg); |
Shaohua Li | fa6fb5a | 2017-03-27 10:51:43 -0700 | [diff] [blame] | 2072 | throtl_upgrade_check(tg); |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2073 | /* throtl is FIFO - if bios are already queued, should queue */ |
| 2074 | if (sq->nr_queued[rw]) |
| 2075 | break; |
Vivek Goyal | de701c7 | 2011-03-07 21:09:32 +0100 | [diff] [blame] | 2076 | |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2077 | /* if above limits, break to queue */ |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 2078 | if (!tg_may_dispatch(tg, bio, NULL)) { |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 2079 | tg->last_low_overflow_time[rw] = jiffies; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2080 | if (throtl_can_upgrade(td, tg)) { |
| 2081 | throtl_upgrade_state(td); |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 2082 | goto again; |
| 2083 | } |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2084 | break; |
Shaohua Li | c79892c | 2017-03-27 10:51:34 -0700 | [diff] [blame] | 2085 | } |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2086 | |
| 2087 | /* within limits, let's charge and dispatch directly */ |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2088 | throtl_charge_bio(tg, bio); |
Vivek Goyal | 04521db | 2011-03-22 21:54:29 +0100 | [diff] [blame] | 2089 | |
| 2090 | /* |
| 2091 | * We need to trim slice even when bios are not being queued |
| 2092 | * otherwise it might happen that a bio is not queued for |
| 2093 | * a long time and slice keeps on extending and trim is not |
| 2094 | * called for a long time. Now if limits are reduced suddenly |
| 2095 | * we take into account all the IO dispatched so far at new |
| 2096 | * low rate and * newly queued IO gets a really long dispatch |
| 2097 | * time. |
| 2098 | * |
| 2099 | * So keep on trimming slice even if bio is not queued. |
| 2100 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 2101 | throtl_trim_slice(tg, rw); |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2102 | |
| 2103 | /* |
| 2104 | * @bio passed through this layer without being throttled. |
| 2105 | * Climb up the ladder. If we''re already at the top, it |
| 2106 | * can be executed directly. |
| 2107 | */ |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2108 | qn = &tg->qnode_on_parent[rw]; |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2109 | sq = sq->parent_sq; |
| 2110 | tg = sq_to_tg(sq); |
| 2111 | if (!tg) |
| 2112 | goto out_unlock; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2113 | } |
| 2114 | |
Tejun Heo | 9e660ac | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2115 | /* out-of-limit, queue to @tg */ |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 2116 | throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d", |
| 2117 | rw == READ ? 'R' : 'W', |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 2118 | tg->bytes_disp[rw], bio->bi_iter.bi_size, |
| 2119 | tg_bps_limit(tg, rw), |
| 2120 | tg->io_disp[rw], tg_iops_limit(tg, rw), |
Tejun Heo | fda6f27 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 2121 | sq->nr_queued[READ], sq->nr_queued[WRITE]); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2122 | |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 2123 | tg->last_low_overflow_time[rw] = jiffies; |
| 2124 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2125 | td->nr_queued[rw]++; |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2126 | throtl_add_bio_tg(bio, qn, tg); |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 2127 | throttled = true; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2128 | |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2129 | /* |
| 2130 | * Update @tg's dispatch time and force schedule dispatch if @tg |
| 2131 | * was empty before @bio. The forced scheduling isn't likely to |
| 2132 | * cause undue delay as @bio is likely to be dispatched directly if |
| 2133 | * its @tg's disptime is not in the future. |
| 2134 | */ |
Tejun Heo | 0e9f416 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2135 | if (tg->flags & THROTL_TG_WAS_EMPTY) { |
Tejun Heo | 77216b0 | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 2136 | tg_update_disptime(tg); |
Tejun Heo | 7f52f98 | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2137 | throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2138 | } |
| 2139 | |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 2140 | out_unlock: |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2141 | spin_unlock_irq(q->queue_lock); |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 2142 | out: |
Tejun Heo | 2a0f61e | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 2143 | /* |
| 2144 | * As multiple blk-throtls may stack in the same issue path, we |
| 2145 | * don't want bios to leave with the flag set. Clear the flag if |
| 2146 | * being issued. |
| 2147 | */ |
| 2148 | if (!throttled) |
Christoph Hellwig | 8d2bbd4 | 2016-10-20 15:12:12 +0200 | [diff] [blame] | 2149 | bio_clear_flag(bio, BIO_THROTTLED); |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2150 | |
| 2151 | #ifdef CONFIG_BLK_DEV_THROTTLING_LOW |
| 2152 | if (throttled || !td->track_bio_latency) |
| 2153 | bio->bi_issue_stat.stat |= SKIP_LATENCY; |
| 2154 | #endif |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 2155 | return throttled; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2156 | } |
| 2157 | |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2158 | #ifdef CONFIG_BLK_DEV_THROTTLING_LOW |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2159 | static void throtl_track_latency(struct throtl_data *td, sector_t size, |
| 2160 | int op, unsigned long time) |
| 2161 | { |
| 2162 | struct latency_bucket *latency; |
| 2163 | int index; |
| 2164 | |
| 2165 | if (!td || td->limit_index != LIMIT_LOW || op != REQ_OP_READ || |
| 2166 | !blk_queue_nonrot(td->queue)) |
| 2167 | return; |
| 2168 | |
| 2169 | index = request_bucket_index(size); |
| 2170 | |
| 2171 | latency = get_cpu_ptr(td->latency_buckets); |
| 2172 | latency[index].total_latency += time; |
| 2173 | latency[index].samples++; |
| 2174 | put_cpu_ptr(td->latency_buckets); |
| 2175 | } |
| 2176 | |
| 2177 | void blk_throtl_stat_add(struct request *rq, u64 time_ns) |
| 2178 | { |
| 2179 | struct request_queue *q = rq->q; |
| 2180 | struct throtl_data *td = q->td; |
| 2181 | |
| 2182 | throtl_track_latency(td, blk_stat_size(&rq->issue_stat), |
| 2183 | req_op(rq), time_ns >> 10); |
| 2184 | } |
| 2185 | |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2186 | void blk_throtl_bio_endio(struct bio *bio) |
| 2187 | { |
| 2188 | struct throtl_grp *tg; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2189 | u64 finish_time_ns; |
| 2190 | unsigned long finish_time; |
| 2191 | unsigned long start_time; |
| 2192 | unsigned long lat; |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2193 | |
| 2194 | tg = bio->bi_cg_private; |
| 2195 | if (!tg) |
| 2196 | return; |
| 2197 | bio->bi_cg_private = NULL; |
| 2198 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2199 | finish_time_ns = ktime_get_ns(); |
| 2200 | tg->last_finish_time = finish_time_ns >> 10; |
| 2201 | |
| 2202 | start_time = blk_stat_time(&bio->bi_issue_stat) >> 10; |
| 2203 | finish_time = __blk_stat_time(finish_time_ns) >> 10; |
Shaohua Li | 53696b8 | 2017-03-27 15:19:43 -0700 | [diff] [blame^] | 2204 | if (!start_time || finish_time <= start_time) |
| 2205 | return; |
| 2206 | |
| 2207 | lat = finish_time - start_time; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2208 | /* this is only for bio based driver */ |
Shaohua Li | 53696b8 | 2017-03-27 15:19:43 -0700 | [diff] [blame^] | 2209 | if (!(bio->bi_issue_stat.stat & SKIP_LATENCY)) |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2210 | throtl_track_latency(tg->td, blk_stat_size(&bio->bi_issue_stat), |
| 2211 | bio_op(bio), lat); |
Shaohua Li | 53696b8 | 2017-03-27 15:19:43 -0700 | [diff] [blame^] | 2212 | |
| 2213 | if (tg->latency_target) { |
| 2214 | int bucket; |
| 2215 | unsigned int threshold; |
| 2216 | |
| 2217 | bucket = request_bucket_index( |
| 2218 | blk_stat_size(&bio->bi_issue_stat)); |
| 2219 | threshold = tg->td->avg_buckets[bucket].latency + |
| 2220 | tg->latency_target; |
| 2221 | if (lat > threshold) |
| 2222 | tg->bad_bio_cnt++; |
| 2223 | /* |
| 2224 | * Not race free, could get wrong count, which means cgroups |
| 2225 | * will be throttled |
| 2226 | */ |
| 2227 | tg->bio_cnt++; |
| 2228 | } |
| 2229 | |
| 2230 | if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) { |
| 2231 | tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies; |
| 2232 | tg->bio_cnt /= 2; |
| 2233 | tg->bad_bio_cnt /= 2; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2234 | } |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2235 | } |
| 2236 | #endif |
| 2237 | |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2238 | /* |
| 2239 | * Dispatch all bios from all children tg's queued on @parent_sq. On |
| 2240 | * return, @parent_sq is guaranteed to not have any active children tg's |
| 2241 | * and all bios from previously active tg's are on @parent_sq->bio_lists[]. |
| 2242 | */ |
| 2243 | static void tg_drain_bios(struct throtl_service_queue *parent_sq) |
| 2244 | { |
| 2245 | struct throtl_grp *tg; |
| 2246 | |
| 2247 | while ((tg = throtl_rb_first(parent_sq))) { |
| 2248 | struct throtl_service_queue *sq = &tg->service_queue; |
| 2249 | struct bio *bio; |
| 2250 | |
| 2251 | throtl_dequeue_tg(tg); |
| 2252 | |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2253 | while ((bio = throtl_peek_queued(&sq->queued[READ]))) |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2254 | tg_dispatch_one_bio(tg, bio_data_dir(bio)); |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2255 | while ((bio = throtl_peek_queued(&sq->queued[WRITE]))) |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2256 | tg_dispatch_one_bio(tg, bio_data_dir(bio)); |
| 2257 | } |
| 2258 | } |
| 2259 | |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 2260 | /** |
| 2261 | * blk_throtl_drain - drain throttled bios |
| 2262 | * @q: request_queue to drain throttled bios for |
| 2263 | * |
| 2264 | * Dispatch all currently throttled bios on @q through ->make_request_fn(). |
| 2265 | */ |
| 2266 | void blk_throtl_drain(struct request_queue *q) |
| 2267 | __releases(q->queue_lock) __acquires(q->queue_lock) |
| 2268 | { |
| 2269 | struct throtl_data *td = q->td; |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2270 | struct blkcg_gq *blkg; |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2271 | struct cgroup_subsys_state *pos_css; |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 2272 | struct bio *bio; |
Tejun Heo | 651930b | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2273 | int rw; |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 2274 | |
Andi Kleen | 8bcb6c7 | 2012-03-30 12:33:28 +0200 | [diff] [blame] | 2275 | queue_lockdep_assert_held(q); |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2276 | rcu_read_lock(); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 2277 | |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2278 | /* |
| 2279 | * Drain each tg while doing post-order walk on the blkg tree, so |
| 2280 | * that all bios are propagated to td->service_queue. It'd be |
| 2281 | * better to walk service_queue tree directly but blkg walk is |
| 2282 | * easier. |
| 2283 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 2284 | blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2285 | tg_drain_bios(&blkg_to_tg(blkg)->service_queue); |
Tejun Heo | 73f0d49 | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2286 | |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2287 | /* finally, transfer bios from top-level tg's into the td */ |
| 2288 | tg_drain_bios(&td->service_queue); |
| 2289 | |
| 2290 | rcu_read_unlock(); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 2291 | spin_unlock_irq(q->queue_lock); |
| 2292 | |
Tejun Heo | 2a12f0d | 2013-05-14 13:52:37 -0700 | [diff] [blame] | 2293 | /* all bios now should be in td->service_queue, issue them */ |
Tejun Heo | 651930b | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2294 | for (rw = READ; rw <= WRITE; rw++) |
Tejun Heo | c5cc207 | 2013-05-14 13:52:38 -0700 | [diff] [blame] | 2295 | while ((bio = throtl_pop_queued(&td->service_queue.queued[rw], |
| 2296 | NULL))) |
Tejun Heo | 651930b | 2013-05-14 13:52:35 -0700 | [diff] [blame] | 2297 | generic_make_request(bio); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 2298 | |
| 2299 | spin_lock_irq(q->queue_lock); |
| 2300 | } |
| 2301 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2302 | int blk_throtl_init(struct request_queue *q) |
| 2303 | { |
| 2304 | struct throtl_data *td; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 2305 | int ret; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2306 | |
| 2307 | td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node); |
| 2308 | if (!td) |
| 2309 | return -ENOMEM; |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2310 | td->latency_buckets = __alloc_percpu(sizeof(struct latency_bucket) * |
| 2311 | LATENCY_BUCKET_SIZE, __alignof__(u64)); |
| 2312 | if (!td->latency_buckets) { |
| 2313 | kfree(td); |
| 2314 | return -ENOMEM; |
| 2315 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2316 | |
Tejun Heo | 69df0ab | 2013-05-14 13:52:36 -0700 | [diff] [blame] | 2317 | INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn); |
Tejun Heo | b2ce264 | 2015-08-18 14:55:13 -0700 | [diff] [blame] | 2318 | throtl_service_queue_init(&td->service_queue); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2319 | |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 2320 | q->td = td; |
Vivek Goyal | 29b1258 | 2011-05-19 15:38:24 -0400 | [diff] [blame] | 2321 | td->queue = q; |
Vivek Goyal | 02977e4 | 2010-10-01 14:49:48 +0200 | [diff] [blame] | 2322 | |
Shaohua Li | 9f626e3 | 2017-03-27 10:51:30 -0700 | [diff] [blame] | 2323 | td->limit_valid[LIMIT_MAX] = true; |
Shaohua Li | cd5ab1b | 2017-03-27 10:51:32 -0700 | [diff] [blame] | 2324 | td->limit_index = LIMIT_MAX; |
Shaohua Li | 3f0abd8 | 2017-03-27 10:51:35 -0700 | [diff] [blame] | 2325 | td->low_upgrade_time = jiffies; |
| 2326 | td->low_downgrade_time = jiffies; |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2327 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 2328 | /* activate policy */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 2329 | ret = blkcg_activate_policy(q, &blkcg_policy_throtl); |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2330 | if (ret) { |
| 2331 | free_percpu(td->latency_buckets); |
Vivek Goyal | 29b1258 | 2011-05-19 15:38:24 -0400 | [diff] [blame] | 2332 | kfree(td); |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2333 | } |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 2334 | return ret; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2335 | } |
| 2336 | |
| 2337 | void blk_throtl_exit(struct request_queue *q) |
| 2338 | { |
Tejun Heo | c875f4d | 2012-03-05 13:15:22 -0800 | [diff] [blame] | 2339 | BUG_ON(!q->td); |
Vivek Goyal | da52777 | 2011-03-02 19:05:33 -0500 | [diff] [blame] | 2340 | throtl_shutdown_wq(q); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 2341 | blkcg_deactivate_policy(q, &blkcg_policy_throtl); |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2342 | free_percpu(q->td->latency_buckets); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 2343 | kfree(q->td); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2344 | } |
| 2345 | |
Shaohua Li | d61fcfa | 2017-03-27 10:51:38 -0700 | [diff] [blame] | 2346 | void blk_throtl_register_queue(struct request_queue *q) |
| 2347 | { |
| 2348 | struct throtl_data *td; |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2349 | struct cgroup_subsys_state *pos_css; |
| 2350 | struct blkcg_gq *blkg; |
Shaohua Li | d61fcfa | 2017-03-27 10:51:38 -0700 | [diff] [blame] | 2351 | |
| 2352 | td = q->td; |
| 2353 | BUG_ON(!td); |
| 2354 | |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 2355 | if (blk_queue_nonrot(q)) { |
Shaohua Li | d61fcfa | 2017-03-27 10:51:38 -0700 | [diff] [blame] | 2356 | td->throtl_slice = DFL_THROTL_SLICE_SSD; |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 2357 | td->dft_idletime_threshold = DFL_IDLE_THRESHOLD_SSD; |
| 2358 | } else { |
Shaohua Li | d61fcfa | 2017-03-27 10:51:38 -0700 | [diff] [blame] | 2359 | td->throtl_slice = DFL_THROTL_SLICE_HD; |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 2360 | td->dft_idletime_threshold = DFL_IDLE_THRESHOLD_HD; |
| 2361 | } |
Shaohua Li | d61fcfa | 2017-03-27 10:51:38 -0700 | [diff] [blame] | 2362 | #ifndef CONFIG_BLK_DEV_THROTTLING_LOW |
| 2363 | /* if no low limit, use previous default */ |
| 2364 | td->throtl_slice = DFL_THROTL_SLICE_HD; |
| 2365 | #endif |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2366 | |
Shaohua Li | b9147dd | 2017-03-27 15:19:42 -0700 | [diff] [blame] | 2367 | td->track_bio_latency = !q->mq_ops && !q->request_fn; |
| 2368 | if (!td->track_bio_latency) |
| 2369 | blk_stat_enable_accounting(q); |
| 2370 | |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2371 | /* |
| 2372 | * some tg are created before queue is fully initialized, eg, nonrot |
| 2373 | * isn't initialized yet |
| 2374 | */ |
| 2375 | rcu_read_lock(); |
| 2376 | blkg_for_each_descendant_post(blkg, pos_css, q->root_blkg) { |
| 2377 | struct throtl_grp *tg = blkg_to_tg(blkg); |
| 2378 | |
Shaohua Li | ada75b6 | 2017-03-27 10:51:42 -0700 | [diff] [blame] | 2379 | tg->idletime_threshold = td->dft_idletime_threshold; |
Shaohua Li | 9e234ee | 2017-03-27 10:51:41 -0700 | [diff] [blame] | 2380 | } |
| 2381 | rcu_read_unlock(); |
Shaohua Li | d61fcfa | 2017-03-27 10:51:38 -0700 | [diff] [blame] | 2382 | } |
| 2383 | |
Shaohua Li | 297e3d8 | 2017-03-27 10:51:37 -0700 | [diff] [blame] | 2384 | #ifdef CONFIG_BLK_DEV_THROTTLING_LOW |
| 2385 | ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page) |
| 2386 | { |
| 2387 | if (!q->td) |
| 2388 | return -EINVAL; |
| 2389 | return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice)); |
| 2390 | } |
| 2391 | |
| 2392 | ssize_t blk_throtl_sample_time_store(struct request_queue *q, |
| 2393 | const char *page, size_t count) |
| 2394 | { |
| 2395 | unsigned long v; |
| 2396 | unsigned long t; |
| 2397 | |
| 2398 | if (!q->td) |
| 2399 | return -EINVAL; |
| 2400 | if (kstrtoul(page, 10, &v)) |
| 2401 | return -EINVAL; |
| 2402 | t = msecs_to_jiffies(v); |
| 2403 | if (t == 0 || t > MAX_THROTL_SLICE) |
| 2404 | return -EINVAL; |
| 2405 | q->td->throtl_slice = t; |
| 2406 | return count; |
| 2407 | } |
| 2408 | #endif |
| 2409 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2410 | static int __init throtl_init(void) |
| 2411 | { |
Vivek Goyal | 450adcb | 2011-03-01 13:40:54 -0500 | [diff] [blame] | 2412 | kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0); |
| 2413 | if (!kthrotld_workqueue) |
| 2414 | panic("Failed to create kthrotld\n"); |
| 2415 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 2416 | return blkcg_policy_register(&blkcg_policy_throtl); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 2417 | } |
| 2418 | |
| 2419 | module_init(throtl_init); |