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> |
| 12 | #include "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 | |
| 21 | /* Throttling is performed over 100ms slice and after that slice is renewed */ |
| 22 | static unsigned long throtl_slice = HZ/10; /* 100 ms */ |
| 23 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 24 | static struct blkcg_policy blkcg_policy_throtl; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 25 | |
Vivek Goyal | 450adcb | 2011-03-01 13:40:54 -0500 | [diff] [blame] | 26 | /* A workqueue to queue throttle related work */ |
| 27 | static struct workqueue_struct *kthrotld_workqueue; |
Vivek Goyal | 450adcb | 2011-03-01 13:40:54 -0500 | [diff] [blame] | 28 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 29 | struct throtl_service_queue { |
| 30 | struct rb_root pending_tree; /* RB tree of active tgs */ |
| 31 | struct rb_node *first_pending; /* first node in the tree */ |
| 32 | unsigned int nr_pending; /* # queued in the tree */ |
| 33 | unsigned long first_pending_disptime; /* disptime of the first tg */ |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 34 | }; |
| 35 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 36 | #define THROTL_SERVICE_QUEUE_INITIALIZER \ |
| 37 | (struct throtl_service_queue){ .pending_tree = RB_ROOT } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 38 | |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 39 | enum tg_state_flags { |
| 40 | THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */ |
| 41 | }; |
| 42 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 43 | #define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node) |
| 44 | |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 45 | /* Per-cpu group stats */ |
| 46 | struct tg_stats_cpu { |
| 47 | /* total bytes transferred */ |
| 48 | struct blkg_rwstat service_bytes; |
| 49 | /* total IOs serviced, post merge */ |
| 50 | struct blkg_rwstat serviced; |
| 51 | }; |
| 52 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 53 | struct throtl_grp { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 54 | /* must be the first member */ |
| 55 | struct blkg_policy_data pd; |
| 56 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 57 | /* active throtl group service_queue member */ |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 58 | struct rb_node rb_node; |
| 59 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 60 | /* throtl_data this group belongs to */ |
| 61 | struct throtl_data *td; |
| 62 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 63 | /* |
| 64 | * Dispatch time in jiffies. This is the estimated time when group |
| 65 | * will unthrottle and is ready to dispatch more bio. It is used as |
| 66 | * key to sort active groups in service tree. |
| 67 | */ |
| 68 | unsigned long disptime; |
| 69 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 70 | unsigned int flags; |
| 71 | |
| 72 | /* Two lists for READ and WRITE */ |
| 73 | struct bio_list bio_lists[2]; |
| 74 | |
| 75 | /* Number of queued bios on READ and WRITE lists */ |
| 76 | unsigned int nr_queued[2]; |
| 77 | |
| 78 | /* bytes per second rate limits */ |
| 79 | uint64_t bps[2]; |
| 80 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 81 | /* IOPS limits */ |
| 82 | unsigned int iops[2]; |
| 83 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 84 | /* Number of bytes disptached in current slice */ |
| 85 | uint64_t bytes_disp[2]; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 86 | /* Number of bio's dispatched in current slice */ |
| 87 | unsigned int io_disp[2]; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 88 | |
| 89 | /* When did we start a new slice */ |
| 90 | unsigned long slice_start[2]; |
| 91 | unsigned long slice_end[2]; |
Vivek Goyal | fe07143 | 2010-10-01 14:49:49 +0200 | [diff] [blame] | 92 | |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 93 | /* Per cpu stats pointer */ |
| 94 | struct tg_stats_cpu __percpu *stats_cpu; |
| 95 | |
| 96 | /* List of tgs waiting for per cpu stats memory to be allocated */ |
| 97 | struct list_head stats_alloc_node; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | struct throtl_data |
| 101 | { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 102 | /* service tree for active throtl groups */ |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 103 | struct throtl_service_queue service_queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 104 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 105 | struct request_queue *queue; |
| 106 | |
| 107 | /* Total Number of queued bios on READ and WRITE lists */ |
| 108 | unsigned int nr_queued[2]; |
| 109 | |
| 110 | /* |
Vivek Goyal | 02977e4 | 2010-10-01 14:49:48 +0200 | [diff] [blame] | 111 | * number of total undestroyed groups |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 112 | */ |
| 113 | unsigned int nr_undestroyed_grps; |
| 114 | |
| 115 | /* Work for dispatching throttled bios */ |
Tejun Heo | cb76199 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 116 | struct delayed_work dispatch_work; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 117 | }; |
| 118 | |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 119 | /* list and work item to allocate percpu group stats */ |
| 120 | static DEFINE_SPINLOCK(tg_stats_alloc_lock); |
| 121 | static LIST_HEAD(tg_stats_alloc_list); |
| 122 | |
| 123 | static void tg_stats_alloc_fn(struct work_struct *); |
| 124 | static DECLARE_DELAYED_WORK(tg_stats_alloc_work, tg_stats_alloc_fn); |
| 125 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 126 | static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd) |
| 127 | { |
| 128 | return pd ? container_of(pd, struct throtl_grp, pd) : NULL; |
| 129 | } |
| 130 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 131 | static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 132 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 133 | return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl)); |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 134 | } |
| 135 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 136 | static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 137 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 138 | return pd_to_blkg(&tg->pd); |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 139 | } |
| 140 | |
Tejun Heo | 03d8e11 | 2012-04-13 13:11:32 -0700 | [diff] [blame] | 141 | static inline struct throtl_grp *td_root_tg(struct throtl_data *td) |
| 142 | { |
| 143 | return blkg_to_tg(td->queue->root_blkg); |
| 144 | } |
| 145 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 146 | #define throtl_log_tg(tg, fmt, args...) do { \ |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 147 | char __pbuf[128]; \ |
| 148 | \ |
| 149 | blkg_path(tg_to_blkg(tg), __pbuf, sizeof(__pbuf)); \ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 150 | blk_add_trace_msg((tg)->td->queue, "throtl %s " fmt, __pbuf, ##args); \ |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 151 | } while (0) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 152 | |
| 153 | #define throtl_log(td, fmt, args...) \ |
| 154 | blk_add_trace_msg((td)->queue, "throtl " fmt, ##args) |
| 155 | |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 156 | /* |
| 157 | * Worker for allocating per cpu stat for tgs. This is scheduled on the |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 158 | * system_wq once there are some groups on the alloc_list waiting for |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 159 | * allocation. |
| 160 | */ |
| 161 | static void tg_stats_alloc_fn(struct work_struct *work) |
| 162 | { |
| 163 | static struct tg_stats_cpu *stats_cpu; /* this fn is non-reentrant */ |
| 164 | struct delayed_work *dwork = to_delayed_work(work); |
| 165 | bool empty = false; |
| 166 | |
| 167 | alloc_stats: |
| 168 | if (!stats_cpu) { |
| 169 | stats_cpu = alloc_percpu(struct tg_stats_cpu); |
| 170 | if (!stats_cpu) { |
| 171 | /* allocation failed, try again after some time */ |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 172 | schedule_delayed_work(dwork, msecs_to_jiffies(10)); |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 173 | return; |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | spin_lock_irq(&tg_stats_alloc_lock); |
| 178 | |
| 179 | if (!list_empty(&tg_stats_alloc_list)) { |
| 180 | struct throtl_grp *tg = list_first_entry(&tg_stats_alloc_list, |
| 181 | struct throtl_grp, |
| 182 | stats_alloc_node); |
| 183 | swap(tg->stats_cpu, stats_cpu); |
| 184 | list_del_init(&tg->stats_alloc_node); |
| 185 | } |
| 186 | |
| 187 | empty = list_empty(&tg_stats_alloc_list); |
| 188 | spin_unlock_irq(&tg_stats_alloc_lock); |
| 189 | if (!empty) |
| 190 | goto alloc_stats; |
| 191 | } |
| 192 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 193 | static void throtl_pd_init(struct blkcg_gq *blkg) |
Vivek Goyal | a29a171 | 2011-05-19 15:38:19 -0400 | [diff] [blame] | 194 | { |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 195 | struct throtl_grp *tg = blkg_to_tg(blkg); |
Tejun Heo | ff26eaa | 2012-05-23 12:16:21 +0200 | [diff] [blame] | 196 | unsigned long flags; |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 197 | |
Vivek Goyal | a29a171 | 2011-05-19 15:38:19 -0400 | [diff] [blame] | 198 | RB_CLEAR_NODE(&tg->rb_node); |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 199 | tg->td = blkg->q->td; |
Vivek Goyal | a29a171 | 2011-05-19 15:38:19 -0400 | [diff] [blame] | 200 | bio_list_init(&tg->bio_lists[0]); |
| 201 | bio_list_init(&tg->bio_lists[1]); |
Vivek Goyal | a29a171 | 2011-05-19 15:38:19 -0400 | [diff] [blame] | 202 | |
Tejun Heo | e56da7e | 2012-03-05 13:15:07 -0800 | [diff] [blame] | 203 | tg->bps[READ] = -1; |
| 204 | tg->bps[WRITE] = -1; |
| 205 | tg->iops[READ] = -1; |
| 206 | tg->iops[WRITE] = -1; |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 207 | |
| 208 | /* |
| 209 | * Ugh... We need to perform per-cpu allocation for tg->stats_cpu |
| 210 | * but percpu allocator can't be called from IO path. Queue tg on |
| 211 | * tg_stats_alloc_list and allocate from work item. |
| 212 | */ |
Tejun Heo | ff26eaa | 2012-05-23 12:16:21 +0200 | [diff] [blame] | 213 | spin_lock_irqsave(&tg_stats_alloc_lock, flags); |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 214 | list_add(&tg->stats_alloc_node, &tg_stats_alloc_list); |
Tejun Heo | 3b07e9c | 2012-08-20 14:51:24 -0700 | [diff] [blame] | 215 | schedule_delayed_work(&tg_stats_alloc_work, 0); |
Tejun Heo | ff26eaa | 2012-05-23 12:16:21 +0200 | [diff] [blame] | 216 | spin_unlock_irqrestore(&tg_stats_alloc_lock, flags); |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 219 | static void throtl_pd_exit(struct blkcg_gq *blkg) |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 220 | { |
| 221 | struct throtl_grp *tg = blkg_to_tg(blkg); |
Tejun Heo | ff26eaa | 2012-05-23 12:16:21 +0200 | [diff] [blame] | 222 | unsigned long flags; |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 223 | |
Tejun Heo | ff26eaa | 2012-05-23 12:16:21 +0200 | [diff] [blame] | 224 | spin_lock_irqsave(&tg_stats_alloc_lock, flags); |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 225 | list_del_init(&tg->stats_alloc_node); |
Tejun Heo | ff26eaa | 2012-05-23 12:16:21 +0200 | [diff] [blame] | 226 | spin_unlock_irqrestore(&tg_stats_alloc_lock, flags); |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 227 | |
| 228 | free_percpu(tg->stats_cpu); |
| 229 | } |
| 230 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 231 | static void throtl_pd_reset_stats(struct blkcg_gq *blkg) |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 232 | { |
| 233 | struct throtl_grp *tg = blkg_to_tg(blkg); |
| 234 | int cpu; |
| 235 | |
| 236 | if (tg->stats_cpu == NULL) |
| 237 | return; |
| 238 | |
| 239 | for_each_possible_cpu(cpu) { |
| 240 | struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu); |
| 241 | |
| 242 | blkg_rwstat_reset(&sc->service_bytes); |
| 243 | blkg_rwstat_reset(&sc->serviced); |
| 244 | } |
Vivek Goyal | a29a171 | 2011-05-19 15:38:19 -0400 | [diff] [blame] | 245 | } |
| 246 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 247 | static struct throtl_grp *throtl_lookup_tg(struct throtl_data *td, |
| 248 | struct blkcg *blkcg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 249 | { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 250 | /* |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 251 | * This is the common case when there are no blkcgs. Avoid lookup |
| 252 | * in this case |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 253 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 254 | if (blkcg == &blkcg_root) |
Tejun Heo | 03d8e11 | 2012-04-13 13:11:32 -0700 | [diff] [blame] | 255 | return td_root_tg(td); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 256 | |
Tejun Heo | e8989fa | 2012-03-05 13:15:20 -0800 | [diff] [blame] | 257 | return blkg_to_tg(blkg_lookup(blkcg, td->queue)); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 258 | } |
| 259 | |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 260 | static struct throtl_grp *throtl_lookup_create_tg(struct throtl_data *td, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 261 | struct blkcg *blkcg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 262 | { |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 263 | struct request_queue *q = td->queue; |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 264 | struct throtl_grp *tg = NULL; |
Tejun Heo | 0a5a7d0 | 2012-03-05 13:15:02 -0800 | [diff] [blame] | 265 | |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 266 | /* |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 267 | * This is the common case when there are no blkcgs. Avoid lookup |
| 268 | * in this case |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 269 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 270 | if (blkcg == &blkcg_root) { |
Tejun Heo | 03d8e11 | 2012-04-13 13:11:32 -0700 | [diff] [blame] | 271 | tg = td_root_tg(td); |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 272 | } else { |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 273 | struct blkcg_gq *blkg; |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 274 | |
Tejun Heo | 3c96cb3 | 2012-04-13 13:11:34 -0700 | [diff] [blame] | 275 | blkg = blkg_lookup_create(blkcg, q); |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 276 | |
| 277 | /* if %NULL and @q is alive, fall back to root_tg */ |
| 278 | if (!IS_ERR(blkg)) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 279 | tg = blkg_to_tg(blkg); |
Bart Van Assche | 3f3299d | 2012-11-28 13:42:38 +0100 | [diff] [blame] | 280 | else if (!blk_queue_dying(q)) |
Tejun Heo | 03d8e11 | 2012-04-13 13:11:32 -0700 | [diff] [blame] | 281 | tg = td_root_tg(td); |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 282 | } |
| 283 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 284 | return tg; |
| 285 | } |
| 286 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 287 | static struct throtl_grp *throtl_rb_first(struct throtl_service_queue *sq) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 288 | { |
| 289 | /* Service tree is empty */ |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 290 | if (!sq->nr_pending) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 291 | return NULL; |
| 292 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 293 | if (!sq->first_pending) |
| 294 | sq->first_pending = rb_first(&sq->pending_tree); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 295 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 296 | if (sq->first_pending) |
| 297 | return rb_entry_tg(sq->first_pending); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 298 | |
| 299 | return NULL; |
| 300 | } |
| 301 | |
| 302 | static void rb_erase_init(struct rb_node *n, struct rb_root *root) |
| 303 | { |
| 304 | rb_erase(n, root); |
| 305 | RB_CLEAR_NODE(n); |
| 306 | } |
| 307 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 308 | static void throtl_rb_erase(struct rb_node *n, struct throtl_service_queue *sq) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 309 | { |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 310 | if (sq->first_pending == n) |
| 311 | sq->first_pending = NULL; |
| 312 | rb_erase_init(n, &sq->pending_tree); |
| 313 | --sq->nr_pending; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 314 | } |
| 315 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 316 | static void update_min_dispatch_time(struct throtl_service_queue *sq) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 317 | { |
| 318 | struct throtl_grp *tg; |
| 319 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 320 | tg = throtl_rb_first(sq); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 321 | if (!tg) |
| 322 | return; |
| 323 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 324 | sq->first_pending_disptime = tg->disptime; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 325 | } |
| 326 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 327 | static void tg_service_queue_add(struct throtl_service_queue *sq, |
| 328 | struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 329 | { |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 330 | struct rb_node **node = &sq->pending_tree.rb_node; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 331 | struct rb_node *parent = NULL; |
| 332 | struct throtl_grp *__tg; |
| 333 | unsigned long key = tg->disptime; |
| 334 | int left = 1; |
| 335 | |
| 336 | while (*node != NULL) { |
| 337 | parent = *node; |
| 338 | __tg = rb_entry_tg(parent); |
| 339 | |
| 340 | if (time_before(key, __tg->disptime)) |
| 341 | node = &parent->rb_left; |
| 342 | else { |
| 343 | node = &parent->rb_right; |
| 344 | left = 0; |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | if (left) |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 349 | sq->first_pending = &tg->rb_node; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 350 | |
| 351 | rb_link_node(&tg->rb_node, parent, node); |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 352 | rb_insert_color(&tg->rb_node, &sq->pending_tree); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 353 | } |
| 354 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 355 | static void __throtl_enqueue_tg(struct throtl_service_queue *sq, |
| 356 | struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 357 | { |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 358 | tg_service_queue_add(sq, tg); |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 359 | tg->flags |= THROTL_TG_PENDING; |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 360 | sq->nr_pending++; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 361 | } |
| 362 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 363 | static void throtl_enqueue_tg(struct throtl_service_queue *sq, |
| 364 | struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 365 | { |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 366 | if (!(tg->flags & THROTL_TG_PENDING)) |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 367 | __throtl_enqueue_tg(sq, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 368 | } |
| 369 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 370 | static void __throtl_dequeue_tg(struct throtl_service_queue *sq, |
| 371 | struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 372 | { |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 373 | throtl_rb_erase(&tg->rb_node, sq); |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 374 | tg->flags &= ~THROTL_TG_PENDING; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 375 | } |
| 376 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 377 | static void throtl_dequeue_tg(struct throtl_service_queue *sq, |
| 378 | struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 379 | { |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 380 | if (tg->flags & THROTL_TG_PENDING) |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 381 | __throtl_dequeue_tg(sq, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 382 | } |
| 383 | |
Tejun Heo | a9131a2 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 384 | /* Call with queue lock held */ |
| 385 | static void throtl_schedule_delayed_work(struct throtl_data *td, |
| 386 | unsigned long delay) |
| 387 | { |
| 388 | struct delayed_work *dwork = &td->dispatch_work; |
| 389 | |
Tejun Heo | 6a52560 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 390 | mod_delayed_work(kthrotld_workqueue, dwork, delay); |
| 391 | throtl_log(td, "schedule work. delay=%lu jiffies=%lu", delay, jiffies); |
Tejun Heo | a9131a2 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 394 | static void throtl_schedule_next_dispatch(struct throtl_data *td) |
| 395 | { |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 396 | struct throtl_service_queue *sq = &td->service_queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 397 | |
Tejun Heo | 6a52560 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 398 | /* any pending children left? */ |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 399 | if (!sq->nr_pending) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 400 | return; |
| 401 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 402 | update_min_dispatch_time(sq); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 403 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 404 | if (time_before_eq(sq->first_pending_disptime, jiffies)) |
Vivek Goyal | 450adcb | 2011-03-01 13:40:54 -0500 | [diff] [blame] | 405 | throtl_schedule_delayed_work(td, 0); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 406 | else |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 407 | throtl_schedule_delayed_work(td, sq->first_pending_disptime - jiffies); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 408 | } |
| 409 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 410 | 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] | 411 | { |
| 412 | tg->bytes_disp[rw] = 0; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 413 | tg->io_disp[rw] = 0; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 414 | tg->slice_start[rw] = jiffies; |
| 415 | tg->slice_end[rw] = jiffies + throtl_slice; |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 416 | throtl_log_tg(tg, "[%c] new slice start=%lu end=%lu jiffies=%lu", |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 417 | rw == READ ? 'R' : 'W', tg->slice_start[rw], |
| 418 | tg->slice_end[rw], jiffies); |
| 419 | } |
| 420 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 421 | static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw, |
| 422 | unsigned long jiffy_end) |
Vivek Goyal | d1ae8ff | 2010-12-01 19:34:46 +0100 | [diff] [blame] | 423 | { |
| 424 | tg->slice_end[rw] = roundup(jiffy_end, throtl_slice); |
| 425 | } |
| 426 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 427 | static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw, |
| 428 | unsigned long jiffy_end) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 429 | { |
| 430 | tg->slice_end[rw] = roundup(jiffy_end, throtl_slice); |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 431 | throtl_log_tg(tg, "[%c] extend slice start=%lu end=%lu jiffies=%lu", |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 432 | rw == READ ? 'R' : 'W', tg->slice_start[rw], |
| 433 | tg->slice_end[rw], jiffies); |
| 434 | } |
| 435 | |
| 436 | /* Determine if previously allocated or extended slice is complete or not */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 437 | static bool throtl_slice_used(struct throtl_grp *tg, bool rw) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 438 | { |
| 439 | if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw])) |
| 440 | return 0; |
| 441 | |
| 442 | return 1; |
| 443 | } |
| 444 | |
| 445 | /* Trim the used slices and adjust slice start accordingly */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 446 | static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 447 | { |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 448 | unsigned long nr_slices, time_elapsed, io_trim; |
| 449 | u64 bytes_trim, tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 450 | |
| 451 | BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw])); |
| 452 | |
| 453 | /* |
| 454 | * If bps are unlimited (-1), then time slice don't get |
| 455 | * renewed. Don't try to trim the slice if slice is used. A new |
| 456 | * slice will start when appropriate. |
| 457 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 458 | if (throtl_slice_used(tg, rw)) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 459 | return; |
| 460 | |
Vivek Goyal | d1ae8ff | 2010-12-01 19:34:46 +0100 | [diff] [blame] | 461 | /* |
| 462 | * A bio has been dispatched. Also adjust slice_end. It might happen |
| 463 | * that initially cgroup limit was very low resulting in high |
| 464 | * slice_end, but later limit was bumped up and bio was dispached |
| 465 | * sooner, then we need to reduce slice_end. A high bogus slice_end |
| 466 | * is bad because it does not allow new slice to start. |
| 467 | */ |
| 468 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 469 | throtl_set_slice_end(tg, rw, jiffies + throtl_slice); |
Vivek Goyal | d1ae8ff | 2010-12-01 19:34:46 +0100 | [diff] [blame] | 470 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 471 | time_elapsed = jiffies - tg->slice_start[rw]; |
| 472 | |
| 473 | nr_slices = time_elapsed / throtl_slice; |
| 474 | |
| 475 | if (!nr_slices) |
| 476 | return; |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 477 | tmp = tg->bps[rw] * throtl_slice * nr_slices; |
| 478 | do_div(tmp, HZ); |
| 479 | bytes_trim = tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 480 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 481 | io_trim = (tg->iops[rw] * throtl_slice * nr_slices)/HZ; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 482 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 483 | if (!bytes_trim && !io_trim) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 484 | return; |
| 485 | |
| 486 | if (tg->bytes_disp[rw] >= bytes_trim) |
| 487 | tg->bytes_disp[rw] -= bytes_trim; |
| 488 | else |
| 489 | tg->bytes_disp[rw] = 0; |
| 490 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 491 | if (tg->io_disp[rw] >= io_trim) |
| 492 | tg->io_disp[rw] -= io_trim; |
| 493 | else |
| 494 | tg->io_disp[rw] = 0; |
| 495 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 496 | tg->slice_start[rw] += nr_slices * throtl_slice; |
| 497 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 498 | throtl_log_tg(tg, "[%c] trim slice nr=%lu bytes=%llu io=%lu" |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 499 | " start=%lu end=%lu jiffies=%lu", |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 500 | rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim, |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 501 | tg->slice_start[rw], tg->slice_end[rw], jiffies); |
| 502 | } |
| 503 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 504 | static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio, |
| 505 | unsigned long *wait) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 506 | { |
| 507 | bool rw = bio_data_dir(bio); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 508 | unsigned int io_allowed; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 509 | unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd; |
Vivek Goyal | c49c06e | 2010-10-01 21:16:42 +0200 | [diff] [blame] | 510 | u64 tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 511 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 512 | jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw]; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 513 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 514 | /* Slice has just started. Consider one slice interval */ |
| 515 | if (!jiffy_elapsed) |
| 516 | jiffy_elapsed_rnd = throtl_slice; |
| 517 | |
| 518 | jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice); |
| 519 | |
Vivek Goyal | c49c06e | 2010-10-01 21:16:42 +0200 | [diff] [blame] | 520 | /* |
| 521 | * jiffy_elapsed_rnd should not be a big value as minimum iops can be |
| 522 | * 1 then at max jiffy elapsed should be equivalent of 1 second as we |
| 523 | * will allow dispatch after 1 second and after that slice should |
| 524 | * have been trimmed. |
| 525 | */ |
| 526 | |
| 527 | tmp = (u64)tg->iops[rw] * jiffy_elapsed_rnd; |
| 528 | do_div(tmp, HZ); |
| 529 | |
| 530 | if (tmp > UINT_MAX) |
| 531 | io_allowed = UINT_MAX; |
| 532 | else |
| 533 | io_allowed = tmp; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 534 | |
| 535 | if (tg->io_disp[rw] + 1 <= io_allowed) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 536 | if (wait) |
| 537 | *wait = 0; |
| 538 | return 1; |
| 539 | } |
| 540 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 541 | /* Calc approx time to dispatch */ |
| 542 | jiffy_wait = ((tg->io_disp[rw] + 1) * HZ)/tg->iops[rw] + 1; |
| 543 | |
| 544 | if (jiffy_wait > jiffy_elapsed) |
| 545 | jiffy_wait = jiffy_wait - jiffy_elapsed; |
| 546 | else |
| 547 | jiffy_wait = 1; |
| 548 | |
| 549 | if (wait) |
| 550 | *wait = jiffy_wait; |
| 551 | return 0; |
| 552 | } |
| 553 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 554 | static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio, |
| 555 | unsigned long *wait) |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 556 | { |
| 557 | bool rw = bio_data_dir(bio); |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 558 | u64 bytes_allowed, extra_bytes, tmp; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 559 | unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 560 | |
| 561 | jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw]; |
| 562 | |
| 563 | /* Slice has just started. Consider one slice interval */ |
| 564 | if (!jiffy_elapsed) |
| 565 | jiffy_elapsed_rnd = throtl_slice; |
| 566 | |
| 567 | jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice); |
| 568 | |
Vivek Goyal | 5e901a2 | 2010-10-01 21:16:38 +0200 | [diff] [blame] | 569 | tmp = tg->bps[rw] * jiffy_elapsed_rnd; |
| 570 | do_div(tmp, HZ); |
Vivek Goyal | 3aad5d3 | 2010-10-01 14:51:14 +0200 | [diff] [blame] | 571 | bytes_allowed = tmp; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 572 | |
| 573 | if (tg->bytes_disp[rw] + bio->bi_size <= bytes_allowed) { |
| 574 | if (wait) |
| 575 | *wait = 0; |
| 576 | return 1; |
| 577 | } |
| 578 | |
| 579 | /* Calc approx time to dispatch */ |
| 580 | extra_bytes = tg->bytes_disp[rw] + bio->bi_size - bytes_allowed; |
| 581 | jiffy_wait = div64_u64(extra_bytes * HZ, tg->bps[rw]); |
| 582 | |
| 583 | if (!jiffy_wait) |
| 584 | jiffy_wait = 1; |
| 585 | |
| 586 | /* |
| 587 | * This wait time is without taking into consideration the rounding |
| 588 | * up we did. Add that time also. |
| 589 | */ |
| 590 | jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 591 | if (wait) |
| 592 | *wait = jiffy_wait; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 593 | return 0; |
| 594 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 595 | |
Vivek Goyal | af75cd3 | 2011-05-19 15:38:31 -0400 | [diff] [blame] | 596 | static bool tg_no_rule_group(struct throtl_grp *tg, bool rw) { |
| 597 | if (tg->bps[rw] == -1 && tg->iops[rw] == -1) |
| 598 | return 1; |
| 599 | return 0; |
| 600 | } |
| 601 | |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 602 | /* |
| 603 | * Returns whether one can dispatch a bio or not. Also returns approx number |
| 604 | * of jiffies to wait before this bio is with-in IO rate and can be dispatched |
| 605 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 606 | static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio, |
| 607 | unsigned long *wait) |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 608 | { |
| 609 | bool rw = bio_data_dir(bio); |
| 610 | unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0; |
| 611 | |
| 612 | /* |
| 613 | * Currently whole state machine of group depends on first bio |
| 614 | * queued in the group bio list. So one should not be calling |
| 615 | * this function with a different bio if there are other bios |
| 616 | * queued. |
| 617 | */ |
| 618 | BUG_ON(tg->nr_queued[rw] && bio != bio_list_peek(&tg->bio_lists[rw])); |
| 619 | |
| 620 | /* If tg->bps = -1, then BW is unlimited */ |
| 621 | if (tg->bps[rw] == -1 && tg->iops[rw] == -1) { |
| 622 | if (wait) |
| 623 | *wait = 0; |
| 624 | return 1; |
| 625 | } |
| 626 | |
| 627 | /* |
| 628 | * If previous slice expired, start a new one otherwise renew/extend |
| 629 | * existing slice to make sure it is at least throtl_slice interval |
| 630 | * long since now. |
| 631 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 632 | if (throtl_slice_used(tg, rw)) |
| 633 | throtl_start_new_slice(tg, rw); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 634 | else { |
| 635 | if (time_before(tg->slice_end[rw], jiffies + throtl_slice)) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 636 | throtl_extend_slice(tg, rw, jiffies + throtl_slice); |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 637 | } |
| 638 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 639 | if (tg_with_in_bps_limit(tg, bio, &bps_wait) && |
| 640 | tg_with_in_iops_limit(tg, bio, &iops_wait)) { |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 641 | if (wait) |
| 642 | *wait = 0; |
| 643 | return 1; |
| 644 | } |
| 645 | |
| 646 | max_wait = max(bps_wait, iops_wait); |
| 647 | |
| 648 | if (wait) |
| 649 | *wait = max_wait; |
| 650 | |
| 651 | if (time_before(tg->slice_end[rw], jiffies + max_wait)) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 652 | throtl_extend_slice(tg, rw, jiffies + max_wait); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 653 | |
| 654 | return 0; |
| 655 | } |
| 656 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 657 | static void throtl_update_dispatch_stats(struct blkcg_gq *blkg, u64 bytes, |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 658 | int rw) |
| 659 | { |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 660 | struct throtl_grp *tg = blkg_to_tg(blkg); |
| 661 | struct tg_stats_cpu *stats_cpu; |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 662 | unsigned long flags; |
| 663 | |
| 664 | /* If per cpu stats are not allocated yet, don't do any accounting. */ |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 665 | if (tg->stats_cpu == NULL) |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 666 | return; |
| 667 | |
| 668 | /* |
| 669 | * Disabling interrupts to provide mutual exclusion between two |
| 670 | * writes on same cpu. It probably is not needed for 64bit. Not |
| 671 | * optimizing that case yet. |
| 672 | */ |
| 673 | local_irq_save(flags); |
| 674 | |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 675 | stats_cpu = this_cpu_ptr(tg->stats_cpu); |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 676 | |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 677 | blkg_rwstat_add(&stats_cpu->serviced, rw, 1); |
| 678 | blkg_rwstat_add(&stats_cpu->service_bytes, rw, bytes); |
| 679 | |
| 680 | local_irq_restore(flags); |
| 681 | } |
| 682 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 683 | static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio) |
| 684 | { |
| 685 | bool rw = bio_data_dir(bio); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 686 | |
| 687 | /* Charge the bio to the group */ |
| 688 | tg->bytes_disp[rw] += bio->bi_size; |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 689 | tg->io_disp[rw]++; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 690 | |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 691 | throtl_update_dispatch_stats(tg_to_blkg(tg), bio->bi_size, bio->bi_rw); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 692 | } |
| 693 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 694 | static void throtl_add_bio_tg(struct throtl_service_queue *sq, |
| 695 | struct throtl_grp *tg, struct bio *bio) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 696 | { |
| 697 | bool rw = bio_data_dir(bio); |
| 698 | |
| 699 | bio_list_add(&tg->bio_lists[rw], bio); |
| 700 | /* Take a bio reference on tg */ |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 701 | blkg_get(tg_to_blkg(tg)); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 702 | tg->nr_queued[rw]++; |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 703 | tg->td->nr_queued[rw]++; |
| 704 | throtl_enqueue_tg(sq, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 705 | } |
| 706 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 707 | static void tg_update_disptime(struct throtl_service_queue *sq, |
| 708 | struct throtl_grp *tg) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 709 | { |
| 710 | unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime; |
| 711 | struct bio *bio; |
| 712 | |
| 713 | if ((bio = bio_list_peek(&tg->bio_lists[READ]))) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 714 | tg_may_dispatch(tg, bio, &read_wait); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 715 | |
| 716 | if ((bio = bio_list_peek(&tg->bio_lists[WRITE]))) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 717 | tg_may_dispatch(tg, bio, &write_wait); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 718 | |
| 719 | min_wait = min(read_wait, write_wait); |
| 720 | disptime = jiffies + min_wait; |
| 721 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 722 | /* Update dispatch time */ |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 723 | throtl_dequeue_tg(sq, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 724 | tg->disptime = disptime; |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 725 | throtl_enqueue_tg(sq, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 726 | } |
| 727 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 728 | static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw, |
| 729 | struct bio_list *bl) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 730 | { |
| 731 | struct bio *bio; |
| 732 | |
| 733 | bio = bio_list_pop(&tg->bio_lists[rw]); |
| 734 | tg->nr_queued[rw]--; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 735 | /* Drop bio reference on blkg */ |
| 736 | blkg_put(tg_to_blkg(tg)); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 737 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 738 | BUG_ON(tg->td->nr_queued[rw] <= 0); |
| 739 | tg->td->nr_queued[rw]--; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 740 | |
| 741 | throtl_charge_bio(tg, bio); |
| 742 | bio_list_add(bl, bio); |
| 743 | bio->bi_rw |= REQ_THROTTLED; |
| 744 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 745 | throtl_trim_slice(tg, rw); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 746 | } |
| 747 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 748 | static int throtl_dispatch_tg(struct throtl_grp *tg, struct bio_list *bl) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 749 | { |
| 750 | unsigned int nr_reads = 0, nr_writes = 0; |
| 751 | unsigned int max_nr_reads = throtl_grp_quantum*3/4; |
Vivek Goyal | c2f6805 | 2010-11-15 19:32:42 +0100 | [diff] [blame] | 752 | unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 753 | struct bio *bio; |
| 754 | |
| 755 | /* Try to dispatch 75% READS and 25% WRITES */ |
| 756 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 757 | while ((bio = bio_list_peek(&tg->bio_lists[READ])) && |
| 758 | tg_may_dispatch(tg, bio, NULL)) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 759 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 760 | tg_dispatch_one_bio(tg, bio_data_dir(bio), bl); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 761 | nr_reads++; |
| 762 | |
| 763 | if (nr_reads >= max_nr_reads) |
| 764 | break; |
| 765 | } |
| 766 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 767 | while ((bio = bio_list_peek(&tg->bio_lists[WRITE])) && |
| 768 | tg_may_dispatch(tg, bio, NULL)) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 769 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 770 | tg_dispatch_one_bio(tg, bio_data_dir(bio), bl); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 771 | nr_writes++; |
| 772 | |
| 773 | if (nr_writes >= max_nr_writes) |
| 774 | break; |
| 775 | } |
| 776 | |
| 777 | return nr_reads + nr_writes; |
| 778 | } |
| 779 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 780 | static int throtl_select_dispatch(struct throtl_service_queue *sq, |
| 781 | struct bio_list *bl) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 782 | { |
| 783 | unsigned int nr_disp = 0; |
| 784 | struct throtl_grp *tg; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 785 | |
| 786 | while (1) { |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 787 | tg = throtl_rb_first(sq); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 788 | |
| 789 | if (!tg) |
| 790 | break; |
| 791 | |
| 792 | if (time_before(jiffies, tg->disptime)) |
| 793 | break; |
| 794 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 795 | throtl_dequeue_tg(sq, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 796 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 797 | nr_disp += throtl_dispatch_tg(tg, bl); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 798 | |
Tejun Heo | 2db6314 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 799 | if (tg->nr_queued[0] || tg->nr_queued[1]) |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 800 | tg_update_disptime(sq, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 801 | |
| 802 | if (nr_disp >= throtl_quantum) |
| 803 | break; |
| 804 | } |
| 805 | |
| 806 | return nr_disp; |
| 807 | } |
| 808 | |
Tejun Heo | cb76199 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 809 | /* work function to dispatch throttled bios */ |
| 810 | void blk_throtl_dispatch_work_fn(struct work_struct *work) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 811 | { |
Tejun Heo | cb76199 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 812 | struct throtl_data *td = container_of(to_delayed_work(work), |
| 813 | struct throtl_data, dispatch_work); |
| 814 | struct request_queue *q = td->queue; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 815 | unsigned int nr_disp = 0; |
| 816 | struct bio_list bio_list_on_stack; |
| 817 | struct bio *bio; |
Vivek Goyal | 69d60eb | 2011-03-09 08:27:37 +0100 | [diff] [blame] | 818 | struct blk_plug plug; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 819 | |
| 820 | spin_lock_irq(q->queue_lock); |
| 821 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 822 | bio_list_init(&bio_list_on_stack); |
| 823 | |
Joe Perches | d2f31a5 | 2011-06-13 20:19:27 +0200 | [diff] [blame] | 824 | throtl_log(td, "dispatch nr_queued=%u read=%u write=%u", |
Tejun Heo | 6a52560 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 825 | td->nr_queued[READ] + td->nr_queued[WRITE], |
| 826 | td->nr_queued[READ], td->nr_queued[WRITE]); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 827 | |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 828 | nr_disp = throtl_select_dispatch(&td->service_queue, &bio_list_on_stack); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 829 | |
| 830 | if (nr_disp) |
| 831 | throtl_log(td, "bios disp=%u", nr_disp); |
| 832 | |
| 833 | throtl_schedule_next_dispatch(td); |
Tejun Heo | 6a52560 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 834 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 835 | spin_unlock_irq(q->queue_lock); |
| 836 | |
| 837 | /* |
| 838 | * If we dispatched some requests, unplug the queue to make sure |
| 839 | * immediate dispatch |
| 840 | */ |
| 841 | if (nr_disp) { |
Vivek Goyal | 69d60eb | 2011-03-09 08:27:37 +0100 | [diff] [blame] | 842 | blk_start_plug(&plug); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 843 | while((bio = bio_list_pop(&bio_list_on_stack))) |
| 844 | generic_make_request(bio); |
Vivek Goyal | 69d60eb | 2011-03-09 08:27:37 +0100 | [diff] [blame] | 845 | blk_finish_plug(&plug); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 846 | } |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 847 | } |
| 848 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 849 | static u64 tg_prfill_cpu_rwstat(struct seq_file *sf, |
| 850 | struct blkg_policy_data *pd, int off) |
Tejun Heo | 41b38b6 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 851 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 852 | struct throtl_grp *tg = pd_to_tg(pd); |
Tejun Heo | 41b38b6 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 853 | struct blkg_rwstat rwstat = { }, tmp; |
| 854 | int i, cpu; |
| 855 | |
| 856 | for_each_possible_cpu(cpu) { |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 857 | struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu); |
Tejun Heo | 41b38b6 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 858 | |
| 859 | tmp = blkg_rwstat_read((void *)sc + off); |
| 860 | for (i = 0; i < BLKG_RWSTAT_NR; i++) |
| 861 | rwstat.cnt[i] += tmp.cnt[i]; |
| 862 | } |
| 863 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 864 | return __blkg_prfill_rwstat(sf, pd, &rwstat); |
Tejun Heo | 41b38b6 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 865 | } |
| 866 | |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 867 | static int tg_print_cpu_rwstat(struct cgroup *cgrp, struct cftype *cft, |
| 868 | struct seq_file *sf) |
Tejun Heo | 41b38b6 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 869 | { |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 870 | struct blkcg *blkcg = cgroup_to_blkcg(cgrp); |
Tejun Heo | 41b38b6 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 871 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 872 | blkcg_print_blkgs(sf, blkcg, tg_prfill_cpu_rwstat, &blkcg_policy_throtl, |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 873 | cft->private, true); |
Tejun Heo | 41b38b6 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 874 | return 0; |
| 875 | } |
| 876 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 877 | static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd, |
| 878 | int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 879 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 880 | struct throtl_grp *tg = pd_to_tg(pd); |
| 881 | u64 v = *(u64 *)((void *)tg + off); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 882 | |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 883 | if (v == -1) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 884 | return 0; |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 885 | return __blkg_prfill_u64(sf, pd, v); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 886 | } |
| 887 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 888 | static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd, |
| 889 | int off) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 890 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 891 | struct throtl_grp *tg = pd_to_tg(pd); |
| 892 | unsigned int v = *(unsigned int *)((void *)tg + off); |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 893 | |
| 894 | if (v == -1) |
| 895 | return 0; |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 896 | return __blkg_prfill_u64(sf, pd, v); |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 897 | } |
| 898 | |
| 899 | static int tg_print_conf_u64(struct cgroup *cgrp, struct cftype *cft, |
| 900 | struct seq_file *sf) |
| 901 | { |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 902 | blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp), tg_prfill_conf_u64, |
| 903 | &blkcg_policy_throtl, cft->private, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 904 | return 0; |
| 905 | } |
| 906 | |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 907 | static int tg_print_conf_uint(struct cgroup *cgrp, struct cftype *cft, |
| 908 | struct seq_file *sf) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 909 | { |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 910 | blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp), tg_prfill_conf_uint, |
| 911 | &blkcg_policy_throtl, cft->private, false); |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 912 | return 0; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 913 | } |
| 914 | |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 915 | static int tg_set_conf(struct cgroup *cgrp, struct cftype *cft, const char *buf, |
| 916 | bool is_u64) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 917 | { |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 918 | struct blkcg *blkcg = cgroup_to_blkcg(cgrp); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 919 | struct blkg_conf_ctx ctx; |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 920 | struct throtl_grp *tg; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 921 | struct throtl_data *td; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 922 | int ret; |
| 923 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 924 | ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 925 | if (ret) |
| 926 | return ret; |
| 927 | |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 928 | tg = blkg_to_tg(ctx.blkg); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 929 | td = ctx.blkg->q->td; |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 930 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 931 | if (!ctx.v) |
| 932 | ctx.v = -1; |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 933 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 934 | if (is_u64) |
| 935 | *(u64 *)((void *)tg + cft->private) = ctx.v; |
| 936 | else |
| 937 | *(unsigned int *)((void *)tg + cft->private) = ctx.v; |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 938 | |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 939 | throtl_log_tg(tg, "limit change rbps=%llu wbps=%llu riops=%u wiops=%u", |
Tejun Heo | 632b449 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 940 | tg->bps[READ], tg->bps[WRITE], |
| 941 | tg->iops[READ], tg->iops[WRITE]); |
| 942 | |
| 943 | /* |
| 944 | * We're already holding queue_lock and know @tg is valid. Let's |
| 945 | * apply the new config directly. |
| 946 | * |
| 947 | * Restart the slices for both READ and WRITES. It might happen |
| 948 | * that a group's limit are dropped suddenly and we don't want to |
| 949 | * account recently dispatched IO with new low rate. |
| 950 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 951 | throtl_start_new_slice(tg, 0); |
| 952 | throtl_start_new_slice(tg, 1); |
Tejun Heo | 632b449 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 953 | |
Tejun Heo | 5b2c16a | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 954 | if (tg->flags & THROTL_TG_PENDING) { |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 955 | tg_update_disptime(&td->service_queue, tg); |
Tejun Heo | 632b449 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 956 | throtl_schedule_next_dispatch(td); |
| 957 | } |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 958 | |
| 959 | blkg_conf_finish(&ctx); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 960 | return 0; |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 961 | } |
| 962 | |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 963 | static int tg_set_conf_u64(struct cgroup *cgrp, struct cftype *cft, |
| 964 | const char *buf) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 965 | { |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 966 | return tg_set_conf(cgrp, cft, buf, true); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 967 | } |
| 968 | |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 969 | static int tg_set_conf_uint(struct cgroup *cgrp, struct cftype *cft, |
| 970 | const char *buf) |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 971 | { |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 972 | return tg_set_conf(cgrp, cft, buf, false); |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 973 | } |
| 974 | |
| 975 | static struct cftype throtl_files[] = { |
| 976 | { |
| 977 | .name = "throttle.read_bps_device", |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 978 | .private = offsetof(struct throtl_grp, bps[READ]), |
| 979 | .read_seq_string = tg_print_conf_u64, |
| 980 | .write_string = tg_set_conf_u64, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 981 | .max_write_len = 256, |
| 982 | }, |
| 983 | { |
| 984 | .name = "throttle.write_bps_device", |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 985 | .private = offsetof(struct throtl_grp, bps[WRITE]), |
| 986 | .read_seq_string = tg_print_conf_u64, |
| 987 | .write_string = tg_set_conf_u64, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 988 | .max_write_len = 256, |
| 989 | }, |
| 990 | { |
| 991 | .name = "throttle.read_iops_device", |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 992 | .private = offsetof(struct throtl_grp, iops[READ]), |
| 993 | .read_seq_string = tg_print_conf_uint, |
| 994 | .write_string = tg_set_conf_uint, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 995 | .max_write_len = 256, |
| 996 | }, |
| 997 | { |
| 998 | .name = "throttle.write_iops_device", |
Tejun Heo | af133ce | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 999 | .private = offsetof(struct throtl_grp, iops[WRITE]), |
| 1000 | .read_seq_string = tg_print_conf_uint, |
| 1001 | .write_string = tg_set_conf_uint, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1002 | .max_write_len = 256, |
| 1003 | }, |
| 1004 | { |
| 1005 | .name = "throttle.io_service_bytes", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1006 | .private = offsetof(struct tg_stats_cpu, service_bytes), |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1007 | .read_seq_string = tg_print_cpu_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1008 | }, |
| 1009 | { |
| 1010 | .name = "throttle.io_serviced", |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 1011 | .private = offsetof(struct tg_stats_cpu, serviced), |
Tejun Heo | 8a3d261 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1012 | .read_seq_string = tg_print_cpu_rwstat, |
Tejun Heo | 60c2bc2 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 1013 | }, |
| 1014 | { } /* terminate */ |
| 1015 | }; |
| 1016 | |
Vivek Goyal | da52777 | 2011-03-02 19:05:33 -0500 | [diff] [blame] | 1017 | static void throtl_shutdown_wq(struct request_queue *q) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1018 | { |
| 1019 | struct throtl_data *td = q->td; |
| 1020 | |
Tejun Heo | cb76199 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 1021 | cancel_delayed_work_sync(&td->dispatch_work); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1022 | } |
| 1023 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1024 | static struct blkcg_policy blkcg_policy_throtl = { |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 1025 | .pd_size = sizeof(struct throtl_grp), |
| 1026 | .cftypes = throtl_files, |
| 1027 | |
| 1028 | .pd_init_fn = throtl_pd_init, |
| 1029 | .pd_exit_fn = throtl_pd_exit, |
| 1030 | .pd_reset_stats_fn = throtl_pd_reset_stats, |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1031 | }; |
| 1032 | |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1033 | bool blk_throtl_bio(struct request_queue *q, struct bio *bio) |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1034 | { |
| 1035 | struct throtl_data *td = q->td; |
| 1036 | struct throtl_grp *tg; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1037 | bool rw = bio_data_dir(bio), update_disptime = true; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1038 | struct blkcg *blkcg; |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1039 | bool throttled = false; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1040 | |
| 1041 | if (bio->bi_rw & REQ_THROTTLED) { |
| 1042 | bio->bi_rw &= ~REQ_THROTTLED; |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1043 | goto out; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1044 | } |
| 1045 | |
Vivek Goyal | af75cd3 | 2011-05-19 15:38:31 -0400 | [diff] [blame] | 1046 | /* |
| 1047 | * A throtl_grp pointer retrieved under rcu can be used to access |
| 1048 | * basic fields like stats and io rates. If a group has no rules, |
| 1049 | * just update the dispatch stats in lockless manner and return. |
| 1050 | */ |
Vivek Goyal | af75cd3 | 2011-05-19 15:38:31 -0400 | [diff] [blame] | 1051 | rcu_read_lock(); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1052 | blkcg = bio_blkcg(bio); |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 1053 | tg = throtl_lookup_tg(td, blkcg); |
Vivek Goyal | af75cd3 | 2011-05-19 15:38:31 -0400 | [diff] [blame] | 1054 | if (tg) { |
Vivek Goyal | af75cd3 | 2011-05-19 15:38:31 -0400 | [diff] [blame] | 1055 | if (tg_no_rule_group(tg, rw)) { |
Tejun Heo | 629ed0b | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 1056 | throtl_update_dispatch_stats(tg_to_blkg(tg), |
| 1057 | bio->bi_size, bio->bi_rw); |
Tejun Heo | 2a7f124 | 2012-03-05 13:15:01 -0800 | [diff] [blame] | 1058 | goto out_unlock_rcu; |
Vivek Goyal | af75cd3 | 2011-05-19 15:38:31 -0400 | [diff] [blame] | 1059 | } |
| 1060 | } |
Vivek Goyal | af75cd3 | 2011-05-19 15:38:31 -0400 | [diff] [blame] | 1061 | |
| 1062 | /* |
| 1063 | * Either group has not been allocated yet or it is not an unlimited |
| 1064 | * IO group |
| 1065 | */ |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1066 | spin_lock_irq(q->queue_lock); |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 1067 | tg = throtl_lookup_create_tg(td, blkcg); |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1068 | if (unlikely(!tg)) |
| 1069 | goto out_unlock; |
Vivek Goyal | f469a7b | 2011-05-19 15:38:23 -0400 | [diff] [blame] | 1070 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1071 | if (tg->nr_queued[rw]) { |
| 1072 | /* |
| 1073 | * There is already another bio queued in same dir. No |
| 1074 | * need to update dispatch time. |
| 1075 | */ |
Vivek Goyal | 231d704 | 2011-03-07 21:05:14 +0100 | [diff] [blame] | 1076 | update_disptime = false; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1077 | goto queue_bio; |
Vivek Goyal | de701c7 | 2011-03-07 21:09:32 +0100 | [diff] [blame] | 1078 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | /* Bio is with-in rate limit of group */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1082 | if (tg_may_dispatch(tg, bio, NULL)) { |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1083 | throtl_charge_bio(tg, bio); |
Vivek Goyal | 04521db | 2011-03-22 21:54:29 +0100 | [diff] [blame] | 1084 | |
| 1085 | /* |
| 1086 | * We need to trim slice even when bios are not being queued |
| 1087 | * otherwise it might happen that a bio is not queued for |
| 1088 | * a long time and slice keeps on extending and trim is not |
| 1089 | * called for a long time. Now if limits are reduced suddenly |
| 1090 | * we take into account all the IO dispatched so far at new |
| 1091 | * low rate and * newly queued IO gets a really long dispatch |
| 1092 | * time. |
| 1093 | * |
| 1094 | * So keep on trimming slice even if bio is not queued. |
| 1095 | */ |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1096 | throtl_trim_slice(tg, rw); |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1097 | goto out_unlock; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1098 | } |
| 1099 | |
| 1100 | queue_bio: |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1101 | throtl_log_tg(tg, "[%c] bio. bdisp=%llu sz=%u bps=%llu" |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 1102 | " iodisp=%u iops=%u queued=%d/%d", |
| 1103 | rw == READ ? 'R' : 'W', |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1104 | tg->bytes_disp[rw], bio->bi_size, tg->bps[rw], |
Vivek Goyal | 8e89d13 | 2010-09-15 17:06:37 -0400 | [diff] [blame] | 1105 | tg->io_disp[rw], tg->iops[rw], |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1106 | tg->nr_queued[READ], tg->nr_queued[WRITE]); |
| 1107 | |
Tejun Heo | 671058f | 2012-03-05 13:15:29 -0800 | [diff] [blame] | 1108 | bio_associate_current(bio); |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 1109 | throtl_add_bio_tg(&q->td->service_queue, tg, bio); |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1110 | throttled = true; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1111 | |
| 1112 | if (update_disptime) { |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 1113 | tg_update_disptime(&td->service_queue, tg); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1114 | throtl_schedule_next_dispatch(td); |
| 1115 | } |
| 1116 | |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1117 | out_unlock: |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1118 | spin_unlock_irq(q->queue_lock); |
Tejun Heo | 2a7f124 | 2012-03-05 13:15:01 -0800 | [diff] [blame] | 1119 | out_unlock_rcu: |
| 1120 | rcu_read_unlock(); |
Tejun Heo | bc16a4f | 2011-10-19 14:33:01 +0200 | [diff] [blame] | 1121 | out: |
| 1122 | return throttled; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1123 | } |
| 1124 | |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 1125 | /** |
| 1126 | * blk_throtl_drain - drain throttled bios |
| 1127 | * @q: request_queue to drain throttled bios for |
| 1128 | * |
| 1129 | * Dispatch all currently throttled bios on @q through ->make_request_fn(). |
| 1130 | */ |
| 1131 | void blk_throtl_drain(struct request_queue *q) |
| 1132 | __releases(q->queue_lock) __acquires(q->queue_lock) |
| 1133 | { |
| 1134 | struct throtl_data *td = q->td; |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1135 | struct throtl_service_queue *sq = &td->service_queue; |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 1136 | struct throtl_grp *tg; |
| 1137 | struct bio_list bl; |
| 1138 | struct bio *bio; |
| 1139 | |
Andi Kleen | 8bcb6c7 | 2012-03-30 12:33:28 +0200 | [diff] [blame] | 1140 | queue_lockdep_assert_held(q); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 1141 | |
| 1142 | bio_list_init(&bl); |
| 1143 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1144 | while ((tg = throtl_rb_first(sq))) { |
Tejun Heo | e2d57e6 | 2013-05-14 13:52:33 -0700 | [diff] [blame^] | 1145 | throtl_dequeue_tg(sq, tg); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 1146 | |
| 1147 | while ((bio = bio_list_peek(&tg->bio_lists[READ]))) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1148 | tg_dispatch_one_bio(tg, bio_data_dir(bio), &bl); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 1149 | while ((bio = bio_list_peek(&tg->bio_lists[WRITE]))) |
Tejun Heo | 0f3457f | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1150 | tg_dispatch_one_bio(tg, bio_data_dir(bio), &bl); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 1151 | } |
| 1152 | spin_unlock_irq(q->queue_lock); |
| 1153 | |
| 1154 | while ((bio = bio_list_pop(&bl))) |
| 1155 | generic_make_request(bio); |
| 1156 | |
| 1157 | spin_lock_irq(q->queue_lock); |
| 1158 | } |
| 1159 | |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1160 | int blk_throtl_init(struct request_queue *q) |
| 1161 | { |
| 1162 | struct throtl_data *td; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 1163 | int ret; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1164 | |
| 1165 | td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node); |
| 1166 | if (!td) |
| 1167 | return -ENOMEM; |
| 1168 | |
Tejun Heo | c9e0332 | 2013-05-14 13:52:32 -0700 | [diff] [blame] | 1169 | td->service_queue = THROTL_SERVICE_QUEUE_INITIALIZER; |
Tejun Heo | cb76199 | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 1170 | INIT_DELAYED_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1171 | |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 1172 | q->td = td; |
Vivek Goyal | 29b1258 | 2011-05-19 15:38:24 -0400 | [diff] [blame] | 1173 | td->queue = q; |
Vivek Goyal | 02977e4 | 2010-10-01 14:49:48 +0200 | [diff] [blame] | 1174 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 1175 | /* activate policy */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1176 | ret = blkcg_activate_policy(q, &blkcg_policy_throtl); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 1177 | if (ret) |
Vivek Goyal | 29b1258 | 2011-05-19 15:38:24 -0400 | [diff] [blame] | 1178 | kfree(td); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 1179 | return ret; |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1180 | } |
| 1181 | |
| 1182 | void blk_throtl_exit(struct request_queue *q) |
| 1183 | { |
Tejun Heo | c875f4d | 2012-03-05 13:15:22 -0800 | [diff] [blame] | 1184 | BUG_ON(!q->td); |
Vivek Goyal | da52777 | 2011-03-02 19:05:33 -0500 | [diff] [blame] | 1185 | throtl_shutdown_wq(q); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1186 | blkcg_deactivate_policy(q, &blkcg_policy_throtl); |
Tejun Heo | c9a929d | 2011-10-19 14:42:16 +0200 | [diff] [blame] | 1187 | kfree(q->td); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1188 | } |
| 1189 | |
| 1190 | static int __init throtl_init(void) |
| 1191 | { |
Vivek Goyal | 450adcb | 2011-03-01 13:40:54 -0500 | [diff] [blame] | 1192 | kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0); |
| 1193 | if (!kthrotld_workqueue) |
| 1194 | panic("Failed to create kthrotld\n"); |
| 1195 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 1196 | return blkcg_policy_register(&blkcg_policy_throtl); |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | module_init(throtl_init); |