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