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