Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu
[linux-2.6-block.git] / block / blk-cgroup.c
CommitLineData
31e4c28d
VG
1/*
2 * Common Block IO controller cgroup interface
3 *
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
6 *
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
9 *
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
e48453c3
AA
12 *
13 * For policy-specific per-blkcg data:
14 * Copyright (C) 2015 Paolo Valente <paolo.valente@unimore.it>
15 * Arianna Avanzini <avanzini.arianna@gmail.com>
31e4c28d
VG
16 */
17#include <linux/ioprio.h>
22084190 18#include <linux/kdev_t.h>
9d6a986c 19#include <linux/module.h>
174cd4b1 20#include <linux/sched/signal.h>
accee785 21#include <linux/err.h>
9195291e 22#include <linux/blkdev.h>
52ebea74 23#include <linux/backing-dev.h>
5a0e3ad6 24#include <linux/slab.h>
34d0f179 25#include <linux/genhd.h>
72e06c25 26#include <linux/delay.h>
9a9e8a26 27#include <linux/atomic.h>
36aa9e5f 28#include <linux/ctype.h>
eea8f41c 29#include <linux/blk-cgroup.h>
d09d8df3 30#include <linux/tracehook.h>
5efd6113 31#include "blk.h"
3e252066 32
84c124da
DS
33#define MAX_KEY_LEN 100
34
838f13bf
TH
35/*
36 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
37 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
38 * policy [un]register operations including cgroup file additions /
39 * removals. Putting cgroup file registration outside blkcg_pol_mutex
40 * allows grabbing it from cgroup callbacks.
41 */
42static DEFINE_MUTEX(blkcg_pol_register_mutex);
bc0d6501 43static DEFINE_MUTEX(blkcg_pol_mutex);
923adde1 44
e48453c3 45struct blkcg blkcg_root;
3c798398 46EXPORT_SYMBOL_GPL(blkcg_root);
9d6a986c 47
496d5e75
TH
48struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
49
3c798398 50static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
035d10b2 51
7876f930
TH
52static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
53
903d23f0
JB
54static bool blkcg_debug_stats = false;
55
a2b1693b 56static bool blkcg_policy_enabled(struct request_queue *q,
3c798398 57 const struct blkcg_policy *pol)
a2b1693b
TH
58{
59 return pol && test_bit(pol->plid, q->blkcg_pols);
60}
61
0381411e
TH
62/**
63 * blkg_free - free a blkg
64 * @blkg: blkg to free
65 *
66 * Free @blkg which may be partially allocated.
67 */
3c798398 68static void blkg_free(struct blkcg_gq *blkg)
0381411e 69{
e8989fae 70 int i;
549d3aa8
TH
71
72 if (!blkg)
73 return;
74
db613670 75 for (i = 0; i < BLKCG_MAX_POLS; i++)
001bea73
TH
76 if (blkg->pd[i])
77 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
e8989fae 78
994b7832 79 if (blkg->blkcg != &blkcg_root)
b425e504 80 blk_exit_rl(blkg->q, &blkg->rl);
77ea7338
TH
81
82 blkg_rwstat_exit(&blkg->stat_ios);
83 blkg_rwstat_exit(&blkg->stat_bytes);
549d3aa8 84 kfree(blkg);
0381411e
TH
85}
86
b3b9f24f
DZF
87static void __blkg_release(struct rcu_head *rcu)
88{
89 struct blkcg_gq *blkg = container_of(rcu, struct blkcg_gq, rcu_head);
90
91 percpu_ref_exit(&blkg->refcnt);
92
93 /* release the blkcg and parent blkg refs this blkg has been holding */
94 css_put(&blkg->blkcg->css);
95 if (blkg->parent)
96 blkg_put(blkg->parent);
97
98 wb_congested_put(blkg->wb_congested);
99
100 blkg_free(blkg);
101}
102
103/*
104 * A group is RCU protected, but having an rcu lock does not mean that one
105 * can access all the fields of blkg and assume these are valid. For
106 * example, don't try to follow throtl_data and request queue links.
107 *
108 * Having a reference to blkg under an rcu allows accesses to only values
109 * local to groups like group stats and group rate limits.
110 */
111static void blkg_release(struct percpu_ref *ref)
112{
113 struct blkcg_gq *blkg = container_of(ref, struct blkcg_gq, refcnt);
114
115 call_rcu(&blkg->rcu_head, __blkg_release);
116}
117
0381411e
TH
118/**
119 * blkg_alloc - allocate a blkg
120 * @blkcg: block cgroup the new blkg is associated with
121 * @q: request_queue the new blkg is associated with
15974993 122 * @gfp_mask: allocation mask to use
0381411e 123 *
e8989fae 124 * Allocate a new blkg assocating @blkcg and @q.
0381411e 125 */
15974993
TH
126static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
127 gfp_t gfp_mask)
0381411e 128{
3c798398 129 struct blkcg_gq *blkg;
e8989fae 130 int i;
0381411e
TH
131
132 /* alloc and init base part */
15974993 133 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
0381411e
TH
134 if (!blkg)
135 return NULL;
136
77ea7338
TH
137 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
138 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
139 goto err_free;
140
c875f4d0 141 blkg->q = q;
e8989fae 142 INIT_LIST_HEAD(&blkg->q_node);
0381411e 143 blkg->blkcg = blkcg;
0381411e 144
a051661c
TH
145 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
146 if (blkcg != &blkcg_root) {
147 if (blk_init_rl(&blkg->rl, q, gfp_mask))
148 goto err_free;
149 blkg->rl.blkg = blkg;
150 }
151
8bd435b3 152 for (i = 0; i < BLKCG_MAX_POLS; i++) {
3c798398 153 struct blkcg_policy *pol = blkcg_policy[i];
e8989fae 154 struct blkg_policy_data *pd;
0381411e 155
a2b1693b 156 if (!blkcg_policy_enabled(q, pol))
e8989fae
TH
157 continue;
158
159 /* alloc per-policy data and attach it to blkg */
001bea73 160 pd = pol->pd_alloc_fn(gfp_mask, q->node);
a051661c
TH
161 if (!pd)
162 goto err_free;
549d3aa8 163
e8989fae
TH
164 blkg->pd[i] = pd;
165 pd->blkg = blkg;
b276a876 166 pd->plid = i;
e8989fae
TH
167 }
168
0381411e 169 return blkg;
a051661c
TH
170
171err_free:
172 blkg_free(blkg);
173 return NULL;
0381411e
TH
174}
175
24f29046
TH
176struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
177 struct request_queue *q, bool update_hint)
80fd9979 178{
3c798398 179 struct blkcg_gq *blkg;
80fd9979 180
a637120e 181 /*
86cde6b6
TH
182 * Hint didn't match. Look up from the radix tree. Note that the
183 * hint can only be updated under queue_lock as otherwise @blkg
184 * could have already been removed from blkg_tree. The caller is
185 * responsible for grabbing queue_lock if @update_hint.
a637120e
TH
186 */
187 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
86cde6b6
TH
188 if (blkg && blkg->q == q) {
189 if (update_hint) {
190 lockdep_assert_held(q->queue_lock);
191 rcu_assign_pointer(blkcg->blkg_hint, blkg);
192 }
a637120e 193 return blkg;
86cde6b6 194 }
a637120e 195
80fd9979
TH
196 return NULL;
197}
ae118896 198EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
80fd9979 199
15974993 200/*
d708f0d5
JA
201 * If @new_blkg is %NULL, this function tries to allocate a new one as
202 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
15974993 203 */
86cde6b6 204static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
d708f0d5
JA
205 struct request_queue *q,
206 struct blkcg_gq *new_blkg)
5624a4e4 207{
d708f0d5 208 struct blkcg_gq *blkg;
ce7acfea 209 struct bdi_writeback_congested *wb_congested;
f427d909 210 int i, ret;
5624a4e4 211
cd1604fa
TH
212 WARN_ON_ONCE(!rcu_read_lock_held());
213 lockdep_assert_held(q->queue_lock);
214
7ee9c562 215 /* blkg holds a reference to blkcg */
ec903c0c 216 if (!css_tryget_online(&blkcg->css)) {
20386ce0 217 ret = -ENODEV;
93e6d5d8 218 goto err_free_blkg;
15974993 219 }
cd1604fa 220
dc3b17cc 221 wb_congested = wb_congested_get_create(q->backing_dev_info,
d708f0d5
JA
222 blkcg->css.id,
223 GFP_NOWAIT | __GFP_NOWARN);
224 if (!wb_congested) {
ce7acfea 225 ret = -ENOMEM;
d708f0d5 226 goto err_put_css;
ce7acfea
TH
227 }
228
d708f0d5
JA
229 /* allocate */
230 if (!new_blkg) {
231 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
232 if (unlikely(!new_blkg)) {
233 ret = -ENOMEM;
234 goto err_put_congested;
15974993
TH
235 }
236 }
d708f0d5
JA
237 blkg = new_blkg;
238 blkg->wb_congested = wb_congested;
cd1604fa 239
db613670 240 /* link parent */
3c547865
TH
241 if (blkcg_parent(blkcg)) {
242 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
243 if (WARN_ON_ONCE(!blkg->parent)) {
20386ce0 244 ret = -ENODEV;
d708f0d5 245 goto err_put_congested;
3c547865
TH
246 }
247 blkg_get(blkg->parent);
248 }
249
b3b9f24f
DZF
250 ret = percpu_ref_init(&blkg->refcnt, blkg_release, 0,
251 GFP_NOWAIT | __GFP_NOWARN);
252 if (ret)
253 goto err_cancel_ref;
254
db613670
TH
255 /* invoke per-policy init */
256 for (i = 0; i < BLKCG_MAX_POLS; i++) {
257 struct blkcg_policy *pol = blkcg_policy[i];
258
259 if (blkg->pd[i] && pol->pd_init_fn)
a9520cd6 260 pol->pd_init_fn(blkg->pd[i]);
db613670
TH
261 }
262
263 /* insert */
cd1604fa 264 spin_lock(&blkcg->lock);
a637120e
TH
265 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
266 if (likely(!ret)) {
267 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
268 list_add(&blkg->q_node, &q->blkg_list);
f427d909
TH
269
270 for (i = 0; i < BLKCG_MAX_POLS; i++) {
271 struct blkcg_policy *pol = blkcg_policy[i];
272
273 if (blkg->pd[i] && pol->pd_online_fn)
a9520cd6 274 pol->pd_online_fn(blkg->pd[i]);
f427d909 275 }
a637120e 276 }
f427d909 277 blkg->online = true;
cd1604fa 278 spin_unlock(&blkcg->lock);
496fb780 279
ec13b1d6 280 if (!ret)
a637120e 281 return blkg;
15974993 282
3c547865
TH
283 /* @blkg failed fully initialized, use the usual release path */
284 blkg_put(blkg);
285 return ERR_PTR(ret);
286
b3b9f24f
DZF
287err_cancel_ref:
288 percpu_ref_exit(&blkg->refcnt);
d708f0d5
JA
289err_put_congested:
290 wb_congested_put(wb_congested);
291err_put_css:
496fb780 292 css_put(&blkcg->css);
93e6d5d8 293err_free_blkg:
d708f0d5 294 blkg_free(new_blkg);
93e6d5d8 295 return ERR_PTR(ret);
31e4c28d 296}
3c96cb32 297
86cde6b6 298/**
49f4c2dc 299 * __blkg_lookup_create - lookup blkg, try to create one if not there
86cde6b6
TH
300 * @blkcg: blkcg of interest
301 * @q: request_queue of interest
302 *
303 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
3c547865
TH
304 * create one. blkg creation is performed recursively from blkcg_root such
305 * that all non-root blkg's have access to the parent blkg. This function
306 * should be called under RCU read lock and @q->queue_lock.
86cde6b6 307 *
07b05bcc
DZF
308 * Returns the blkg or the closest blkg if blkg_create fails as it walks
309 * down from root.
86cde6b6 310 */
49f4c2dc
DZF
311struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
312 struct request_queue *q)
3c96cb32 313{
86cde6b6
TH
314 struct blkcg_gq *blkg;
315
316 WARN_ON_ONCE(!rcu_read_lock_held());
317 lockdep_assert_held(q->queue_lock);
318
d708f0d5
JA
319 /*
320 * This could be the first entry point of blkcg implementation and
321 * we shouldn't allow anything to go through for a bypassing queue.
322 */
323 if (unlikely(blk_queue_bypass(q)))
07b05bcc 324 return q->root_blkg;
d708f0d5 325
86cde6b6
TH
326 blkg = __blkg_lookup(blkcg, q, true);
327 if (blkg)
328 return blkg;
329
3c547865
TH
330 /*
331 * Create blkgs walking down from blkcg_root to @blkcg, so that all
07b05bcc
DZF
332 * non-root blkgs have access to their parents. Returns the closest
333 * blkg to the intended blkg should blkg_create() fail.
3c547865
TH
334 */
335 while (true) {
336 struct blkcg *pos = blkcg;
337 struct blkcg *parent = blkcg_parent(blkcg);
07b05bcc
DZF
338 struct blkcg_gq *ret_blkg = q->root_blkg;
339
340 while (parent) {
341 blkg = __blkg_lookup(parent, q, false);
342 if (blkg) {
343 /* remember closest blkg */
344 ret_blkg = blkg;
345 break;
346 }
3c547865
TH
347 pos = parent;
348 parent = blkcg_parent(parent);
349 }
350
d708f0d5 351 blkg = blkg_create(pos, q, NULL);
07b05bcc
DZF
352 if (IS_ERR(blkg))
353 return ret_blkg;
354 if (pos == blkcg)
3c547865
TH
355 return blkg;
356 }
3c96cb32 357}
31e4c28d 358
49f4c2dc
DZF
359/**
360 * blkg_lookup_create - find or create a blkg
361 * @blkcg: target block cgroup
362 * @q: target request_queue
363 *
364 * This looks up or creates the blkg representing the unique pair
365 * of the blkcg and the request_queue.
366 */
367struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
368 struct request_queue *q)
369{
370 struct blkcg_gq *blkg = blkg_lookup(blkcg, q);
371 unsigned long flags;
372
373 if (unlikely(!blkg)) {
374 spin_lock_irqsave(q->queue_lock, flags);
375
376 blkg = __blkg_lookup_create(blkcg, q);
377
378 spin_unlock_irqrestore(q->queue_lock, flags);
379 }
380
381 return blkg;
382}
383
3c798398 384static void blkg_destroy(struct blkcg_gq *blkg)
03aa264a 385{
3c798398 386 struct blkcg *blkcg = blkg->blkcg;
77ea7338 387 struct blkcg_gq *parent = blkg->parent;
6b065462 388 int i;
03aa264a 389
27e1f9d1 390 lockdep_assert_held(blkg->q->queue_lock);
9f13ef67 391 lockdep_assert_held(&blkcg->lock);
03aa264a
TH
392
393 /* Something wrong if we are trying to remove same group twice */
e8989fae 394 WARN_ON_ONCE(list_empty(&blkg->q_node));
9f13ef67 395 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
a637120e 396
6b065462
DZF
397 for (i = 0; i < BLKCG_MAX_POLS; i++) {
398 struct blkcg_policy *pol = blkcg_policy[i];
399
400 if (blkg->pd[i] && pol->pd_offline_fn)
401 pol->pd_offline_fn(blkg->pd[i]);
402 }
403
77ea7338
TH
404 if (parent) {
405 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
406 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
407 }
408
f427d909
TH
409 blkg->online = false;
410
a637120e 411 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
e8989fae 412 list_del_init(&blkg->q_node);
9f13ef67 413 hlist_del_init_rcu(&blkg->blkcg_node);
03aa264a 414
a637120e
TH
415 /*
416 * Both setting lookup hint to and clearing it from @blkg are done
417 * under queue_lock. If it's not pointing to @blkg now, it never
418 * will. Hint assignment itself can race safely.
419 */
ec6c676a 420 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
a637120e
TH
421 rcu_assign_pointer(blkcg->blkg_hint, NULL);
422
03aa264a
TH
423 /*
424 * Put the reference taken at the time of creation so that when all
425 * queues are gone, group can be destroyed.
426 */
b3b9f24f 427 percpu_ref_kill(&blkg->refcnt);
03aa264a
TH
428}
429
9f13ef67
TH
430/**
431 * blkg_destroy_all - destroy all blkgs associated with a request_queue
432 * @q: request_queue of interest
9f13ef67 433 *
3c96cb32 434 * Destroy all blkgs associated with @q.
9f13ef67 435 */
3c96cb32 436static void blkg_destroy_all(struct request_queue *q)
72e06c25 437{
3c798398 438 struct blkcg_gq *blkg, *n;
72e06c25 439
6d18b008 440 lockdep_assert_held(q->queue_lock);
72e06c25 441
9f13ef67 442 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
3c798398 443 struct blkcg *blkcg = blkg->blkcg;
72e06c25 444
9f13ef67
TH
445 spin_lock(&blkcg->lock);
446 blkg_destroy(blkg);
447 spin_unlock(&blkcg->lock);
72e06c25 448 }
6fe810bd
TH
449
450 q->root_blkg = NULL;
451 q->root_rl.blkg = NULL;
72e06c25
TH
452}
453
a051661c
TH
454/*
455 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
456 * because the root blkg uses @q->root_rl instead of its own rl.
457 */
458struct request_list *__blk_queue_next_rl(struct request_list *rl,
459 struct request_queue *q)
460{
461 struct list_head *ent;
462 struct blkcg_gq *blkg;
463
464 /*
465 * Determine the current blkg list_head. The first entry is
466 * root_rl which is off @q->blkg_list and mapped to the head.
467 */
468 if (rl == &q->root_rl) {
469 ent = &q->blkg_list;
65c77fd9
JN
470 /* There are no more block groups, hence no request lists */
471 if (list_empty(ent))
472 return NULL;
a051661c
TH
473 } else {
474 blkg = container_of(rl, struct blkcg_gq, rl);
475 ent = &blkg->q_node;
476 }
477
478 /* walk to the next list_head, skip root blkcg */
479 ent = ent->next;
480 if (ent == &q->root_blkg->q_node)
481 ent = ent->next;
482 if (ent == &q->blkg_list)
483 return NULL;
484
485 blkg = container_of(ent, struct blkcg_gq, q_node);
486 return &blkg->rl;
487}
488
182446d0
TH
489static int blkcg_reset_stats(struct cgroup_subsys_state *css,
490 struct cftype *cftype, u64 val)
303a3acb 491{
182446d0 492 struct blkcg *blkcg = css_to_blkcg(css);
3c798398 493 struct blkcg_gq *blkg;
bc0d6501 494 int i;
303a3acb 495
838f13bf 496 mutex_lock(&blkcg_pol_mutex);
303a3acb 497 spin_lock_irq(&blkcg->lock);
997a026c
TH
498
499 /*
500 * Note that stat reset is racy - it doesn't synchronize against
501 * stat updates. This is a debug feature which shouldn't exist
502 * anyway. If you get hit by a race, retry.
503 */
b67bfe0d 504 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
77ea7338
TH
505 blkg_rwstat_reset(&blkg->stat_bytes);
506 blkg_rwstat_reset(&blkg->stat_ios);
507
8bd435b3 508 for (i = 0; i < BLKCG_MAX_POLS; i++) {
3c798398 509 struct blkcg_policy *pol = blkcg_policy[i];
549d3aa8 510
a9520cd6
TH
511 if (blkg->pd[i] && pol->pd_reset_stats_fn)
512 pol->pd_reset_stats_fn(blkg->pd[i]);
bc0d6501 513 }
303a3acb 514 }
f0bdc8cd 515
303a3acb 516 spin_unlock_irq(&blkcg->lock);
bc0d6501 517 mutex_unlock(&blkcg_pol_mutex);
303a3acb
DS
518 return 0;
519}
520
dd165eb3 521const char *blkg_dev_name(struct blkcg_gq *blkg)
303a3acb 522{
d3d32e69 523 /* some drivers (floppy) instantiate a queue w/o disk registered */
dc3b17cc
JK
524 if (blkg->q->backing_dev_info->dev)
525 return dev_name(blkg->q->backing_dev_info->dev);
d3d32e69 526 return NULL;
303a3acb 527}
dd165eb3 528EXPORT_SYMBOL_GPL(blkg_dev_name);
303a3acb 529
d3d32e69
TH
530/**
531 * blkcg_print_blkgs - helper for printing per-blkg data
532 * @sf: seq_file to print to
533 * @blkcg: blkcg of interest
534 * @prfill: fill function to print out a blkg
535 * @pol: policy in question
536 * @data: data to be passed to @prfill
537 * @show_total: to print out sum of prfill return values or not
538 *
539 * This function invokes @prfill on each blkg of @blkcg if pd for the
540 * policy specified by @pol exists. @prfill is invoked with @sf, the
810ecfa7
TH
541 * policy data and @data and the matching queue lock held. If @show_total
542 * is %true, the sum of the return values from @prfill is printed with
543 * "Total" label at the end.
d3d32e69
TH
544 *
545 * This is to be used to construct print functions for
546 * cftype->read_seq_string method.
547 */
3c798398 548void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
f95a04af
TH
549 u64 (*prfill)(struct seq_file *,
550 struct blkg_policy_data *, int),
3c798398 551 const struct blkcg_policy *pol, int data,
ec399347 552 bool show_total)
5624a4e4 553{
3c798398 554 struct blkcg_gq *blkg;
d3d32e69 555 u64 total = 0;
5624a4e4 556
810ecfa7 557 rcu_read_lock();
ee89f812 558 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
810ecfa7 559 spin_lock_irq(blkg->q->queue_lock);
a2b1693b 560 if (blkcg_policy_enabled(blkg->q, pol))
f95a04af 561 total += prfill(sf, blkg->pd[pol->plid], data);
810ecfa7
TH
562 spin_unlock_irq(blkg->q->queue_lock);
563 }
564 rcu_read_unlock();
d3d32e69
TH
565
566 if (show_total)
567 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
568}
829fdb50 569EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
d3d32e69
TH
570
571/**
572 * __blkg_prfill_u64 - prfill helper for a single u64 value
573 * @sf: seq_file to print to
f95a04af 574 * @pd: policy private data of interest
d3d32e69
TH
575 * @v: value to print
576 *
f95a04af 577 * Print @v to @sf for the device assocaited with @pd.
d3d32e69 578 */
f95a04af 579u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
d3d32e69 580{
f95a04af 581 const char *dname = blkg_dev_name(pd->blkg);
d3d32e69
TH
582
583 if (!dname)
584 return 0;
585
586 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
587 return v;
588}
829fdb50 589EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
d3d32e69
TH
590
591/**
592 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
593 * @sf: seq_file to print to
f95a04af 594 * @pd: policy private data of interest
d3d32e69
TH
595 * @rwstat: rwstat to print
596 *
f95a04af 597 * Print @rwstat to @sf for the device assocaited with @pd.
d3d32e69 598 */
f95a04af 599u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
829fdb50 600 const struct blkg_rwstat *rwstat)
d3d32e69
TH
601{
602 static const char *rwstr[] = {
603 [BLKG_RWSTAT_READ] = "Read",
604 [BLKG_RWSTAT_WRITE] = "Write",
605 [BLKG_RWSTAT_SYNC] = "Sync",
606 [BLKG_RWSTAT_ASYNC] = "Async",
636620b6 607 [BLKG_RWSTAT_DISCARD] = "Discard",
d3d32e69 608 };
f95a04af 609 const char *dname = blkg_dev_name(pd->blkg);
d3d32e69
TH
610 u64 v;
611 int i;
612
613 if (!dname)
614 return 0;
615
616 for (i = 0; i < BLKG_RWSTAT_NR; i++)
617 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
24bdb8ef 618 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
d3d32e69 619
24bdb8ef 620 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
636620b6
TH
621 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]) +
622 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_DISCARD]);
d3d32e69
TH
623 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
624 return v;
625}
b50da39f 626EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
d3d32e69 627
5bc4afb1
TH
628/**
629 * blkg_prfill_stat - prfill callback for blkg_stat
630 * @sf: seq_file to print to
f95a04af
TH
631 * @pd: policy private data of interest
632 * @off: offset to the blkg_stat in @pd
5bc4afb1
TH
633 *
634 * prfill callback for printing a blkg_stat.
635 */
f95a04af 636u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
d3d32e69 637{
f95a04af 638 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
d3d32e69 639}
5bc4afb1 640EXPORT_SYMBOL_GPL(blkg_prfill_stat);
d3d32e69 641
5bc4afb1
TH
642/**
643 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
644 * @sf: seq_file to print to
f95a04af
TH
645 * @pd: policy private data of interest
646 * @off: offset to the blkg_rwstat in @pd
5bc4afb1
TH
647 *
648 * prfill callback for printing a blkg_rwstat.
649 */
f95a04af
TH
650u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
651 int off)
d3d32e69 652{
f95a04af 653 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
d3d32e69 654
f95a04af 655 return __blkg_prfill_rwstat(sf, pd, &rwstat);
d3d32e69 656}
5bc4afb1 657EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
d3d32e69 658
77ea7338
TH
659static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
660 struct blkg_policy_data *pd, int off)
661{
662 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
663
664 return __blkg_prfill_rwstat(sf, pd, &rwstat);
665}
666
667/**
668 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
669 * @sf: seq_file to print to
670 * @v: unused
671 *
672 * To be used as cftype->seq_show to print blkg->stat_bytes.
673 * cftype->private must be set to the blkcg_policy.
674 */
675int blkg_print_stat_bytes(struct seq_file *sf, void *v)
676{
677 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
678 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
679 offsetof(struct blkcg_gq, stat_bytes), true);
680 return 0;
681}
682EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
683
684/**
685 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
686 * @sf: seq_file to print to
687 * @v: unused
688 *
689 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
690 * must be set to the blkcg_policy.
691 */
692int blkg_print_stat_ios(struct seq_file *sf, void *v)
693{
694 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
695 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
696 offsetof(struct blkcg_gq, stat_ios), true);
697 return 0;
698}
699EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
700
701static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
702 struct blkg_policy_data *pd,
703 int off)
704{
705 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
706 NULL, off);
707 return __blkg_prfill_rwstat(sf, pd, &rwstat);
708}
709
710/**
711 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
712 * @sf: seq_file to print to
713 * @v: unused
714 */
715int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
716{
717 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
718 blkg_prfill_rwstat_field_recursive,
719 (void *)seq_cft(sf)->private,
720 offsetof(struct blkcg_gq, stat_bytes), true);
721 return 0;
722}
723EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
724
725/**
726 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
727 * @sf: seq_file to print to
728 * @v: unused
729 */
730int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
731{
732 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
733 blkg_prfill_rwstat_field_recursive,
734 (void *)seq_cft(sf)->private,
735 offsetof(struct blkcg_gq, stat_ios), true);
736 return 0;
737}
738EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
739
16b3de66
TH
740/**
741 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
f12c74ca
TH
742 * @blkg: blkg of interest
743 * @pol: blkcg_policy which contains the blkg_stat
744 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
16b3de66 745 *
f12c74ca
TH
746 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
747 * online descendants and their aux counts. The caller must be holding the
748 * queue lock for online tests.
749 *
750 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
751 * at @off bytes into @blkg's blkg_policy_data of the policy.
16b3de66 752 */
f12c74ca
TH
753u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
754 struct blkcg_policy *pol, int off)
16b3de66 755{
16b3de66 756 struct blkcg_gq *pos_blkg;
492eb21b 757 struct cgroup_subsys_state *pos_css;
bd8815a6 758 u64 sum = 0;
16b3de66 759
f12c74ca 760 lockdep_assert_held(blkg->q->queue_lock);
16b3de66 761
16b3de66 762 rcu_read_lock();
f12c74ca
TH
763 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
764 struct blkg_stat *stat;
765
766 if (!pos_blkg->online)
767 continue;
16b3de66 768
f12c74ca
TH
769 if (pol)
770 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
771 else
772 stat = (void *)blkg + off;
773
774 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
16b3de66
TH
775 }
776 rcu_read_unlock();
777
778 return sum;
779}
780EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
781
782/**
783 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
f12c74ca
TH
784 * @blkg: blkg of interest
785 * @pol: blkcg_policy which contains the blkg_rwstat
786 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
16b3de66 787 *
f12c74ca
TH
788 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
789 * online descendants and their aux counts. The caller must be holding the
790 * queue lock for online tests.
791 *
792 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
793 * is at @off bytes into @blkg's blkg_policy_data of the policy.
16b3de66 794 */
f12c74ca
TH
795struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
796 struct blkcg_policy *pol, int off)
16b3de66 797{
16b3de66 798 struct blkcg_gq *pos_blkg;
492eb21b 799 struct cgroup_subsys_state *pos_css;
bd8815a6 800 struct blkg_rwstat sum = { };
16b3de66
TH
801 int i;
802
f12c74ca 803 lockdep_assert_held(blkg->q->queue_lock);
16b3de66 804
16b3de66 805 rcu_read_lock();
f12c74ca 806 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
3a7faead 807 struct blkg_rwstat *rwstat;
16b3de66
TH
808
809 if (!pos_blkg->online)
810 continue;
811
f12c74ca
TH
812 if (pol)
813 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
814 else
815 rwstat = (void *)pos_blkg + off;
816
16b3de66 817 for (i = 0; i < BLKG_RWSTAT_NR; i++)
3a7faead
TH
818 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
819 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
820 &sum.aux_cnt[i]);
16b3de66
TH
821 }
822 rcu_read_unlock();
823
824 return sum;
825}
826EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
827
457e490f
TE
828/* Performs queue bypass and policy enabled checks then looks up blkg. */
829static struct blkcg_gq *blkg_lookup_check(struct blkcg *blkcg,
830 const struct blkcg_policy *pol,
831 struct request_queue *q)
832{
833 WARN_ON_ONCE(!rcu_read_lock_held());
834 lockdep_assert_held(q->queue_lock);
835
836 if (!blkcg_policy_enabled(q, pol))
837 return ERR_PTR(-EOPNOTSUPP);
838
839 /*
840 * This could be the first entry point of blkcg implementation and
841 * we shouldn't allow anything to go through for a bypassing queue.
842 */
843 if (unlikely(blk_queue_bypass(q)))
844 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
845
846 return __blkg_lookup(blkcg, q, true /* update_hint */);
847}
848
3a8b31d3
TH
849/**
850 * blkg_conf_prep - parse and prepare for per-blkg config update
851 * @blkcg: target block cgroup
da8b0662 852 * @pol: target policy
3a8b31d3
TH
853 * @input: input string
854 * @ctx: blkg_conf_ctx to be filled
855 *
856 * Parse per-blkg config update from @input and initialize @ctx with the
36aa9e5f
TH
857 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
858 * part of @input following MAJ:MIN. This function returns with RCU read
859 * lock and queue lock held and must be paired with blkg_conf_finish().
3a8b31d3 860 */
3c798398 861int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
36aa9e5f 862 char *input, struct blkg_conf_ctx *ctx)
da8b0662 863 __acquires(rcu) __acquires(disk->queue->queue_lock)
34d0f179 864{
3a8b31d3 865 struct gendisk *disk;
457e490f 866 struct request_queue *q;
3c798398 867 struct blkcg_gq *blkg;
726fa694 868 unsigned int major, minor;
36aa9e5f
TH
869 int key_len, part, ret;
870 char *body;
34d0f179 871
36aa9e5f 872 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
726fa694 873 return -EINVAL;
3a8b31d3 874
36aa9e5f
TH
875 body = input + key_len;
876 if (!isspace(*body))
877 return -EINVAL;
878 body = skip_spaces(body);
879
726fa694 880 disk = get_gendisk(MKDEV(major, minor), &part);
5f6c2d2b 881 if (!disk)
20386ce0 882 return -ENODEV;
5f6c2d2b 883 if (part) {
457e490f
TE
884 ret = -ENODEV;
885 goto fail;
5f6c2d2b 886 }
e56da7e2 887
457e490f 888 q = disk->queue;
da8b0662 889
457e490f
TE
890 rcu_read_lock();
891 spin_lock_irq(q->queue_lock);
e56da7e2 892
457e490f 893 blkg = blkg_lookup_check(blkcg, pol, q);
4bfd482e
TH
894 if (IS_ERR(blkg)) {
895 ret = PTR_ERR(blkg);
457e490f
TE
896 goto fail_unlock;
897 }
898
899 if (blkg)
900 goto success;
901
902 /*
903 * Create blkgs walking down from blkcg_root to @blkcg, so that all
904 * non-root blkgs have access to their parents.
905 */
906 while (true) {
907 struct blkcg *pos = blkcg;
908 struct blkcg *parent;
909 struct blkcg_gq *new_blkg;
910
911 parent = blkcg_parent(blkcg);
912 while (parent && !__blkg_lookup(parent, q, false)) {
913 pos = parent;
914 parent = blkcg_parent(parent);
915 }
916
917 /* Drop locks to do new blkg allocation with GFP_KERNEL. */
918 spin_unlock_irq(q->queue_lock);
3a8b31d3 919 rcu_read_unlock();
457e490f
TE
920
921 new_blkg = blkg_alloc(pos, q, GFP_KERNEL);
922 if (unlikely(!new_blkg)) {
923 ret = -ENOMEM;
924 goto fail;
7702e8f4 925 }
3a8b31d3 926
457e490f
TE
927 rcu_read_lock();
928 spin_lock_irq(q->queue_lock);
929
930 blkg = blkg_lookup_check(pos, pol, q);
931 if (IS_ERR(blkg)) {
932 ret = PTR_ERR(blkg);
933 goto fail_unlock;
934 }
935
936 if (blkg) {
937 blkg_free(new_blkg);
938 } else {
939 blkg = blkg_create(pos, q, new_blkg);
940 if (unlikely(IS_ERR(blkg))) {
941 ret = PTR_ERR(blkg);
942 goto fail_unlock;
943 }
944 }
945
946 if (pos == blkcg)
947 goto success;
948 }
949success:
3a8b31d3
TH
950 ctx->disk = disk;
951 ctx->blkg = blkg;
36aa9e5f 952 ctx->body = body;
726fa694 953 return 0;
457e490f
TE
954
955fail_unlock:
956 spin_unlock_irq(q->queue_lock);
957 rcu_read_unlock();
958fail:
9df6c299 959 put_disk_and_module(disk);
457e490f
TE
960 /*
961 * If queue was bypassing, we should retry. Do so after a
962 * short msleep(). It isn't strictly necessary but queue
963 * can be bypassing for some time and it's always nice to
964 * avoid busy looping.
965 */
966 if (ret == -EBUSY) {
967 msleep(10);
968 ret = restart_syscall();
969 }
970 return ret;
34d0f179 971}
829fdb50 972EXPORT_SYMBOL_GPL(blkg_conf_prep);
34d0f179 973
3a8b31d3
TH
974/**
975 * blkg_conf_finish - finish up per-blkg config update
976 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
977 *
978 * Finish up after per-blkg config update. This function must be paired
979 * with blkg_conf_prep().
980 */
829fdb50 981void blkg_conf_finish(struct blkg_conf_ctx *ctx)
da8b0662 982 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
34d0f179 983{
da8b0662 984 spin_unlock_irq(ctx->disk->queue->queue_lock);
3a8b31d3 985 rcu_read_unlock();
9df6c299 986 put_disk_and_module(ctx->disk);
34d0f179 987}
829fdb50 988EXPORT_SYMBOL_GPL(blkg_conf_finish);
34d0f179 989
2ee867dc
TH
990static int blkcg_print_stat(struct seq_file *sf, void *v)
991{
992 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
993 struct blkcg_gq *blkg;
994
995 rcu_read_lock();
996
997 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
998 const char *dname;
903d23f0 999 char *buf;
2ee867dc 1000 struct blkg_rwstat rwstat;
636620b6 1001 u64 rbytes, wbytes, rios, wios, dbytes, dios;
903d23f0
JB
1002 size_t size = seq_get_buf(sf, &buf), off = 0;
1003 int i;
1004 bool has_stats = false;
2ee867dc
TH
1005
1006 dname = blkg_dev_name(blkg);
1007 if (!dname)
1008 continue;
1009
903d23f0
JB
1010 /*
1011 * Hooray string manipulation, count is the size written NOT
1012 * INCLUDING THE \0, so size is now count+1 less than what we
1013 * had before, but we want to start writing the next bit from
1014 * the \0 so we only add count to buf.
1015 */
1016 off += scnprintf(buf+off, size-off, "%s ", dname);
1017
2ee867dc
TH
1018 spin_lock_irq(blkg->q->queue_lock);
1019
1020 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
1021 offsetof(struct blkcg_gq, stat_bytes));
1022 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
1023 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
636620b6 1024 dbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
2ee867dc
TH
1025
1026 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
1027 offsetof(struct blkcg_gq, stat_ios));
1028 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
1029 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
636620b6 1030 dios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_DISCARD]);
2ee867dc
TH
1031
1032 spin_unlock_irq(blkg->q->queue_lock);
1033
903d23f0
JB
1034 if (rbytes || wbytes || rios || wios) {
1035 has_stats = true;
1036 off += scnprintf(buf+off, size-off,
636620b6
TH
1037 "rbytes=%llu wbytes=%llu rios=%llu wios=%llu dbytes=%llu dios=%llu",
1038 rbytes, wbytes, rios, wios,
1039 dbytes, dios);
903d23f0
JB
1040 }
1041
1042 if (!blkcg_debug_stats)
1043 goto next;
1044
d09d8df3
JB
1045 if (atomic_read(&blkg->use_delay)) {
1046 has_stats = true;
1047 off += scnprintf(buf+off, size-off,
1048 " use_delay=%d delay_nsec=%llu",
1049 atomic_read(&blkg->use_delay),
1050 (unsigned long long)atomic64_read(&blkg->delay_nsec));
1051 }
1052
903d23f0
JB
1053 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1054 struct blkcg_policy *pol = blkcg_policy[i];
1055 size_t written;
1056
1057 if (!blkg->pd[i] || !pol->pd_stat_fn)
1058 continue;
1059
1060 written = pol->pd_stat_fn(blkg->pd[i], buf+off, size-off);
1061 if (written)
1062 has_stats = true;
1063 off += written;
1064 }
1065next:
1066 if (has_stats) {
1067 off += scnprintf(buf+off, size-off, "\n");
1068 seq_commit(sf, off);
1069 }
2ee867dc
TH
1070 }
1071
1072 rcu_read_unlock();
1073 return 0;
1074}
1075
e1f3b941 1076static struct cftype blkcg_files[] = {
2ee867dc
TH
1077 {
1078 .name = "stat",
ca0752c5 1079 .flags = CFTYPE_NOT_ON_ROOT,
2ee867dc
TH
1080 .seq_show = blkcg_print_stat,
1081 },
1082 { } /* terminate */
1083};
1084
e1f3b941 1085static struct cftype blkcg_legacy_files[] = {
84c124da
DS
1086 {
1087 .name = "reset_stats",
3c798398 1088 .write_u64 = blkcg_reset_stats,
22084190 1089 },
4baf6e33 1090 { } /* terminate */
31e4c28d
VG
1091};
1092
59b57717
DZF
1093/*
1094 * blkcg destruction is a three-stage process.
1095 *
1096 * 1. Destruction starts. The blkcg_css_offline() callback is invoked
1097 * which offlines writeback. Here we tie the next stage of blkg destruction
1098 * to the completion of writeback associated with the blkcg. This lets us
1099 * avoid punting potentially large amounts of outstanding writeback to root
1100 * while maintaining any ongoing policies. The next stage is triggered when
1101 * the nr_cgwbs count goes to zero.
1102 *
1103 * 2. When the nr_cgwbs count goes to zero, blkcg_destroy_blkgs() is called
1104 * and handles the destruction of blkgs. Here the css reference held by
1105 * the blkg is put back eventually allowing blkcg_css_free() to be called.
1106 * This work may occur in cgwb_release_workfn() on the cgwb_release
1107 * workqueue. Any submitted ios that fail to get the blkg ref will be
1108 * punted to the root_blkg.
1109 *
1110 * 3. Once the blkcg ref count goes to zero, blkcg_css_free() is called.
1111 * This finally frees the blkcg.
1112 */
1113
9f13ef67 1114/**
92fb9748 1115 * blkcg_css_offline - cgroup css_offline callback
eb95419b 1116 * @css: css of interest
9f13ef67 1117 *
59b57717
DZF
1118 * This function is called when @css is about to go away. Here the cgwbs are
1119 * offlined first and only once writeback associated with the blkcg has
1120 * finished do we start step 2 (see above).
9f13ef67 1121 */
eb95419b 1122static void blkcg_css_offline(struct cgroup_subsys_state *css)
31e4c28d 1123{
eb95419b 1124 struct blkcg *blkcg = css_to_blkcg(css);
b1c35769 1125
59b57717
DZF
1126 /* this prevents anyone from attaching or migrating to this blkcg */
1127 wb_blkcg_offline(blkcg);
1128
1129 /* put the base cgwb reference allowing step 2 to be triggered */
1130 blkcg_cgwb_put(blkcg);
1131}
1132
1133/**
1134 * blkcg_destroy_blkgs - responsible for shooting down blkgs
1135 * @blkcg: blkcg of interest
1136 *
1137 * blkgs should be removed while holding both q and blkcg locks. As blkcg lock
1138 * is nested inside q lock, this function performs reverse double lock dancing.
1139 * Destroying the blkgs releases the reference held on the blkcg's css allowing
1140 * blkcg_css_free to eventually be called.
1141 *
1142 * This is the blkcg counterpart of ioc_release_fn().
1143 */
1144void blkcg_destroy_blkgs(struct blkcg *blkcg)
1145{
9f13ef67 1146 spin_lock_irq(&blkcg->lock);
7ee9c562 1147
4c699480
JQ
1148 while (!hlist_empty(&blkcg->blkg_list)) {
1149 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
6b065462 1150 struct blkcg_gq, blkcg_node);
4c699480
JQ
1151 struct request_queue *q = blkg->q;
1152
1153 if (spin_trylock(q->queue_lock)) {
1154 blkg_destroy(blkg);
1155 spin_unlock(q->queue_lock);
1156 } else {
1157 spin_unlock_irq(&blkcg->lock);
1158 cpu_relax();
1159 spin_lock_irq(&blkcg->lock);
1160 }
1161 }
6b065462 1162
4c699480
JQ
1163 spin_unlock_irq(&blkcg->lock);
1164}
1165
eb95419b 1166static void blkcg_css_free(struct cgroup_subsys_state *css)
7ee9c562 1167{
eb95419b 1168 struct blkcg *blkcg = css_to_blkcg(css);
bc915e61 1169 int i;
7ee9c562 1170
7876f930 1171 mutex_lock(&blkcg_pol_mutex);
e4a9bde9 1172
7876f930 1173 list_del(&blkcg->all_blkcgs_node);
7876f930 1174
bc915e61 1175 for (i = 0; i < BLKCG_MAX_POLS; i++)
e4a9bde9
TH
1176 if (blkcg->cpd[i])
1177 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1178
1179 mutex_unlock(&blkcg_pol_mutex);
1180
bc915e61 1181 kfree(blkcg);
31e4c28d
VG
1182}
1183
eb95419b
TH
1184static struct cgroup_subsys_state *
1185blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
31e4c28d 1186{
3c798398 1187 struct blkcg *blkcg;
e48453c3
AA
1188 struct cgroup_subsys_state *ret;
1189 int i;
31e4c28d 1190
7876f930
TH
1191 mutex_lock(&blkcg_pol_mutex);
1192
eb95419b 1193 if (!parent_css) {
3c798398 1194 blkcg = &blkcg_root;
bc915e61
TH
1195 } else {
1196 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1197 if (!blkcg) {
1198 ret = ERR_PTR(-ENOMEM);
4c18c9e9 1199 goto unlock;
bc915e61 1200 }
e48453c3
AA
1201 }
1202
1203 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1204 struct blkcg_policy *pol = blkcg_policy[i];
1205 struct blkcg_policy_data *cpd;
1206
1207 /*
1208 * If the policy hasn't been attached yet, wait for it
1209 * to be attached before doing anything else. Otherwise,
1210 * check if the policy requires any specific per-cgroup
1211 * data: if it does, allocate and initialize it.
1212 */
e4a9bde9 1213 if (!pol || !pol->cpd_alloc_fn)
e48453c3
AA
1214 continue;
1215
e4a9bde9 1216 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
e48453c3
AA
1217 if (!cpd) {
1218 ret = ERR_PTR(-ENOMEM);
1219 goto free_pd_blkcg;
1220 }
81437648
TH
1221 blkcg->cpd[i] = cpd;
1222 cpd->blkcg = blkcg;
e48453c3 1223 cpd->plid = i;
e4a9bde9
TH
1224 if (pol->cpd_init_fn)
1225 pol->cpd_init_fn(cpd);
e48453c3 1226 }
31e4c28d 1227
31e4c28d 1228 spin_lock_init(&blkcg->lock);
e00f4f4d 1229 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
31e4c28d 1230 INIT_HLIST_HEAD(&blkcg->blkg_list);
52ebea74
TH
1231#ifdef CONFIG_CGROUP_WRITEBACK
1232 INIT_LIST_HEAD(&blkcg->cgwb_list);
59b57717 1233 refcount_set(&blkcg->cgwb_refcnt, 1);
52ebea74 1234#endif
7876f930
TH
1235 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1236
1237 mutex_unlock(&blkcg_pol_mutex);
31e4c28d 1238 return &blkcg->css;
e48453c3
AA
1239
1240free_pd_blkcg:
1241 for (i--; i >= 0; i--)
e4a9bde9
TH
1242 if (blkcg->cpd[i])
1243 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
4c18c9e9 1244
1245 if (blkcg != &blkcg_root)
1246 kfree(blkcg);
1247unlock:
7876f930 1248 mutex_unlock(&blkcg_pol_mutex);
e48453c3 1249 return ret;
31e4c28d
VG
1250}
1251
5efd6113
TH
1252/**
1253 * blkcg_init_queue - initialize blkcg part of request queue
1254 * @q: request_queue to initialize
1255 *
1256 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1257 * part of new request_queue @q.
1258 *
1259 * RETURNS:
1260 * 0 on success, -errno on failure.
1261 */
1262int blkcg_init_queue(struct request_queue *q)
1263{
d708f0d5
JA
1264 struct blkcg_gq *new_blkg, *blkg;
1265 bool preloaded;
ec13b1d6
TH
1266 int ret;
1267
d708f0d5
JA
1268 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1269 if (!new_blkg)
1270 return -ENOMEM;
1271
1272 preloaded = !radix_tree_preload(GFP_KERNEL);
1273
bea54883 1274 /* Make sure the root blkg exists. */
ec13b1d6
TH
1275 rcu_read_lock();
1276 spin_lock_irq(q->queue_lock);
d708f0d5 1277 blkg = blkg_create(&blkcg_root, q, new_blkg);
901932a3
JB
1278 if (IS_ERR(blkg))
1279 goto err_unlock;
1280 q->root_blkg = blkg;
1281 q->root_rl.blkg = blkg;
ec13b1d6
TH
1282 spin_unlock_irq(q->queue_lock);
1283 rcu_read_unlock();
1284
d708f0d5
JA
1285 if (preloaded)
1286 radix_tree_preload_end();
1287
d7067512
JB
1288 ret = blk_iolatency_init(q);
1289 if (ret) {
1290 spin_lock_irq(q->queue_lock);
1291 blkg_destroy_all(q);
1292 spin_unlock_irq(q->queue_lock);
1293 return ret;
1294 }
1295
ec13b1d6
TH
1296 ret = blk_throtl_init(q);
1297 if (ret) {
1298 spin_lock_irq(q->queue_lock);
1299 blkg_destroy_all(q);
1300 spin_unlock_irq(q->queue_lock);
1301 }
1302 return ret;
901932a3
JB
1303
1304err_unlock:
1305 spin_unlock_irq(q->queue_lock);
1306 rcu_read_unlock();
1307 if (preloaded)
1308 radix_tree_preload_end();
1309 return PTR_ERR(blkg);
5efd6113
TH
1310}
1311
1312/**
1313 * blkcg_drain_queue - drain blkcg part of request_queue
1314 * @q: request_queue to drain
1315 *
1316 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1317 */
1318void blkcg_drain_queue(struct request_queue *q)
1319{
1320 lockdep_assert_held(q->queue_lock);
1321
0b462c89
TH
1322 /*
1323 * @q could be exiting and already have destroyed all blkgs as
1324 * indicated by NULL root_blkg. If so, don't confuse policies.
1325 */
1326 if (!q->root_blkg)
1327 return;
1328
5efd6113
TH
1329 blk_throtl_drain(q);
1330}
1331
1332/**
1333 * blkcg_exit_queue - exit and release blkcg part of request_queue
1334 * @q: request_queue being released
1335 *
1336 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1337 */
1338void blkcg_exit_queue(struct request_queue *q)
1339{
6d18b008 1340 spin_lock_irq(q->queue_lock);
3c96cb32 1341 blkg_destroy_all(q);
6d18b008
TH
1342 spin_unlock_irq(q->queue_lock);
1343
5efd6113
TH
1344 blk_throtl_exit(q);
1345}
1346
31e4c28d
VG
1347/*
1348 * We cannot support shared io contexts, as we have no mean to support
1349 * two tasks with the same ioc in two different groups without major rework
1350 * of the main cic data structures. For now we allow a task to change
1351 * its cgroup only if it's the only owner of its ioc.
1352 */
1f7dd3e5 1353static int blkcg_can_attach(struct cgroup_taskset *tset)
31e4c28d 1354{
bb9d97b6 1355 struct task_struct *task;
1f7dd3e5 1356 struct cgroup_subsys_state *dst_css;
31e4c28d
VG
1357 struct io_context *ioc;
1358 int ret = 0;
1359
1360 /* task_lock() is needed to avoid races with exit_io_context() */
1f7dd3e5 1361 cgroup_taskset_for_each(task, dst_css, tset) {
bb9d97b6
TH
1362 task_lock(task);
1363 ioc = task->io_context;
1364 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1365 ret = -EINVAL;
1366 task_unlock(task);
1367 if (ret)
1368 break;
1369 }
31e4c28d
VG
1370 return ret;
1371}
1372
69d7fde5
TH
1373static void blkcg_bind(struct cgroup_subsys_state *root_css)
1374{
1375 int i;
1376
1377 mutex_lock(&blkcg_pol_mutex);
1378
1379 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1380 struct blkcg_policy *pol = blkcg_policy[i];
1381 struct blkcg *blkcg;
1382
1383 if (!pol || !pol->cpd_bind_fn)
1384 continue;
1385
1386 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1387 if (blkcg->cpd[pol->plid])
1388 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1389 }
1390 mutex_unlock(&blkcg_pol_mutex);
1391}
1392
d09d8df3
JB
1393static void blkcg_exit(struct task_struct *tsk)
1394{
1395 if (tsk->throttle_queue)
1396 blk_put_queue(tsk->throttle_queue);
1397 tsk->throttle_queue = NULL;
1398}
1399
c165b3e3 1400struct cgroup_subsys io_cgrp_subsys = {
92fb9748
TH
1401 .css_alloc = blkcg_css_alloc,
1402 .css_offline = blkcg_css_offline,
1403 .css_free = blkcg_css_free,
3c798398 1404 .can_attach = blkcg_can_attach,
69d7fde5 1405 .bind = blkcg_bind,
2ee867dc 1406 .dfl_cftypes = blkcg_files,
880f50e2 1407 .legacy_cftypes = blkcg_legacy_files,
c165b3e3 1408 .legacy_name = "blkio",
d09d8df3 1409 .exit = blkcg_exit,
1ced953b
TH
1410#ifdef CONFIG_MEMCG
1411 /*
1412 * This ensures that, if available, memcg is automatically enabled
1413 * together on the default hierarchy so that the owner cgroup can
1414 * be retrieved from writeback pages.
1415 */
1416 .depends_on = 1 << memory_cgrp_id,
1417#endif
676f7c8f 1418};
c165b3e3 1419EXPORT_SYMBOL_GPL(io_cgrp_subsys);
676f7c8f 1420
a2b1693b
TH
1421/**
1422 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1423 * @q: request_queue of interest
1424 * @pol: blkcg policy to activate
1425 *
1426 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1427 * bypass mode to populate its blkgs with policy_data for @pol.
1428 *
1429 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1430 * from IO path. Update of each blkg is protected by both queue and blkcg
1431 * locks so that holding either lock and testing blkcg_policy_enabled() is
1432 * always enough for dereferencing policy data.
1433 *
1434 * The caller is responsible for synchronizing [de]activations and policy
1435 * [un]registerations. Returns 0 on success, -errno on failure.
1436 */
1437int blkcg_activate_policy(struct request_queue *q,
3c798398 1438 const struct blkcg_policy *pol)
a2b1693b 1439{
4c55f4f9 1440 struct blkg_policy_data *pd_prealloc = NULL;
ec13b1d6 1441 struct blkcg_gq *blkg;
4c55f4f9 1442 int ret;
a2b1693b
TH
1443
1444 if (blkcg_policy_enabled(q, pol))
1445 return 0;
1446
38dbb7dd 1447 if (q->mq_ops)
bd166ef1 1448 blk_mq_freeze_queue(q);
38dbb7dd 1449 else
bd166ef1 1450 blk_queue_bypass_start(q);
4c55f4f9
TH
1451pd_prealloc:
1452 if (!pd_prealloc) {
001bea73 1453 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
4c55f4f9 1454 if (!pd_prealloc) {
a2b1693b 1455 ret = -ENOMEM;
4c55f4f9 1456 goto out_bypass_end;
a2b1693b 1457 }
a2b1693b
TH
1458 }
1459
a2b1693b
TH
1460 spin_lock_irq(q->queue_lock);
1461
1462 list_for_each_entry(blkg, &q->blkg_list, q_node) {
4c55f4f9
TH
1463 struct blkg_policy_data *pd;
1464
1465 if (blkg->pd[pol->plid])
1466 continue;
a2b1693b 1467
e00f4f4d 1468 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
4c55f4f9
TH
1469 if (!pd)
1470 swap(pd, pd_prealloc);
1471 if (!pd) {
1472 spin_unlock_irq(q->queue_lock);
1473 goto pd_prealloc;
1474 }
a2b1693b
TH
1475
1476 blkg->pd[pol->plid] = pd;
1477 pd->blkg = blkg;
b276a876 1478 pd->plid = pol->plid;
3e418710 1479 if (pol->pd_init_fn)
a9520cd6 1480 pol->pd_init_fn(pd);
a2b1693b
TH
1481 }
1482
1483 __set_bit(pol->plid, q->blkcg_pols);
1484 ret = 0;
4c55f4f9 1485
a2b1693b 1486 spin_unlock_irq(q->queue_lock);
4c55f4f9 1487out_bypass_end:
38dbb7dd 1488 if (q->mq_ops)
bd166ef1 1489 blk_mq_unfreeze_queue(q);
38dbb7dd 1490 else
bd166ef1 1491 blk_queue_bypass_end(q);
001bea73
TH
1492 if (pd_prealloc)
1493 pol->pd_free_fn(pd_prealloc);
a2b1693b
TH
1494 return ret;
1495}
1496EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1497
1498/**
1499 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1500 * @q: request_queue of interest
1501 * @pol: blkcg policy to deactivate
1502 *
1503 * Deactivate @pol on @q. Follows the same synchronization rules as
1504 * blkcg_activate_policy().
1505 */
1506void blkcg_deactivate_policy(struct request_queue *q,
3c798398 1507 const struct blkcg_policy *pol)
a2b1693b 1508{
3c798398 1509 struct blkcg_gq *blkg;
a2b1693b
TH
1510
1511 if (!blkcg_policy_enabled(q, pol))
1512 return;
1513
38dbb7dd 1514 if (q->mq_ops)
bd166ef1 1515 blk_mq_freeze_queue(q);
38dbb7dd 1516 else
bd166ef1
JA
1517 blk_queue_bypass_start(q);
1518
a2b1693b
TH
1519 spin_lock_irq(q->queue_lock);
1520
1521 __clear_bit(pol->plid, q->blkcg_pols);
1522
1523 list_for_each_entry(blkg, &q->blkg_list, q_node) {
001bea73 1524 if (blkg->pd[pol->plid]) {
6b065462 1525 if (pol->pd_offline_fn)
a9520cd6 1526 pol->pd_offline_fn(blkg->pd[pol->plid]);
001bea73
TH
1527 pol->pd_free_fn(blkg->pd[pol->plid]);
1528 blkg->pd[pol->plid] = NULL;
1529 }
a2b1693b
TH
1530 }
1531
1532 spin_unlock_irq(q->queue_lock);
bd166ef1 1533
38dbb7dd 1534 if (q->mq_ops)
bd166ef1 1535 blk_mq_unfreeze_queue(q);
38dbb7dd 1536 else
bd166ef1 1537 blk_queue_bypass_end(q);
a2b1693b
TH
1538}
1539EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1540
8bd435b3 1541/**
3c798398
TH
1542 * blkcg_policy_register - register a blkcg policy
1543 * @pol: blkcg policy to register
8bd435b3 1544 *
3c798398
TH
1545 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1546 * successful registration. Returns 0 on success and -errno on failure.
8bd435b3 1547 */
d5bf0291 1548int blkcg_policy_register(struct blkcg_policy *pol)
3e252066 1549{
06b285bd 1550 struct blkcg *blkcg;
8bd435b3 1551 int i, ret;
e8989fae 1552
838f13bf 1553 mutex_lock(&blkcg_pol_register_mutex);
bc0d6501
TH
1554 mutex_lock(&blkcg_pol_mutex);
1555
8bd435b3
TH
1556 /* find an empty slot */
1557 ret = -ENOSPC;
1558 for (i = 0; i < BLKCG_MAX_POLS; i++)
3c798398 1559 if (!blkcg_policy[i])
8bd435b3 1560 break;
01c5f85a
JA
1561 if (i >= BLKCG_MAX_POLS) {
1562 pr_warn("blkcg_policy_register: BLKCG_MAX_POLS too small\n");
838f13bf 1563 goto err_unlock;
01c5f85a 1564 }
035d10b2 1565
e8401073 1566 /* Make sure cpd/pd_alloc_fn and cpd/pd_free_fn in pairs */
1567 if ((!pol->cpd_alloc_fn ^ !pol->cpd_free_fn) ||
1568 (!pol->pd_alloc_fn ^ !pol->pd_free_fn))
1569 goto err_unlock;
1570
06b285bd 1571 /* register @pol */
3c798398 1572 pol->plid = i;
06b285bd
TH
1573 blkcg_policy[pol->plid] = pol;
1574
1575 /* allocate and install cpd's */
e4a9bde9 1576 if (pol->cpd_alloc_fn) {
06b285bd
TH
1577 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1578 struct blkcg_policy_data *cpd;
1579
e4a9bde9 1580 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
bbb427e3 1581 if (!cpd)
06b285bd 1582 goto err_free_cpds;
06b285bd 1583
81437648
TH
1584 blkcg->cpd[pol->plid] = cpd;
1585 cpd->blkcg = blkcg;
06b285bd 1586 cpd->plid = pol->plid;
81437648 1587 pol->cpd_init_fn(cpd);
06b285bd
TH
1588 }
1589 }
1590
838f13bf 1591 mutex_unlock(&blkcg_pol_mutex);
8bd435b3 1592
8bd435b3 1593 /* everything is in place, add intf files for the new policy */
2ee867dc
TH
1594 if (pol->dfl_cftypes)
1595 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1596 pol->dfl_cftypes));
880f50e2 1597 if (pol->legacy_cftypes)
c165b3e3 1598 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
880f50e2 1599 pol->legacy_cftypes));
838f13bf
TH
1600 mutex_unlock(&blkcg_pol_register_mutex);
1601 return 0;
1602
06b285bd 1603err_free_cpds:
58a9edce 1604 if (pol->cpd_free_fn) {
06b285bd 1605 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
e4a9bde9
TH
1606 if (blkcg->cpd[pol->plid]) {
1607 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1608 blkcg->cpd[pol->plid] = NULL;
1609 }
06b285bd
TH
1610 }
1611 }
1612 blkcg_policy[pol->plid] = NULL;
838f13bf 1613err_unlock:
bc0d6501 1614 mutex_unlock(&blkcg_pol_mutex);
838f13bf 1615 mutex_unlock(&blkcg_pol_register_mutex);
8bd435b3 1616 return ret;
3e252066 1617}
3c798398 1618EXPORT_SYMBOL_GPL(blkcg_policy_register);
3e252066 1619
8bd435b3 1620/**
3c798398
TH
1621 * blkcg_policy_unregister - unregister a blkcg policy
1622 * @pol: blkcg policy to unregister
8bd435b3 1623 *
3c798398 1624 * Undo blkcg_policy_register(@pol). Might sleep.
8bd435b3 1625 */
3c798398 1626void blkcg_policy_unregister(struct blkcg_policy *pol)
3e252066 1627{
06b285bd
TH
1628 struct blkcg *blkcg;
1629
838f13bf 1630 mutex_lock(&blkcg_pol_register_mutex);
bc0d6501 1631
3c798398 1632 if (WARN_ON(blkcg_policy[pol->plid] != pol))
8bd435b3
TH
1633 goto out_unlock;
1634
1635 /* kill the intf files first */
2ee867dc
TH
1636 if (pol->dfl_cftypes)
1637 cgroup_rm_cftypes(pol->dfl_cftypes);
880f50e2
TH
1638 if (pol->legacy_cftypes)
1639 cgroup_rm_cftypes(pol->legacy_cftypes);
44ea53de 1640
06b285bd 1641 /* remove cpds and unregister */
838f13bf 1642 mutex_lock(&blkcg_pol_mutex);
06b285bd 1643
58a9edce 1644 if (pol->cpd_free_fn) {
06b285bd 1645 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
e4a9bde9
TH
1646 if (blkcg->cpd[pol->plid]) {
1647 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1648 blkcg->cpd[pol->plid] = NULL;
1649 }
06b285bd
TH
1650 }
1651 }
3c798398 1652 blkcg_policy[pol->plid] = NULL;
06b285bd 1653
bc0d6501 1654 mutex_unlock(&blkcg_pol_mutex);
838f13bf
TH
1655out_unlock:
1656 mutex_unlock(&blkcg_pol_register_mutex);
3e252066 1657}
3c798398 1658EXPORT_SYMBOL_GPL(blkcg_policy_unregister);
903d23f0 1659
d09d8df3
JB
1660/*
1661 * Scale the accumulated delay based on how long it has been since we updated
1662 * the delay. We only call this when we are adding delay, in case it's been a
1663 * while since we added delay, and when we are checking to see if we need to
1664 * delay a task, to account for any delays that may have occurred.
1665 */
1666static void blkcg_scale_delay(struct blkcg_gq *blkg, u64 now)
1667{
1668 u64 old = atomic64_read(&blkg->delay_start);
1669
1670 /*
1671 * We only want to scale down every second. The idea here is that we
1672 * want to delay people for min(delay_nsec, NSEC_PER_SEC) in a certain
1673 * time window. We only want to throttle tasks for recent delay that
1674 * has occurred, in 1 second time windows since that's the maximum
1675 * things can be throttled. We save the current delay window in
1676 * blkg->last_delay so we know what amount is still left to be charged
1677 * to the blkg from this point onward. blkg->last_use keeps track of
1678 * the use_delay counter. The idea is if we're unthrottling the blkg we
1679 * are ok with whatever is happening now, and we can take away more of
1680 * the accumulated delay as we've already throttled enough that
1681 * everybody is happy with their IO latencies.
1682 */
1683 if (time_before64(old + NSEC_PER_SEC, now) &&
1684 atomic64_cmpxchg(&blkg->delay_start, old, now) == old) {
1685 u64 cur = atomic64_read(&blkg->delay_nsec);
1686 u64 sub = min_t(u64, blkg->last_delay, now - old);
1687 int cur_use = atomic_read(&blkg->use_delay);
1688
1689 /*
1690 * We've been unthrottled, subtract a larger chunk of our
1691 * accumulated delay.
1692 */
1693 if (cur_use < blkg->last_use)
1694 sub = max_t(u64, sub, blkg->last_delay >> 1);
1695
1696 /*
1697 * This shouldn't happen, but handle it anyway. Our delay_nsec
1698 * should only ever be growing except here where we subtract out
1699 * min(last_delay, 1 second), but lord knows bugs happen and I'd
1700 * rather not end up with negative numbers.
1701 */
1702 if (unlikely(cur < sub)) {
1703 atomic64_set(&blkg->delay_nsec, 0);
1704 blkg->last_delay = 0;
1705 } else {
1706 atomic64_sub(sub, &blkg->delay_nsec);
1707 blkg->last_delay = cur - sub;
1708 }
1709 blkg->last_use = cur_use;
1710 }
1711}
1712
1713/*
1714 * This is called when we want to actually walk up the hierarchy and check to
1715 * see if we need to throttle, and then actually throttle if there is some
1716 * accumulated delay. This should only be called upon return to user space so
1717 * we're not holding some lock that would induce a priority inversion.
1718 */
1719static void blkcg_maybe_throttle_blkg(struct blkcg_gq *blkg, bool use_memdelay)
1720{
1721 u64 now = ktime_to_ns(ktime_get());
1722 u64 exp;
1723 u64 delay_nsec = 0;
1724 int tok;
1725
1726 while (blkg->parent) {
1727 if (atomic_read(&blkg->use_delay)) {
1728 blkcg_scale_delay(blkg, now);
1729 delay_nsec = max_t(u64, delay_nsec,
1730 atomic64_read(&blkg->delay_nsec));
1731 }
1732 blkg = blkg->parent;
1733 }
1734
1735 if (!delay_nsec)
1736 return;
1737
1738 /*
1739 * Let's not sleep for all eternity if we've amassed a huge delay.
1740 * Swapping or metadata IO can accumulate 10's of seconds worth of
1741 * delay, and we want userspace to be able to do _something_ so cap the
1742 * delays at 1 second. If there's 10's of seconds worth of delay then
1743 * the tasks will be delayed for 1 second for every syscall.
1744 */
1745 delay_nsec = min_t(u64, delay_nsec, 250 * NSEC_PER_MSEC);
1746
1747 /*
1748 * TODO: the use_memdelay flag is going to be for the upcoming psi stuff
1749 * that hasn't landed upstream yet. Once that stuff is in place we need
1750 * to do a psi_memstall_enter/leave if memdelay is set.
1751 */
1752
1753 exp = ktime_add_ns(now, delay_nsec);
1754 tok = io_schedule_prepare();
1755 do {
1756 __set_current_state(TASK_KILLABLE);
1757 if (!schedule_hrtimeout(&exp, HRTIMER_MODE_ABS))
1758 break;
1759 } while (!fatal_signal_pending(current));
1760 io_schedule_finish(tok);
1761}
1762
1763/**
1764 * blkcg_maybe_throttle_current - throttle the current task if it has been marked
1765 *
1766 * This is only called if we've been marked with set_notify_resume(). Obviously
1767 * we can be set_notify_resume() for reasons other than blkcg throttling, so we
1768 * check to see if current->throttle_queue is set and if not this doesn't do
1769 * anything. This should only ever be called by the resume code, it's not meant
1770 * to be called by people willy-nilly as it will actually do the work to
1771 * throttle the task if it is setup for throttling.
1772 */
1773void blkcg_maybe_throttle_current(void)
1774{
1775 struct request_queue *q = current->throttle_queue;
1776 struct cgroup_subsys_state *css;
1777 struct blkcg *blkcg;
1778 struct blkcg_gq *blkg;
1779 bool use_memdelay = current->use_memdelay;
1780
1781 if (!q)
1782 return;
1783
1784 current->throttle_queue = NULL;
1785 current->use_memdelay = false;
1786
1787 rcu_read_lock();
1788 css = kthread_blkcg();
1789 if (css)
1790 blkcg = css_to_blkcg(css);
1791 else
1792 blkcg = css_to_blkcg(task_css(current, io_cgrp_id));
1793
1794 if (!blkcg)
1795 goto out;
1796 blkg = blkg_lookup(blkcg, q);
1797 if (!blkg)
1798 goto out;
101246ec 1799 if (!blkg_tryget(blkg))
d09d8df3
JB
1800 goto out;
1801 rcu_read_unlock();
d09d8df3
JB
1802
1803 blkcg_maybe_throttle_blkg(blkg, use_memdelay);
1804 blkg_put(blkg);
cc7ecc25 1805 blk_put_queue(q);
d09d8df3
JB
1806 return;
1807out:
1808 rcu_read_unlock();
1809 blk_put_queue(q);
1810}
1811EXPORT_SYMBOL_GPL(blkcg_maybe_throttle_current);
1812
1813/**
1814 * blkcg_schedule_throttle - this task needs to check for throttling
1815 * @q - the request queue IO was submitted on
1816 * @use_memdelay - do we charge this to memory delay for PSI
1817 *
1818 * This is called by the IO controller when we know there's delay accumulated
1819 * for the blkg for this task. We do not pass the blkg because there are places
1820 * we call this that may not have that information, the swapping code for
1821 * instance will only have a request_queue at that point. This set's the
1822 * notify_resume for the task to check and see if it requires throttling before
1823 * returning to user space.
1824 *
1825 * We will only schedule once per syscall. You can call this over and over
1826 * again and it will only do the check once upon return to user space, and only
1827 * throttle once. If the task needs to be throttled again it'll need to be
1828 * re-set at the next time we see the task.
1829 */
1830void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay)
1831{
1832 if (unlikely(current->flags & PF_KTHREAD))
1833 return;
1834
1835 if (!blk_get_queue(q))
1836 return;
1837
1838 if (current->throttle_queue)
1839 blk_put_queue(current->throttle_queue);
1840 current->throttle_queue = q;
1841 if (use_memdelay)
1842 current->use_memdelay = use_memdelay;
1843 set_notify_resume(current);
1844}
1845EXPORT_SYMBOL_GPL(blkcg_schedule_throttle);
1846
1847/**
1848 * blkcg_add_delay - add delay to this blkg
1849 * @now - the current time in nanoseconds
1850 * @delta - how many nanoseconds of delay to add
1851 *
1852 * Charge @delta to the blkg's current delay accumulation. This is used to
1853 * throttle tasks if an IO controller thinks we need more throttling.
1854 */
1855void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta)
1856{
1857 blkcg_scale_delay(blkg, now);
1858 atomic64_add(delta, &blkg->delay_nsec);
1859}
1860EXPORT_SYMBOL_GPL(blkcg_add_delay);
1861
903d23f0
JB
1862module_param(blkcg_debug_stats, bool, 0644);
1863MODULE_PARM_DESC(blkcg_debug_stats, "True if you want debug stats, false if not");