blob: 8b069c3775eeb67ed27be086eb7277545bd3b061 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Vivek Goyal31e4c282009-12-03 12:59:42 -05002#ifndef _BLK_CGROUP_H
3#define _BLK_CGROUP_H
4/*
5 * Common Block IO controller cgroup interface
6 *
7 * Based on ideas and code from CFQ, CFS and BFQ:
8 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
9 *
10 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
11 * Paolo Valente <paolo.valente@unimore.it>
12 *
13 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
14 * Nauman Rafique <nauman@google.com>
15 */
16
17#include <linux/cgroup.h>
Tejun Heo24bdb8e2015-08-18 14:55:22 -070018#include <linux/percpu_counter.h>
Tejun Heo829fdb52012-04-01 14:38:43 -070019#include <linux/seq_file.h>
Tejun Heoa6371202012-04-19 16:29:24 -070020#include <linux/radix-tree.h>
Tejun Heoa0516612012-06-26 15:05:44 -070021#include <linux/blkdev.h>
Tejun Heoa5049a82014-06-19 17:42:57 -040022#include <linux/atomic.h>
Shaohua Li902ec5b2017-09-14 14:02:06 -070023#include <linux/kthread.h>
Dennis Zhou5cdf2e32018-12-05 12:10:31 -050024#include <linux/fs.h>
Vivek Goyal31e4c282009-12-03 12:59:42 -050025
Tejun Heo24bdb8e2015-08-18 14:55:22 -070026/* percpu_counter batch for blkg_[rw]stats, per-cpu drift doesn't matter */
27#define BLKG_STAT_CPU_BATCH (INT_MAX / 2)
28
Vivek Goyal9355aed2010-10-01 21:16:41 +020029/* Max limits for throttle policy */
30#define THROTL_IOPS_MAX UINT_MAX
31
Tejun Heof48ec1d2012-04-13 13:11:25 -070032#ifdef CONFIG_BLK_CGROUP
33
Tejun Heoedcb0722012-04-01 14:38:42 -070034enum blkg_rwstat_type {
35 BLKG_RWSTAT_READ,
36 BLKG_RWSTAT_WRITE,
37 BLKG_RWSTAT_SYNC,
38 BLKG_RWSTAT_ASYNC,
Tejun Heo636620b2018-07-18 04:47:41 -070039 BLKG_RWSTAT_DISCARD,
Tejun Heoedcb0722012-04-01 14:38:42 -070040
41 BLKG_RWSTAT_NR,
42 BLKG_RWSTAT_TOTAL = BLKG_RWSTAT_NR,
Divyesh Shah303a3ac2010-04-01 15:01:24 -070043};
44
Tejun Heoa6371202012-04-19 16:29:24 -070045struct blkcg_gq;
46
Tejun Heo3c798392012-04-16 13:57:25 -070047struct blkcg {
Tejun Heo36558c82012-04-16 13:57:24 -070048 struct cgroup_subsys_state css;
49 spinlock_t lock;
Tejun Heoa6371202012-04-19 16:29:24 -070050
51 struct radix_tree_root blkg_tree;
Bart Van Assche55679c82016-09-23 09:07:56 -070052 struct blkcg_gq __rcu *blkg_hint;
Tejun Heo36558c82012-04-16 13:57:24 -070053 struct hlist_head blkg_list;
Tejun Heo9a9e8a22012-03-19 15:10:56 -070054
Tejun Heo81437642015-08-18 14:55:15 -070055 struct blkcg_policy_data *cpd[BLKCG_MAX_POLS];
Tejun Heo52ebea72015-05-22 17:13:37 -040056
Tejun Heo7876f932015-07-09 16:39:49 -040057 struct list_head all_blkcgs_node;
Tejun Heo52ebea72015-05-22 17:13:37 -040058#ifdef CONFIG_CGROUP_WRITEBACK
59 struct list_head cgwb_list;
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -040060 refcount_t cgwb_refcnt;
Tejun Heo52ebea72015-05-22 17:13:37 -040061#endif
Vivek Goyal31e4c282009-12-03 12:59:42 -050062};
63
Tejun Heoe6269c42015-08-18 14:55:21 -070064/*
65 * blkg_[rw]stat->aux_cnt is excluded for local stats but included for
Tejun Heo24bdb8e2015-08-18 14:55:22 -070066 * recursive. Used to carry stats of dead children, and, for blkg_rwstat,
67 * to carry result values from read and sum operations.
Tejun Heoe6269c42015-08-18 14:55:21 -070068 */
Tejun Heoedcb0722012-04-01 14:38:42 -070069struct blkg_stat {
Tejun Heo24bdb8e2015-08-18 14:55:22 -070070 struct percpu_counter cpu_cnt;
Tejun Heoe6269c42015-08-18 14:55:21 -070071 atomic64_t aux_cnt;
Tejun Heoedcb0722012-04-01 14:38:42 -070072};
73
74struct blkg_rwstat {
Tejun Heo24bdb8e2015-08-18 14:55:22 -070075 struct percpu_counter cpu_cnt[BLKG_RWSTAT_NR];
Tejun Heoe6269c42015-08-18 14:55:21 -070076 atomic64_t aux_cnt[BLKG_RWSTAT_NR];
Tejun Heoedcb0722012-04-01 14:38:42 -070077};
78
Tejun Heof95a04a2012-04-16 13:57:26 -070079/*
80 * A blkcg_gq (blkg) is association between a block cgroup (blkcg) and a
81 * request_queue (q). This is used by blkcg policies which need to track
82 * information per blkcg - q pair.
83 *
Tejun Heo001bea72015-08-18 14:55:11 -070084 * There can be multiple active blkcg policies and each blkg:policy pair is
85 * represented by a blkg_policy_data which is allocated and freed by each
86 * policy's pd_alloc/free_fn() methods. A policy can allocate private data
87 * area by allocating larger data structure which embeds blkg_policy_data
88 * at the beginning.
Tejun Heof95a04a2012-04-16 13:57:26 -070089 */
Tejun Heo03814112012-03-05 13:15:14 -080090struct blkg_policy_data {
Tejun Heob276a872013-01-09 08:05:12 -080091 /* the blkg and policy id this per-policy data belongs to */
Tejun Heo3c798392012-04-16 13:57:25 -070092 struct blkcg_gq *blkg;
Tejun Heob276a872013-01-09 08:05:12 -080093 int plid;
Tejun Heo03814112012-03-05 13:15:14 -080094};
95
Arianna Avanzinie48453c2015-06-05 23:38:42 +020096/*
Tejun Heoe4a9bde2015-08-18 14:55:16 -070097 * Policies that need to keep per-blkcg data which is independent from any
98 * request_queue associated to it should implement cpd_alloc/free_fn()
99 * methods. A policy can allocate private data area by allocating larger
100 * data structure which embeds blkcg_policy_data at the beginning.
101 * cpd_init() is invoked to let each policy handle per-blkcg data.
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200102 */
103struct blkcg_policy_data {
Tejun Heo81437642015-08-18 14:55:15 -0700104 /* the blkcg and policy id this per-policy data belongs to */
105 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200106 int plid;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200107};
108
Tejun Heo3c798392012-04-16 13:57:25 -0700109/* association between a blk cgroup and a request queue */
110struct blkcg_gq {
Tejun Heoc875f4d2012-03-05 13:15:22 -0800111 /* Pointer to the associated request_queue */
Tejun Heo36558c82012-04-16 13:57:24 -0700112 struct request_queue *q;
113 struct list_head q_node;
114 struct hlist_node blkcg_node;
Tejun Heo3c798392012-04-16 13:57:25 -0700115 struct blkcg *blkcg;
Tejun Heo3c547862013-01-09 08:05:10 -0800116
Tejun Heoce7acfe2015-05-22 17:13:38 -0400117 /*
118 * Each blkg gets congested separately and the congestion state is
119 * propagated to the matching bdi_writeback_congested.
120 */
121 struct bdi_writeback_congested *wb_congested;
122
Tejun Heo3c547862013-01-09 08:05:10 -0800123 /* all non-root blkcg_gq's are guaranteed to have access to parent */
124 struct blkcg_gq *parent;
125
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800126 /* reference count */
Dennis Zhoub5f29542018-11-01 17:24:10 -0400127 atomic_t refcnt;
Vivek Goyal22084192009-12-03 12:59:49 -0500128
Tejun Heof427d902013-01-09 08:05:12 -0800129 /* is this blkg online? protected by both blkcg and q locks */
130 bool online;
131
Tejun Heo77ea7332015-08-18 14:55:24 -0700132 struct blkg_rwstat stat_bytes;
133 struct blkg_rwstat stat_ios;
134
Tejun Heo36558c82012-04-16 13:57:24 -0700135 struct blkg_policy_data *pd[BLKCG_MAX_POLS];
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800136
Tejun Heo36558c82012-04-16 13:57:24 -0700137 struct rcu_head rcu_head;
Josef Bacikd09d8df2018-07-03 11:14:55 -0400138
139 atomic_t use_delay;
140 atomic64_t delay_nsec;
141 atomic64_t delay_start;
142 u64 last_delay;
143 int last_use;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500144};
145
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700146typedef struct blkcg_policy_data *(blkcg_pol_alloc_cpd_fn)(gfp_t gfp);
Tejun Heo81437642015-08-18 14:55:15 -0700147typedef void (blkcg_pol_init_cpd_fn)(struct blkcg_policy_data *cpd);
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700148typedef void (blkcg_pol_free_cpd_fn)(struct blkcg_policy_data *cpd);
Tejun Heo69d7fde2015-08-18 14:55:36 -0700149typedef void (blkcg_pol_bind_cpd_fn)(struct blkcg_policy_data *cpd);
Tejun Heo001bea72015-08-18 14:55:11 -0700150typedef struct blkg_policy_data *(blkcg_pol_alloc_pd_fn)(gfp_t gfp, int node);
Tejun Heoa9520cd2015-08-18 14:55:14 -0700151typedef void (blkcg_pol_init_pd_fn)(struct blkg_policy_data *pd);
152typedef void (blkcg_pol_online_pd_fn)(struct blkg_policy_data *pd);
153typedef void (blkcg_pol_offline_pd_fn)(struct blkg_policy_data *pd);
Tejun Heo001bea72015-08-18 14:55:11 -0700154typedef void (blkcg_pol_free_pd_fn)(struct blkg_policy_data *pd);
Tejun Heoa9520cd2015-08-18 14:55:14 -0700155typedef void (blkcg_pol_reset_pd_stats_fn)(struct blkg_policy_data *pd);
Josef Bacik903d23f2018-07-03 11:14:52 -0400156typedef size_t (blkcg_pol_stat_pd_fn)(struct blkg_policy_data *pd, char *buf,
157 size_t size);
Vivek Goyal3e252062009-12-04 10:36:42 -0500158
Tejun Heo3c798392012-04-16 13:57:25 -0700159struct blkcg_policy {
Tejun Heo36558c82012-04-16 13:57:24 -0700160 int plid;
Tejun Heo36558c82012-04-16 13:57:24 -0700161 /* cgroup files for the policy */
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700162 struct cftype *dfl_cftypes;
Tejun Heo880f50e2015-08-18 14:55:30 -0700163 struct cftype *legacy_cftypes;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700164
165 /* operations */
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700166 blkcg_pol_alloc_cpd_fn *cpd_alloc_fn;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200167 blkcg_pol_init_cpd_fn *cpd_init_fn;
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700168 blkcg_pol_free_cpd_fn *cpd_free_fn;
Tejun Heo69d7fde2015-08-18 14:55:36 -0700169 blkcg_pol_bind_cpd_fn *cpd_bind_fn;
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700170
Tejun Heo001bea72015-08-18 14:55:11 -0700171 blkcg_pol_alloc_pd_fn *pd_alloc_fn;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700172 blkcg_pol_init_pd_fn *pd_init_fn;
Tejun Heof427d902013-01-09 08:05:12 -0800173 blkcg_pol_online_pd_fn *pd_online_fn;
174 blkcg_pol_offline_pd_fn *pd_offline_fn;
Tejun Heo001bea72015-08-18 14:55:11 -0700175 blkcg_pol_free_pd_fn *pd_free_fn;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700176 blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn;
Josef Bacik903d23f2018-07-03 11:14:52 -0400177 blkcg_pol_stat_pd_fn *pd_stat_fn;
Vivek Goyal3e252062009-12-04 10:36:42 -0500178};
179
Tejun Heo3c798392012-04-16 13:57:25 -0700180extern struct blkcg blkcg_root;
Tejun Heo496d5e72015-05-22 17:13:21 -0400181extern struct cgroup_subsys_state * const blkcg_root_css;
Tejun Heo36558c82012-04-16 13:57:24 -0700182
Tejun Heo24f29042015-08-18 14:55:17 -0700183struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
184 struct request_queue *q, bool update_hint);
Dennis Zhoub9789622018-12-05 12:10:27 -0500185struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
186 struct request_queue *q);
Tejun Heo3c798392012-04-16 13:57:25 -0700187struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
188 struct request_queue *q);
Tejun Heo36558c82012-04-16 13:57:24 -0700189int blkcg_init_queue(struct request_queue *q);
190void blkcg_drain_queue(struct request_queue *q);
191void blkcg_exit_queue(struct request_queue *q);
Tejun Heo5efd6112012-03-05 13:15:12 -0800192
Vivek Goyal3e252062009-12-04 10:36:42 -0500193/* Blkio controller policy registration */
Jens Axboed5bf0292014-06-22 16:31:56 -0600194int blkcg_policy_register(struct blkcg_policy *pol);
Tejun Heo3c798392012-04-16 13:57:25 -0700195void blkcg_policy_unregister(struct blkcg_policy *pol);
Tejun Heo36558c82012-04-16 13:57:24 -0700196int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700197 const struct blkcg_policy *pol);
Tejun Heo36558c82012-04-16 13:57:24 -0700198void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700199 const struct blkcg_policy *pol);
Vivek Goyal3e252062009-12-04 10:36:42 -0500200
Tejun Heodd165eb2015-08-18 14:55:33 -0700201const char *blkg_dev_name(struct blkcg_gq *blkg);
Tejun Heo3c798392012-04-16 13:57:25 -0700202void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700203 u64 (*prfill)(struct seq_file *,
204 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700205 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700206 bool show_total);
Tejun Heof95a04a2012-04-16 13:57:26 -0700207u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v);
208u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700209 const struct blkg_rwstat *rwstat);
Tejun Heof95a04a2012-04-16 13:57:26 -0700210u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off);
211u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
212 int off);
Tejun Heo77ea7332015-08-18 14:55:24 -0700213int blkg_print_stat_bytes(struct seq_file *sf, void *v);
214int blkg_print_stat_ios(struct seq_file *sf, void *v);
215int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v);
216int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v);
Tejun Heo829fdb52012-04-01 14:38:43 -0700217
Tejun Heof12c74c2015-08-18 14:55:23 -0700218u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
219 struct blkcg_policy *pol, int off);
220struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
221 struct blkcg_policy *pol, int off);
Tejun Heo16b3de62013-01-09 08:05:12 -0800222
Tejun Heo829fdb52012-04-01 14:38:43 -0700223struct blkg_conf_ctx {
Tejun Heo36558c82012-04-16 13:57:24 -0700224 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700225 struct blkcg_gq *blkg;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700226 char *body;
Tejun Heo829fdb52012-04-01 14:38:43 -0700227};
228
Tejun Heo3c798392012-04-16 13:57:25 -0700229int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
Tejun Heo36aa9e52015-08-18 14:55:31 -0700230 char *input, struct blkg_conf_ctx *ctx);
Tejun Heo829fdb52012-04-01 14:38:43 -0700231void blkg_conf_finish(struct blkg_conf_ctx *ctx);
232
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500233/**
234 * blkcg_css - find the current css
235 *
236 * Find the css associated with either the kthread or the current task.
237 * This may return a dying css, so it is up to the caller to use tryget logic
238 * to confirm it is alive and well.
239 */
240static inline struct cgroup_subsys_state *blkcg_css(void)
241{
242 struct cgroup_subsys_state *css;
243
244 css = kthread_blkcg();
245 if (css)
246 return css;
247 return task_css(current, io_cgrp_id);
248}
249
250/**
251 * blkcg_get_css - find and get a reference to the css
252 *
253 * Find the css associated with either the kthread or the current task.
254 * This takes a reference on the blkcg which will need to be managed by the
255 * caller.
256 */
257static inline struct cgroup_subsys_state *blkcg_get_css(void)
258{
259 struct cgroup_subsys_state *css;
260
261 rcu_read_lock();
262
263 css = kthread_blkcg();
264 if (css) {
265 css_get(css);
266 } else {
267 /*
268 * This is a bit complicated. It is possible task_css() is
269 * seeing an old css pointer here. This is caused by the
270 * current thread migrating away from this cgroup and this
271 * cgroup dying. css_tryget() will fail when trying to take a
272 * ref on a cgroup that's ref count has hit 0.
273 *
274 * Therefore, if it does fail, this means current must have
275 * been swapped away already and this is waiting for it to
276 * propagate on the polling cpu. Hence the use of cpu_relax().
277 */
278 while (true) {
279 css = task_css(current, io_cgrp_id);
280 if (likely(css_tryget(css)))
281 break;
282 cpu_relax();
283 }
284 }
285
286 rcu_read_unlock();
287
288 return css;
289}
Dennis Zhou (Facebook)27e6fa92018-09-11 14:41:26 -0400290
Tejun Heoa7c6d552013-08-08 20:11:23 -0400291static inline struct blkcg *css_to_blkcg(struct cgroup_subsys_state *css)
292{
293 return css ? container_of(css, struct blkcg, css) : NULL;
294}
295
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500296/**
297 * __bio_blkcg - internal, inconsistent version to get blkcg
298 *
299 * DO NOT USE.
300 * This function is inconsistent and consequently is dangerous to use. The
301 * first part of the function returns a blkcg where a reference is owned by the
302 * bio. This means it does not need to be rcu protected as it cannot go away
303 * with the bio owning a reference to it. However, the latter potentially gets
304 * it from task_css(). This can race against task migration and the cgroup
305 * dying. It is also semantically different as it must be called rcu protected
306 * and is susceptible to failure when trying to get a reference to it.
307 * Therefore, it is not ok to assume that *_get() will always succeed on the
308 * blkcg returned here.
309 */
310static inline struct blkcg *__bio_blkcg(struct bio *bio)
Dennis Zhou (Facebook)27e6fa92018-09-11 14:41:26 -0400311{
Dennis Zhoub5f29542018-11-01 17:24:10 -0400312 if (bio && bio->bi_css)
313 return css_to_blkcg(bio->bi_css);
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500314 return css_to_blkcg(blkcg_css());
315}
316
317/**
318 * bio_blkcg - grab the blkcg associated with a bio
319 * @bio: target bio
320 *
321 * This returns the blkcg associated with a bio, %NULL if not associated.
322 * Callers are expected to either handle %NULL or know association has been
323 * done prior to calling this.
324 */
325static inline struct blkcg *bio_blkcg(struct bio *bio)
326{
327 if (bio && bio->bi_css)
328 return css_to_blkcg(bio->bi_css);
329 return NULL;
Tejun Heofd383c22015-05-22 17:13:23 -0400330}
331
Josef Bacikd09d8df2018-07-03 11:14:55 -0400332static inline bool blk_cgroup_congested(void)
333{
334 struct cgroup_subsys_state *css;
335 bool ret = false;
336
337 rcu_read_lock();
338 css = kthread_blkcg();
339 if (!css)
340 css = task_css(current, io_cgrp_id);
341 while (css) {
342 if (atomic_read(&css->cgroup->congestion_count)) {
343 ret = true;
344 break;
345 }
346 css = css->parent;
347 }
348 rcu_read_unlock();
349 return ret;
350}
351
Tejun Heo03814112012-03-05 13:15:14 -0800352/**
Josef Bacikc7c98fd2018-07-03 11:14:51 -0400353 * bio_issue_as_root_blkg - see if this bio needs to be issued as root blkg
354 * @return: true if this bio needs to be submitted with the root blkg context.
355 *
356 * In order to avoid priority inversions we sometimes need to issue a bio as if
357 * it were attached to the root blkg, and then backcharge to the actual owning
358 * blkg. The idea is we do bio_blkcg() to look up the actual context for the
359 * bio and attach the appropriate blkg to the bio. Then we call this helper and
360 * if it is true run with the root blkg for that queue and then do any
361 * backcharging to the originating cgroup once the io is complete.
362 */
363static inline bool bio_issue_as_root_blkg(struct bio *bio)
364{
Josef Bacik0d1e0c72018-07-03 11:14:53 -0400365 return (bio->bi_opf & (REQ_META | REQ_SWAP)) != 0;
Josef Bacikc7c98fd2018-07-03 11:14:51 -0400366}
367
368/**
Tejun Heo3c547862013-01-09 08:05:10 -0800369 * blkcg_parent - get the parent of a blkcg
370 * @blkcg: blkcg of interest
371 *
372 * Return the parent blkcg of @blkcg. Can be called anytime.
373 */
374static inline struct blkcg *blkcg_parent(struct blkcg *blkcg)
375{
Tejun Heo5c9d5352014-05-16 13:22:48 -0400376 return css_to_blkcg(blkcg->css.parent);
Tejun Heo3c547862013-01-09 08:05:10 -0800377}
378
379/**
Tejun Heo24f29042015-08-18 14:55:17 -0700380 * __blkg_lookup - internal version of blkg_lookup()
381 * @blkcg: blkcg of interest
382 * @q: request_queue of interest
383 * @update_hint: whether to update lookup hint with the result or not
384 *
385 * This is internal version and shouldn't be used by policy
386 * implementations. Looks up blkgs for the @blkcg - @q pair regardless of
387 * @q's bypass state. If @update_hint is %true, the caller should be
388 * holding @q->queue_lock and lookup hint is updated on success.
389 */
390static inline struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
391 struct request_queue *q,
392 bool update_hint)
393{
394 struct blkcg_gq *blkg;
395
Tejun Heo85b6bc92015-08-18 14:55:18 -0700396 if (blkcg == &blkcg_root)
397 return q->root_blkg;
398
Tejun Heo24f29042015-08-18 14:55:17 -0700399 blkg = rcu_dereference(blkcg->blkg_hint);
400 if (blkg && blkg->q == q)
401 return blkg;
402
403 return blkg_lookup_slowpath(blkcg, q, update_hint);
404}
405
406/**
407 * blkg_lookup - lookup blkg for the specified blkcg - q pair
408 * @blkcg: blkcg of interest
409 * @q: request_queue of interest
410 *
411 * Lookup blkg for the @blkcg - @q pair. This function should be called
Christoph Hellwig8f4236d2018-11-14 17:02:04 +0100412 * under RCU read loc.
Tejun Heo24f29042015-08-18 14:55:17 -0700413 */
414static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg,
415 struct request_queue *q)
416{
417 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo24f29042015-08-18 14:55:17 -0700418 return __blkg_lookup(blkcg, q, false);
419}
420
421/**
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700422 * blk_queue_root_blkg - return blkg for the (blkcg_root, @q) pair
Bart Van Assche6bad9b22018-08-09 07:53:36 -0700423 * @q: request_queue of interest
424 *
425 * Lookup blkg for @q at the root level. See also blkg_lookup().
426 */
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700427static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q)
Bart Van Assche6bad9b22018-08-09 07:53:36 -0700428{
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700429 return q->root_blkg;
Bart Van Assche6bad9b22018-08-09 07:53:36 -0700430}
431
432/**
Tejun Heo03814112012-03-05 13:15:14 -0800433 * blkg_to_pdata - get policy private data
434 * @blkg: blkg of interest
435 * @pol: policy of interest
436 *
437 * Return pointer to private data associated with the @blkg-@pol pair.
438 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700439static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg,
440 struct blkcg_policy *pol)
Tejun Heo03814112012-03-05 13:15:14 -0800441{
Tejun Heof95a04a2012-04-16 13:57:26 -0700442 return blkg ? blkg->pd[pol->plid] : NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800443}
444
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200445static inline struct blkcg_policy_data *blkcg_to_cpd(struct blkcg *blkcg,
446 struct blkcg_policy *pol)
447{
Tejun Heo81437642015-08-18 14:55:15 -0700448 return blkcg ? blkcg->cpd[pol->plid] : NULL;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200449}
450
Tejun Heo03814112012-03-05 13:15:14 -0800451/**
452 * pdata_to_blkg - get blkg associated with policy private data
Tejun Heof95a04a2012-04-16 13:57:26 -0700453 * @pd: policy private data of interest
Tejun Heo03814112012-03-05 13:15:14 -0800454 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700455 * @pd is policy private data. Determine the blkg it's associated with.
Tejun Heo03814112012-03-05 13:15:14 -0800456 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700457static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd)
Tejun Heo03814112012-03-05 13:15:14 -0800458{
Tejun Heof95a04a2012-04-16 13:57:26 -0700459 return pd ? pd->blkg : NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800460}
461
Tejun Heo81437642015-08-18 14:55:15 -0700462static inline struct blkcg *cpd_to_blkcg(struct blkcg_policy_data *cpd)
463{
464 return cpd ? cpd->blkcg : NULL;
465}
466
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -0400467extern void blkcg_destroy_blkgs(struct blkcg *blkcg);
468
469#ifdef CONFIG_CGROUP_WRITEBACK
470
471/**
472 * blkcg_cgwb_get - get a reference for blkcg->cgwb_list
473 * @blkcg: blkcg of interest
474 *
475 * This is used to track the number of active wb's related to a blkcg.
476 */
477static inline void blkcg_cgwb_get(struct blkcg *blkcg)
478{
479 refcount_inc(&blkcg->cgwb_refcnt);
480}
481
482/**
483 * blkcg_cgwb_put - put a reference for @blkcg->cgwb_list
484 * @blkcg: blkcg of interest
485 *
486 * This is used to track the number of active wb's related to a blkcg.
487 * When this count goes to zero, all active wb has finished so the
488 * blkcg can continue destruction by calling blkcg_destroy_blkgs().
489 * This work may occur in cgwb_release_workfn() on the cgwb_release
490 * workqueue.
491 */
492static inline void blkcg_cgwb_put(struct blkcg *blkcg)
493{
494 if (refcount_dec_and_test(&blkcg->cgwb_refcnt))
495 blkcg_destroy_blkgs(blkcg);
496}
497
498#else
499
500static inline void blkcg_cgwb_get(struct blkcg *blkcg) { }
501
502static inline void blkcg_cgwb_put(struct blkcg *blkcg)
503{
504 /* wb isn't being accounted, so trigger destruction right away */
505 blkcg_destroy_blkgs(blkcg);
506}
507
508#endif
509
Tejun Heo54e7ed12012-04-16 13:57:23 -0700510/**
511 * blkg_path - format cgroup path of blkg
512 * @blkg: blkg of interest
513 * @buf: target buffer
514 * @buflen: target buffer length
515 *
516 * Format the path of the cgroup of @blkg into @buf.
517 */
Tejun Heo3c798392012-04-16 13:57:25 -0700518static inline int blkg_path(struct blkcg_gq *blkg, char *buf, int buflen)
Vivek Goyalafc24d42010-04-26 19:27:56 +0200519{
Tejun Heo4c737b42016-08-10 11:23:44 -0400520 return cgroup_path(blkg->blkcg->css.cgroup, buf, buflen);
Vivek Goyalafc24d42010-04-26 19:27:56 +0200521}
522
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800523/**
524 * blkg_get - get a blkg reference
525 * @blkg: blkg to get
526 *
Tejun Heoa5049a82014-06-19 17:42:57 -0400527 * The caller should be holding an existing reference.
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800528 */
Tejun Heo3c798392012-04-16 13:57:25 -0700529static inline void blkg_get(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800530{
Dennis Zhoub5f29542018-11-01 17:24:10 -0400531 WARN_ON_ONCE(atomic_read(&blkg->refcnt) <= 0);
532 atomic_inc(&blkg->refcnt);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800533}
534
Josef Bacikd09d8df2018-07-03 11:14:55 -0400535/**
Dennis Zhoub5f29542018-11-01 17:24:10 -0400536 * blkg_try_get - try and get a blkg reference
Josef Bacikd09d8df2018-07-03 11:14:55 -0400537 * @blkg: blkg to get
538 *
539 * This is for use when doing an RCU lookup of the blkg. We may be in the midst
540 * of freeing this blkg, so we can only use it if the refcnt is not zero.
541 */
Dennis Zhoub5f29542018-11-01 17:24:10 -0400542static inline struct blkcg_gq *blkg_try_get(struct blkcg_gq *blkg)
Josef Bacikd09d8df2018-07-03 11:14:55 -0400543{
Dennis Zhoub5f29542018-11-01 17:24:10 -0400544 if (atomic_inc_not_zero(&blkg->refcnt))
545 return blkg;
546 return NULL;
Josef Bacikd09d8df2018-07-03 11:14:55 -0400547}
548
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500549/**
550 * blkg_try_get_closest - try and get a blkg ref on the closet blkg
551 * @blkg: blkg to get
552 *
553 * This walks up the blkg tree to find the closest non-dying blkg and returns
554 * the blkg that it did association with as it may not be the passed in blkg.
555 */
556static inline struct blkcg_gq *blkg_try_get_closest(struct blkcg_gq *blkg)
557{
558 while (!atomic_inc_not_zero(&blkg->refcnt))
559 blkg = blkg->parent;
560
561 return blkg;
562}
Dennis Zhou (Facebook)07b05bc2018-09-11 14:41:28 -0400563
Dennis Zhoub5f29542018-11-01 17:24:10 -0400564void __blkg_release_rcu(struct rcu_head *rcu);
Josef Bacikd09d8df2018-07-03 11:14:55 -0400565
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800566/**
567 * blkg_put - put a blkg reference
568 * @blkg: blkg to put
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800569 */
Tejun Heo3c798392012-04-16 13:57:25 -0700570static inline void blkg_put(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800571{
Dennis Zhoub5f29542018-11-01 17:24:10 -0400572 WARN_ON_ONCE(atomic_read(&blkg->refcnt) <= 0);
573 if (atomic_dec_and_test(&blkg->refcnt))
574 call_rcu(&blkg->rcu_head, __blkg_release_rcu);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800575}
576
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700577/**
578 * blkg_for_each_descendant_pre - pre-order walk of a blkg's descendants
579 * @d_blkg: loop cursor pointing to the current descendant
Tejun Heo492eb212013-08-08 20:11:25 -0400580 * @pos_css: used for iteration
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700581 * @p_blkg: target blkg to walk descendants of
582 *
583 * Walk @c_blkg through the descendants of @p_blkg. Must be used with RCU
584 * read locked. If called under either blkcg or queue lock, the iteration
585 * is guaranteed to include all and only online blkgs. The caller may
Tejun Heo492eb212013-08-08 20:11:25 -0400586 * update @pos_css by calling css_rightmost_descendant() to skip subtree.
Tejun Heobd8815a2013-08-08 20:11:27 -0400587 * @p_blkg is included in the iteration and the first node to be visited.
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700588 */
Tejun Heo492eb212013-08-08 20:11:25 -0400589#define blkg_for_each_descendant_pre(d_blkg, pos_css, p_blkg) \
590 css_for_each_descendant_pre((pos_css), &(p_blkg)->blkcg->css) \
591 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css), \
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700592 (p_blkg)->q, false)))
593
Tejun Heoedcb0722012-04-01 14:38:42 -0700594/**
Tejun Heoaa539cb2013-05-14 13:52:31 -0700595 * blkg_for_each_descendant_post - post-order walk of a blkg's descendants
596 * @d_blkg: loop cursor pointing to the current descendant
Tejun Heo492eb212013-08-08 20:11:25 -0400597 * @pos_css: used for iteration
Tejun Heoaa539cb2013-05-14 13:52:31 -0700598 * @p_blkg: target blkg to walk descendants of
599 *
600 * Similar to blkg_for_each_descendant_pre() but performs post-order
Tejun Heobd8815a2013-08-08 20:11:27 -0400601 * traversal instead. Synchronization rules are the same. @p_blkg is
602 * included in the iteration and the last node to be visited.
Tejun Heoaa539cb2013-05-14 13:52:31 -0700603 */
Tejun Heo492eb212013-08-08 20:11:25 -0400604#define blkg_for_each_descendant_post(d_blkg, pos_css, p_blkg) \
605 css_for_each_descendant_post((pos_css), &(p_blkg)->blkcg->css) \
606 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css), \
Tejun Heoaa539cb2013-05-14 13:52:31 -0700607 (p_blkg)->q, false)))
608
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700609static inline int blkg_stat_init(struct blkg_stat *stat, gfp_t gfp)
Peter Zijlstra90d38392013-11-12 19:42:14 -0800610{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700611 int ret;
612
613 ret = percpu_counter_init(&stat->cpu_cnt, 0, gfp);
614 if (ret)
615 return ret;
616
Tejun Heoe6269c42015-08-18 14:55:21 -0700617 atomic64_set(&stat->aux_cnt, 0);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700618 return 0;
619}
620
621static inline void blkg_stat_exit(struct blkg_stat *stat)
622{
623 percpu_counter_destroy(&stat->cpu_cnt);
Peter Zijlstra90d38392013-11-12 19:42:14 -0800624}
625
Tejun Heoa0516612012-06-26 15:05:44 -0700626/**
Tejun Heoedcb0722012-04-01 14:38:42 -0700627 * blkg_stat_add - add a value to a blkg_stat
628 * @stat: target blkg_stat
629 * @val: value to add
630 *
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700631 * Add @val to @stat. The caller must ensure that IRQ on the same CPU
632 * don't re-enter this function for the same counter.
Tejun Heoedcb0722012-04-01 14:38:42 -0700633 */
634static inline void blkg_stat_add(struct blkg_stat *stat, uint64_t val)
635{
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300636 percpu_counter_add_batch(&stat->cpu_cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heoedcb0722012-04-01 14:38:42 -0700637}
638
639/**
640 * blkg_stat_read - read the current value of a blkg_stat
641 * @stat: blkg_stat to read
Tejun Heoedcb0722012-04-01 14:38:42 -0700642 */
643static inline uint64_t blkg_stat_read(struct blkg_stat *stat)
644{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700645 return percpu_counter_sum_positive(&stat->cpu_cnt);
Tejun Heoedcb0722012-04-01 14:38:42 -0700646}
647
648/**
649 * blkg_stat_reset - reset a blkg_stat
650 * @stat: blkg_stat to reset
651 */
652static inline void blkg_stat_reset(struct blkg_stat *stat)
653{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700654 percpu_counter_set(&stat->cpu_cnt, 0);
Tejun Heoe6269c42015-08-18 14:55:21 -0700655 atomic64_set(&stat->aux_cnt, 0);
Tejun Heoedcb0722012-04-01 14:38:42 -0700656}
657
658/**
Tejun Heoe6269c42015-08-18 14:55:21 -0700659 * blkg_stat_add_aux - add a blkg_stat into another's aux count
Tejun Heo16b3de62013-01-09 08:05:12 -0800660 * @to: the destination blkg_stat
661 * @from: the source
662 *
Tejun Heoe6269c42015-08-18 14:55:21 -0700663 * Add @from's count including the aux one to @to's aux count.
Tejun Heo16b3de62013-01-09 08:05:12 -0800664 */
Tejun Heoe6269c42015-08-18 14:55:21 -0700665static inline void blkg_stat_add_aux(struct blkg_stat *to,
666 struct blkg_stat *from)
Tejun Heo16b3de62013-01-09 08:05:12 -0800667{
Tejun Heoe6269c42015-08-18 14:55:21 -0700668 atomic64_add(blkg_stat_read(from) + atomic64_read(&from->aux_cnt),
669 &to->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800670}
671
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700672static inline int blkg_rwstat_init(struct blkg_rwstat *rwstat, gfp_t gfp)
673{
674 int i, ret;
675
676 for (i = 0; i < BLKG_RWSTAT_NR; i++) {
677 ret = percpu_counter_init(&rwstat->cpu_cnt[i], 0, gfp);
678 if (ret) {
679 while (--i >= 0)
680 percpu_counter_destroy(&rwstat->cpu_cnt[i]);
681 return ret;
682 }
683 atomic64_set(&rwstat->aux_cnt[i], 0);
684 }
685 return 0;
686}
687
688static inline void blkg_rwstat_exit(struct blkg_rwstat *rwstat)
Peter Zijlstra90d38392013-11-12 19:42:14 -0800689{
Tejun Heoe6269c42015-08-18 14:55:21 -0700690 int i;
691
Tejun Heoe6269c42015-08-18 14:55:21 -0700692 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700693 percpu_counter_destroy(&rwstat->cpu_cnt[i]);
Peter Zijlstra90d38392013-11-12 19:42:14 -0800694}
695
Tejun Heo16b3de62013-01-09 08:05:12 -0800696/**
Tejun Heoedcb0722012-04-01 14:38:42 -0700697 * blkg_rwstat_add - add a value to a blkg_rwstat
698 * @rwstat: target blkg_rwstat
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600699 * @op: REQ_OP and flags
Tejun Heoedcb0722012-04-01 14:38:42 -0700700 * @val: value to add
701 *
702 * Add @val to @rwstat. The counters are chosen according to @rw. The
703 * caller is responsible for synchronizing calls to this function.
704 */
705static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat,
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600706 unsigned int op, uint64_t val)
Tejun Heoedcb0722012-04-01 14:38:42 -0700707{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700708 struct percpu_counter *cnt;
Tejun Heoedcb0722012-04-01 14:38:42 -0700709
Tejun Heo636620b2018-07-18 04:47:41 -0700710 if (op_is_discard(op))
711 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_DISCARD];
712 else if (op_is_write(op))
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700713 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_WRITE];
Tejun Heoedcb0722012-04-01 14:38:42 -0700714 else
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700715 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_READ];
Tejun Heoedcb0722012-04-01 14:38:42 -0700716
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300717 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700718
Christoph Hellwigd71d9ae2016-11-01 07:40:03 -0600719 if (op_is_sync(op))
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700720 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_SYNC];
721 else
722 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_ASYNC];
723
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300724 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heoedcb0722012-04-01 14:38:42 -0700725}
726
727/**
728 * blkg_rwstat_read - read the current values of a blkg_rwstat
729 * @rwstat: blkg_rwstat to read
730 *
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700731 * Read the current snapshot of @rwstat and return it in the aux counts.
Tejun Heoedcb0722012-04-01 14:38:42 -0700732 */
Tejun Heoc94bed892012-04-16 13:57:22 -0700733static inline struct blkg_rwstat blkg_rwstat_read(struct blkg_rwstat *rwstat)
Tejun Heoedcb0722012-04-01 14:38:42 -0700734{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700735 struct blkg_rwstat result;
736 int i;
Tejun Heoedcb0722012-04-01 14:38:42 -0700737
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700738 for (i = 0; i < BLKG_RWSTAT_NR; i++)
739 atomic64_set(&result.aux_cnt[i],
740 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]));
741 return result;
Tejun Heoedcb0722012-04-01 14:38:42 -0700742}
743
744/**
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800745 * blkg_rwstat_total - read the total count of a blkg_rwstat
Tejun Heoedcb0722012-04-01 14:38:42 -0700746 * @rwstat: blkg_rwstat to read
747 *
748 * Return the total count of @rwstat regardless of the IO direction. This
749 * function can be called without synchronization and takes care of u64
750 * atomicity.
751 */
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800752static inline uint64_t blkg_rwstat_total(struct blkg_rwstat *rwstat)
Tejun Heoedcb0722012-04-01 14:38:42 -0700753{
754 struct blkg_rwstat tmp = blkg_rwstat_read(rwstat);
755
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700756 return atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_READ]) +
757 atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heoedcb0722012-04-01 14:38:42 -0700758}
759
760/**
761 * blkg_rwstat_reset - reset a blkg_rwstat
762 * @rwstat: blkg_rwstat to reset
763 */
764static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat)
765{
Tejun Heoe6269c42015-08-18 14:55:21 -0700766 int i;
767
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700768 for (i = 0; i < BLKG_RWSTAT_NR; i++) {
769 percpu_counter_set(&rwstat->cpu_cnt[i], 0);
Tejun Heoe6269c42015-08-18 14:55:21 -0700770 atomic64_set(&rwstat->aux_cnt[i], 0);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700771 }
Tejun Heoedcb0722012-04-01 14:38:42 -0700772}
773
Tejun Heo16b3de62013-01-09 08:05:12 -0800774/**
Tejun Heoe6269c42015-08-18 14:55:21 -0700775 * blkg_rwstat_add_aux - add a blkg_rwstat into another's aux count
Tejun Heo16b3de62013-01-09 08:05:12 -0800776 * @to: the destination blkg_rwstat
777 * @from: the source
778 *
Tejun Heoe6269c42015-08-18 14:55:21 -0700779 * Add @from's count including the aux one to @to's aux count.
Tejun Heo16b3de62013-01-09 08:05:12 -0800780 */
Tejun Heoe6269c42015-08-18 14:55:21 -0700781static inline void blkg_rwstat_add_aux(struct blkg_rwstat *to,
782 struct blkg_rwstat *from)
Tejun Heo16b3de62013-01-09 08:05:12 -0800783{
Arnd Bergmannddc21232018-01-16 16:01:36 +0100784 u64 sum[BLKG_RWSTAT_NR];
Tejun Heo16b3de62013-01-09 08:05:12 -0800785 int i;
786
Tejun Heo16b3de62013-01-09 08:05:12 -0800787 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Arnd Bergmannddc21232018-01-16 16:01:36 +0100788 sum[i] = percpu_counter_sum_positive(&from->cpu_cnt[i]);
789
790 for (i = 0; i < BLKG_RWSTAT_NR; i++)
791 atomic64_add(sum[i] + atomic64_read(&from->aux_cnt[i]),
Tejun Heoe6269c42015-08-18 14:55:21 -0700792 &to->aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800793}
794
Tejun Heoae118892015-08-18 14:55:20 -0700795#ifdef CONFIG_BLK_DEV_THROTTLING
796extern bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
797 struct bio *bio);
798#else
799static inline bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
800 struct bio *bio) { return false; }
801#endif
802
Dennis Zhoue439bed2018-12-05 12:10:32 -0500803
804static inline void blkcg_bio_issue_init(struct bio *bio)
805{
806 bio_issue_init(&bio->bi_issue, bio_sectors(bio));
807}
808
Tejun Heoae118892015-08-18 14:55:20 -0700809static inline bool blkcg_bio_issue_check(struct request_queue *q,
810 struct bio *bio)
811{
Tejun Heoae118892015-08-18 14:55:20 -0700812 struct blkcg_gq *blkg;
813 bool throtl = false;
814
Dennis Zhou5cdf2e32018-12-05 12:10:31 -0500815 if (!bio->bi_blkg) {
816 char b[BDEVNAME_SIZE];
Tejun Heoae118892015-08-18 14:55:20 -0700817
Dennis Zhou5cdf2e32018-12-05 12:10:31 -0500818 WARN_ONCE(1,
819 "no blkg associated for bio on block-device: %s\n",
820 bio_devname(bio, b));
821 bio_associate_blkg(bio);
822 }
823
824 blkg = bio->bi_blkg;
Tejun Heoae118892015-08-18 14:55:20 -0700825
826 throtl = blk_throtl_bio(q, blkg, bio);
827
Tejun Heo77ea7332015-08-18 14:55:24 -0700828 if (!throtl) {
Josef Bacikc454edc2018-07-30 10:10:01 -0400829 /*
830 * If the bio is flagged with BIO_QUEUE_ENTERED it means this
831 * is a split bio and we would have already accounted for the
832 * size of the bio.
833 */
834 if (!bio_flagged(bio, BIO_QUEUE_ENTERED))
835 blkg_rwstat_add(&blkg->stat_bytes, bio->bi_opf,
836 bio->bi_iter.bi_size);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600837 blkg_rwstat_add(&blkg->stat_ios, bio->bi_opf, 1);
Tejun Heo77ea7332015-08-18 14:55:24 -0700838 }
839
Dennis Zhoue439bed2018-12-05 12:10:32 -0500840 blkcg_bio_issue_init(bio);
841
Tejun Heoae118892015-08-18 14:55:20 -0700842 return !throtl;
843}
844
Josef Bacikd09d8df2018-07-03 11:14:55 -0400845static inline void blkcg_use_delay(struct blkcg_gq *blkg)
846{
847 if (atomic_add_return(1, &blkg->use_delay) == 1)
848 atomic_inc(&blkg->blkcg->css.cgroup->congestion_count);
849}
850
851static inline int blkcg_unuse_delay(struct blkcg_gq *blkg)
852{
853 int old = atomic_read(&blkg->use_delay);
854
855 if (old == 0)
856 return 0;
857
858 /*
859 * We do this song and dance because we can race with somebody else
860 * adding or removing delay. If we just did an atomic_dec we'd end up
861 * negative and we'd already be in trouble. We need to subtract 1 and
862 * then check to see if we were the last delay so we can drop the
863 * congestion count on the cgroup.
864 */
865 while (old) {
866 int cur = atomic_cmpxchg(&blkg->use_delay, old, old - 1);
867 if (cur == old)
868 break;
869 old = cur;
870 }
871
872 if (old == 0)
873 return 0;
874 if (old == 1)
875 atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
876 return 1;
877}
878
879static inline void blkcg_clear_delay(struct blkcg_gq *blkg)
880{
881 int old = atomic_read(&blkg->use_delay);
882 if (!old)
883 return;
884 /* We only want 1 person clearing the congestion count for this blkg. */
885 while (old) {
886 int cur = atomic_cmpxchg(&blkg->use_delay, old, 0);
887 if (cur == old) {
888 atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
889 break;
890 }
891 old = cur;
892 }
893}
894
895void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta);
896void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay);
897void blkcg_maybe_throttle_current(void);
Tejun Heo36558c82012-04-16 13:57:24 -0700898#else /* CONFIG_BLK_CGROUP */
899
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400900struct blkcg {
901};
Jens Axboe2f5ea472009-12-03 21:06:43 +0100902
Tejun Heof95a04a2012-04-16 13:57:26 -0700903struct blkg_policy_data {
904};
905
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200906struct blkcg_policy_data {
907};
908
Tejun Heo3c798392012-04-16 13:57:25 -0700909struct blkcg_gq {
Jens Axboe2f5ea472009-12-03 21:06:43 +0100910};
911
Tejun Heo3c798392012-04-16 13:57:25 -0700912struct blkcg_policy {
Vivek Goyal3e252062009-12-04 10:36:42 -0500913};
914
Tejun Heo496d5e72015-05-22 17:13:21 -0400915#define blkcg_root_css ((struct cgroup_subsys_state *)ERR_PTR(-EINVAL))
916
Josef Bacikd09d8df2018-07-03 11:14:55 -0400917static inline void blkcg_maybe_throttle_current(void) { }
918static inline bool blk_cgroup_congested(void) { return false; }
919
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400920#ifdef CONFIG_BLOCK
921
Josef Bacikd09d8df2018-07-03 11:14:55 -0400922static inline void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay) { }
923
Tejun Heo3c798392012-04-16 13:57:25 -0700924static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, void *key) { return NULL; }
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700925static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q)
926{ return NULL; }
Tejun Heo5efd6112012-03-05 13:15:12 -0800927static inline int blkcg_init_queue(struct request_queue *q) { return 0; }
928static inline void blkcg_drain_queue(struct request_queue *q) { }
929static inline void blkcg_exit_queue(struct request_queue *q) { }
Jens Axboed5bf0292014-06-22 16:31:56 -0600930static inline int blkcg_policy_register(struct blkcg_policy *pol) { return 0; }
Tejun Heo3c798392012-04-16 13:57:25 -0700931static inline void blkcg_policy_unregister(struct blkcg_policy *pol) { }
Tejun Heoa2b16932012-04-13 13:11:33 -0700932static inline int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700933 const struct blkcg_policy *pol) { return 0; }
Tejun Heoa2b16932012-04-13 13:11:33 -0700934static inline void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700935 const struct blkcg_policy *pol) { }
Vivek Goyal3e252062009-12-04 10:36:42 -0500936
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500937static inline struct blkcg *__bio_blkcg(struct bio *bio) { return NULL; }
Tejun Heob1208b52012-06-04 20:40:57 -0700938static inline struct blkcg *bio_blkcg(struct bio *bio) { return NULL; }
Tejun Heoa0516612012-06-26 15:05:44 -0700939
Tejun Heof95a04a2012-04-16 13:57:26 -0700940static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg,
941 struct blkcg_policy *pol) { return NULL; }
942static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd) { return NULL; }
Tejun Heo3c798392012-04-16 13:57:25 -0700943static inline char *blkg_path(struct blkcg_gq *blkg) { return NULL; }
944static inline void blkg_get(struct blkcg_gq *blkg) { }
945static inline void blkg_put(struct blkcg_gq *blkg) { }
Vivek Goyalafc24d42010-04-26 19:27:56 +0200946
Dennis Zhoue439bed2018-12-05 12:10:32 -0500947static inline void blkcg_bio_issue_init(struct bio *bio) { }
Tejun Heoae118892015-08-18 14:55:20 -0700948static inline bool blkcg_bio_issue_check(struct request_queue *q,
949 struct bio *bio) { return true; }
950
Tejun Heoa0516612012-06-26 15:05:44 -0700951#define blk_queue_for_each_rl(rl, q) \
952 for ((rl) = &(q)->root_rl; (rl); (rl) = NULL)
953
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400954#endif /* CONFIG_BLOCK */
Tejun Heo36558c82012-04-16 13:57:24 -0700955#endif /* CONFIG_BLK_CGROUP */
956#endif /* _BLK_CGROUP_H */