blob: 284819a4d12233b6ef471b71d87f6b35c76c2a09 [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
Tejun Heoa7c6d552013-08-08 20:11:23 -0400250static inline struct blkcg *css_to_blkcg(struct cgroup_subsys_state *css)
251{
252 return css ? container_of(css, struct blkcg, css) : NULL;
253}
254
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500255/**
256 * __bio_blkcg - internal, inconsistent version to get blkcg
257 *
258 * DO NOT USE.
259 * This function is inconsistent and consequently is dangerous to use. The
260 * first part of the function returns a blkcg where a reference is owned by the
261 * bio. This means it does not need to be rcu protected as it cannot go away
262 * with the bio owning a reference to it. However, the latter potentially gets
263 * it from task_css(). This can race against task migration and the cgroup
264 * dying. It is also semantically different as it must be called rcu protected
265 * and is susceptible to failure when trying to get a reference to it.
266 * Therefore, it is not ok to assume that *_get() will always succeed on the
267 * blkcg returned here.
268 */
269static inline struct blkcg *__bio_blkcg(struct bio *bio)
Dennis Zhou (Facebook)27e6fa92018-09-11 14:41:26 -0400270{
Dennis Zhoudb6638d2018-12-05 12:10:35 -0500271 if (bio && bio->bi_blkg)
272 return bio->bi_blkg->blkcg;
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500273 return css_to_blkcg(blkcg_css());
274}
275
276/**
277 * bio_blkcg - grab the blkcg associated with a bio
278 * @bio: target bio
279 *
280 * This returns the blkcg associated with a bio, %NULL if not associated.
281 * Callers are expected to either handle %NULL or know association has been
282 * done prior to calling this.
283 */
284static inline struct blkcg *bio_blkcg(struct bio *bio)
285{
Dennis Zhoudb6638d2018-12-05 12:10:35 -0500286 if (bio && bio->bi_blkg)
287 return bio->bi_blkg->blkcg;
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500288 return NULL;
Tejun Heofd383c22015-05-22 17:13:23 -0400289}
290
Josef Bacikd09d8df2018-07-03 11:14:55 -0400291static inline bool blk_cgroup_congested(void)
292{
293 struct cgroup_subsys_state *css;
294 bool ret = false;
295
296 rcu_read_lock();
297 css = kthread_blkcg();
298 if (!css)
299 css = task_css(current, io_cgrp_id);
300 while (css) {
301 if (atomic_read(&css->cgroup->congestion_count)) {
302 ret = true;
303 break;
304 }
305 css = css->parent;
306 }
307 rcu_read_unlock();
308 return ret;
309}
310
Tejun Heo03814112012-03-05 13:15:14 -0800311/**
Josef Bacikc7c98fd2018-07-03 11:14:51 -0400312 * bio_issue_as_root_blkg - see if this bio needs to be issued as root blkg
313 * @return: true if this bio needs to be submitted with the root blkg context.
314 *
315 * In order to avoid priority inversions we sometimes need to issue a bio as if
316 * it were attached to the root blkg, and then backcharge to the actual owning
317 * blkg. The idea is we do bio_blkcg() to look up the actual context for the
318 * bio and attach the appropriate blkg to the bio. Then we call this helper and
319 * if it is true run with the root blkg for that queue and then do any
320 * backcharging to the originating cgroup once the io is complete.
321 */
322static inline bool bio_issue_as_root_blkg(struct bio *bio)
323{
Josef Bacik0d1e0c72018-07-03 11:14:53 -0400324 return (bio->bi_opf & (REQ_META | REQ_SWAP)) != 0;
Josef Bacikc7c98fd2018-07-03 11:14:51 -0400325}
326
327/**
Tejun Heo3c547862013-01-09 08:05:10 -0800328 * blkcg_parent - get the parent of a blkcg
329 * @blkcg: blkcg of interest
330 *
331 * Return the parent blkcg of @blkcg. Can be called anytime.
332 */
333static inline struct blkcg *blkcg_parent(struct blkcg *blkcg)
334{
Tejun Heo5c9d5352014-05-16 13:22:48 -0400335 return css_to_blkcg(blkcg->css.parent);
Tejun Heo3c547862013-01-09 08:05:10 -0800336}
337
338/**
Tejun Heo24f29042015-08-18 14:55:17 -0700339 * __blkg_lookup - internal version of blkg_lookup()
340 * @blkcg: blkcg of interest
341 * @q: request_queue of interest
342 * @update_hint: whether to update lookup hint with the result or not
343 *
344 * This is internal version and shouldn't be used by policy
345 * implementations. Looks up blkgs for the @blkcg - @q pair regardless of
346 * @q's bypass state. If @update_hint is %true, the caller should be
347 * holding @q->queue_lock and lookup hint is updated on success.
348 */
349static inline struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
350 struct request_queue *q,
351 bool update_hint)
352{
353 struct blkcg_gq *blkg;
354
Tejun Heo85b6bc92015-08-18 14:55:18 -0700355 if (blkcg == &blkcg_root)
356 return q->root_blkg;
357
Tejun Heo24f29042015-08-18 14:55:17 -0700358 blkg = rcu_dereference(blkcg->blkg_hint);
359 if (blkg && blkg->q == q)
360 return blkg;
361
362 return blkg_lookup_slowpath(blkcg, q, update_hint);
363}
364
365/**
366 * blkg_lookup - lookup blkg for the specified blkcg - q pair
367 * @blkcg: blkcg of interest
368 * @q: request_queue of interest
369 *
370 * Lookup blkg for the @blkcg - @q pair. This function should be called
Christoph Hellwig8f4236d2018-11-14 17:02:04 +0100371 * under RCU read loc.
Tejun Heo24f29042015-08-18 14:55:17 -0700372 */
373static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg,
374 struct request_queue *q)
375{
376 WARN_ON_ONCE(!rcu_read_lock_held());
Tejun Heo24f29042015-08-18 14:55:17 -0700377 return __blkg_lookup(blkcg, q, false);
378}
379
380/**
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700381 * blk_queue_root_blkg - return blkg for the (blkcg_root, @q) pair
Bart Van Assche6bad9b22018-08-09 07:53:36 -0700382 * @q: request_queue of interest
383 *
384 * Lookup blkg for @q at the root level. See also blkg_lookup().
385 */
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700386static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q)
Bart Van Assche6bad9b22018-08-09 07:53:36 -0700387{
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700388 return q->root_blkg;
Bart Van Assche6bad9b22018-08-09 07:53:36 -0700389}
390
391/**
Tejun Heo03814112012-03-05 13:15:14 -0800392 * blkg_to_pdata - get policy private data
393 * @blkg: blkg of interest
394 * @pol: policy of interest
395 *
396 * Return pointer to private data associated with the @blkg-@pol pair.
397 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700398static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg,
399 struct blkcg_policy *pol)
Tejun Heo03814112012-03-05 13:15:14 -0800400{
Tejun Heof95a04a2012-04-16 13:57:26 -0700401 return blkg ? blkg->pd[pol->plid] : NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800402}
403
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200404static inline struct blkcg_policy_data *blkcg_to_cpd(struct blkcg *blkcg,
405 struct blkcg_policy *pol)
406{
Tejun Heo81437642015-08-18 14:55:15 -0700407 return blkcg ? blkcg->cpd[pol->plid] : NULL;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200408}
409
Tejun Heo03814112012-03-05 13:15:14 -0800410/**
411 * pdata_to_blkg - get blkg associated with policy private data
Tejun Heof95a04a2012-04-16 13:57:26 -0700412 * @pd: policy private data of interest
Tejun Heo03814112012-03-05 13:15:14 -0800413 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700414 * @pd is policy private data. Determine the blkg it's associated with.
Tejun Heo03814112012-03-05 13:15:14 -0800415 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700416static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd)
Tejun Heo03814112012-03-05 13:15:14 -0800417{
Tejun Heof95a04a2012-04-16 13:57:26 -0700418 return pd ? pd->blkg : NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800419}
420
Tejun Heo81437642015-08-18 14:55:15 -0700421static inline struct blkcg *cpd_to_blkcg(struct blkcg_policy_data *cpd)
422{
423 return cpd ? cpd->blkcg : NULL;
424}
425
Dennis Zhou (Facebook)59b57712018-08-31 16:22:43 -0400426extern void blkcg_destroy_blkgs(struct blkcg *blkcg);
427
428#ifdef CONFIG_CGROUP_WRITEBACK
429
430/**
431 * blkcg_cgwb_get - get a reference for blkcg->cgwb_list
432 * @blkcg: blkcg of interest
433 *
434 * This is used to track the number of active wb's related to a blkcg.
435 */
436static inline void blkcg_cgwb_get(struct blkcg *blkcg)
437{
438 refcount_inc(&blkcg->cgwb_refcnt);
439}
440
441/**
442 * blkcg_cgwb_put - put a reference for @blkcg->cgwb_list
443 * @blkcg: blkcg of interest
444 *
445 * This is used to track the number of active wb's related to a blkcg.
446 * When this count goes to zero, all active wb has finished so the
447 * blkcg can continue destruction by calling blkcg_destroy_blkgs().
448 * This work may occur in cgwb_release_workfn() on the cgwb_release
449 * workqueue.
450 */
451static inline void blkcg_cgwb_put(struct blkcg *blkcg)
452{
453 if (refcount_dec_and_test(&blkcg->cgwb_refcnt))
454 blkcg_destroy_blkgs(blkcg);
455}
456
457#else
458
459static inline void blkcg_cgwb_get(struct blkcg *blkcg) { }
460
461static inline void blkcg_cgwb_put(struct blkcg *blkcg)
462{
463 /* wb isn't being accounted, so trigger destruction right away */
464 blkcg_destroy_blkgs(blkcg);
465}
466
467#endif
468
Tejun Heo54e7ed12012-04-16 13:57:23 -0700469/**
470 * blkg_path - format cgroup path of blkg
471 * @blkg: blkg of interest
472 * @buf: target buffer
473 * @buflen: target buffer length
474 *
475 * Format the path of the cgroup of @blkg into @buf.
476 */
Tejun Heo3c798392012-04-16 13:57:25 -0700477static inline int blkg_path(struct blkcg_gq *blkg, char *buf, int buflen)
Vivek Goyalafc24d42010-04-26 19:27:56 +0200478{
Tejun Heo4c737b42016-08-10 11:23:44 -0400479 return cgroup_path(blkg->blkcg->css.cgroup, buf, buflen);
Vivek Goyalafc24d42010-04-26 19:27:56 +0200480}
481
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800482/**
483 * blkg_get - get a blkg reference
484 * @blkg: blkg to get
485 *
Tejun Heoa5049a82014-06-19 17:42:57 -0400486 * The caller should be holding an existing reference.
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800487 */
Tejun Heo3c798392012-04-16 13:57:25 -0700488static inline void blkg_get(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800489{
Dennis Zhoub5f29542018-11-01 17:24:10 -0400490 WARN_ON_ONCE(atomic_read(&blkg->refcnt) <= 0);
491 atomic_inc(&blkg->refcnt);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800492}
493
Josef Bacikd09d8df2018-07-03 11:14:55 -0400494/**
Dennis Zhoub5f29542018-11-01 17:24:10 -0400495 * blkg_try_get - try and get a blkg reference
Josef Bacikd09d8df2018-07-03 11:14:55 -0400496 * @blkg: blkg to get
497 *
498 * This is for use when doing an RCU lookup of the blkg. We may be in the midst
499 * of freeing this blkg, so we can only use it if the refcnt is not zero.
500 */
Dennis Zhoub5f29542018-11-01 17:24:10 -0400501static inline struct blkcg_gq *blkg_try_get(struct blkcg_gq *blkg)
Josef Bacikd09d8df2018-07-03 11:14:55 -0400502{
Dennis Zhoub5f29542018-11-01 17:24:10 -0400503 if (atomic_inc_not_zero(&blkg->refcnt))
504 return blkg;
505 return NULL;
Josef Bacikd09d8df2018-07-03 11:14:55 -0400506}
507
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500508/**
509 * blkg_try_get_closest - try and get a blkg ref on the closet blkg
510 * @blkg: blkg to get
511 *
512 * This walks up the blkg tree to find the closest non-dying blkg and returns
513 * the blkg that it did association with as it may not be the passed in blkg.
514 */
515static inline struct blkcg_gq *blkg_try_get_closest(struct blkcg_gq *blkg)
516{
517 while (!atomic_inc_not_zero(&blkg->refcnt))
518 blkg = blkg->parent;
519
520 return blkg;
521}
Dennis Zhou (Facebook)07b05bc2018-09-11 14:41:28 -0400522
Dennis Zhoub5f29542018-11-01 17:24:10 -0400523void __blkg_release_rcu(struct rcu_head *rcu);
Josef Bacikd09d8df2018-07-03 11:14:55 -0400524
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800525/**
526 * blkg_put - put a blkg reference
527 * @blkg: blkg to put
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800528 */
Tejun Heo3c798392012-04-16 13:57:25 -0700529static inline void blkg_put(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 if (atomic_dec_and_test(&blkg->refcnt))
533 call_rcu(&blkg->rcu_head, __blkg_release_rcu);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800534}
535
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700536/**
537 * blkg_for_each_descendant_pre - pre-order walk of a blkg's descendants
538 * @d_blkg: loop cursor pointing to the current descendant
Tejun Heo492eb212013-08-08 20:11:25 -0400539 * @pos_css: used for iteration
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700540 * @p_blkg: target blkg to walk descendants of
541 *
542 * Walk @c_blkg through the descendants of @p_blkg. Must be used with RCU
543 * read locked. If called under either blkcg or queue lock, the iteration
544 * is guaranteed to include all and only online blkgs. The caller may
Tejun Heo492eb212013-08-08 20:11:25 -0400545 * update @pos_css by calling css_rightmost_descendant() to skip subtree.
Tejun Heobd8815a2013-08-08 20:11:27 -0400546 * @p_blkg is included in the iteration and the first node to be visited.
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700547 */
Tejun Heo492eb212013-08-08 20:11:25 -0400548#define blkg_for_each_descendant_pre(d_blkg, pos_css, p_blkg) \
549 css_for_each_descendant_pre((pos_css), &(p_blkg)->blkcg->css) \
550 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css), \
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700551 (p_blkg)->q, false)))
552
Tejun Heoedcb0722012-04-01 14:38:42 -0700553/**
Tejun Heoaa539cb2013-05-14 13:52:31 -0700554 * blkg_for_each_descendant_post - post-order walk of a blkg's descendants
555 * @d_blkg: loop cursor pointing to the current descendant
Tejun Heo492eb212013-08-08 20:11:25 -0400556 * @pos_css: used for iteration
Tejun Heoaa539cb2013-05-14 13:52:31 -0700557 * @p_blkg: target blkg to walk descendants of
558 *
559 * Similar to blkg_for_each_descendant_pre() but performs post-order
Tejun Heobd8815a2013-08-08 20:11:27 -0400560 * traversal instead. Synchronization rules are the same. @p_blkg is
561 * included in the iteration and the last node to be visited.
Tejun Heoaa539cb2013-05-14 13:52:31 -0700562 */
Tejun Heo492eb212013-08-08 20:11:25 -0400563#define blkg_for_each_descendant_post(d_blkg, pos_css, p_blkg) \
564 css_for_each_descendant_post((pos_css), &(p_blkg)->blkcg->css) \
565 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css), \
Tejun Heoaa539cb2013-05-14 13:52:31 -0700566 (p_blkg)->q, false)))
567
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700568static inline int blkg_stat_init(struct blkg_stat *stat, gfp_t gfp)
Peter Zijlstra90d38392013-11-12 19:42:14 -0800569{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700570 int ret;
571
572 ret = percpu_counter_init(&stat->cpu_cnt, 0, gfp);
573 if (ret)
574 return ret;
575
Tejun Heoe6269c42015-08-18 14:55:21 -0700576 atomic64_set(&stat->aux_cnt, 0);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700577 return 0;
578}
579
580static inline void blkg_stat_exit(struct blkg_stat *stat)
581{
582 percpu_counter_destroy(&stat->cpu_cnt);
Peter Zijlstra90d38392013-11-12 19:42:14 -0800583}
584
Tejun Heoa0516612012-06-26 15:05:44 -0700585/**
Tejun Heoedcb0722012-04-01 14:38:42 -0700586 * blkg_stat_add - add a value to a blkg_stat
587 * @stat: target blkg_stat
588 * @val: value to add
589 *
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700590 * Add @val to @stat. The caller must ensure that IRQ on the same CPU
591 * don't re-enter this function for the same counter.
Tejun Heoedcb0722012-04-01 14:38:42 -0700592 */
593static inline void blkg_stat_add(struct blkg_stat *stat, uint64_t val)
594{
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300595 percpu_counter_add_batch(&stat->cpu_cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heoedcb0722012-04-01 14:38:42 -0700596}
597
598/**
599 * blkg_stat_read - read the current value of a blkg_stat
600 * @stat: blkg_stat to read
Tejun Heoedcb0722012-04-01 14:38:42 -0700601 */
602static inline uint64_t blkg_stat_read(struct blkg_stat *stat)
603{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700604 return percpu_counter_sum_positive(&stat->cpu_cnt);
Tejun Heoedcb0722012-04-01 14:38:42 -0700605}
606
607/**
608 * blkg_stat_reset - reset a blkg_stat
609 * @stat: blkg_stat to reset
610 */
611static inline void blkg_stat_reset(struct blkg_stat *stat)
612{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700613 percpu_counter_set(&stat->cpu_cnt, 0);
Tejun Heoe6269c42015-08-18 14:55:21 -0700614 atomic64_set(&stat->aux_cnt, 0);
Tejun Heoedcb0722012-04-01 14:38:42 -0700615}
616
617/**
Tejun Heoe6269c42015-08-18 14:55:21 -0700618 * blkg_stat_add_aux - add a blkg_stat into another's aux count
Tejun Heo16b3de62013-01-09 08:05:12 -0800619 * @to: the destination blkg_stat
620 * @from: the source
621 *
Tejun Heoe6269c42015-08-18 14:55:21 -0700622 * Add @from's count including the aux one to @to's aux count.
Tejun Heo16b3de62013-01-09 08:05:12 -0800623 */
Tejun Heoe6269c42015-08-18 14:55:21 -0700624static inline void blkg_stat_add_aux(struct blkg_stat *to,
625 struct blkg_stat *from)
Tejun Heo16b3de62013-01-09 08:05:12 -0800626{
Tejun Heoe6269c42015-08-18 14:55:21 -0700627 atomic64_add(blkg_stat_read(from) + atomic64_read(&from->aux_cnt),
628 &to->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800629}
630
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700631static inline int blkg_rwstat_init(struct blkg_rwstat *rwstat, gfp_t gfp)
632{
633 int i, ret;
634
635 for (i = 0; i < BLKG_RWSTAT_NR; i++) {
636 ret = percpu_counter_init(&rwstat->cpu_cnt[i], 0, gfp);
637 if (ret) {
638 while (--i >= 0)
639 percpu_counter_destroy(&rwstat->cpu_cnt[i]);
640 return ret;
641 }
642 atomic64_set(&rwstat->aux_cnt[i], 0);
643 }
644 return 0;
645}
646
647static inline void blkg_rwstat_exit(struct blkg_rwstat *rwstat)
Peter Zijlstra90d38392013-11-12 19:42:14 -0800648{
Tejun Heoe6269c42015-08-18 14:55:21 -0700649 int i;
650
Tejun Heoe6269c42015-08-18 14:55:21 -0700651 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700652 percpu_counter_destroy(&rwstat->cpu_cnt[i]);
Peter Zijlstra90d38392013-11-12 19:42:14 -0800653}
654
Tejun Heo16b3de62013-01-09 08:05:12 -0800655/**
Tejun Heoedcb0722012-04-01 14:38:42 -0700656 * blkg_rwstat_add - add a value to a blkg_rwstat
657 * @rwstat: target blkg_rwstat
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600658 * @op: REQ_OP and flags
Tejun Heoedcb0722012-04-01 14:38:42 -0700659 * @val: value to add
660 *
661 * Add @val to @rwstat. The counters are chosen according to @rw. The
662 * caller is responsible for synchronizing calls to this function.
663 */
664static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat,
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600665 unsigned int op, uint64_t val)
Tejun Heoedcb0722012-04-01 14:38:42 -0700666{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700667 struct percpu_counter *cnt;
Tejun Heoedcb0722012-04-01 14:38:42 -0700668
Tejun Heo636620b2018-07-18 04:47:41 -0700669 if (op_is_discard(op))
670 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_DISCARD];
671 else if (op_is_write(op))
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700672 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_WRITE];
Tejun Heoedcb0722012-04-01 14:38:42 -0700673 else
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700674 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_READ];
Tejun Heoedcb0722012-04-01 14:38:42 -0700675
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300676 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700677
Christoph Hellwigd71d9ae2016-11-01 07:40:03 -0600678 if (op_is_sync(op))
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700679 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_SYNC];
680 else
681 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_ASYNC];
682
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300683 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heoedcb0722012-04-01 14:38:42 -0700684}
685
686/**
687 * blkg_rwstat_read - read the current values of a blkg_rwstat
688 * @rwstat: blkg_rwstat to read
689 *
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700690 * Read the current snapshot of @rwstat and return it in the aux counts.
Tejun Heoedcb0722012-04-01 14:38:42 -0700691 */
Tejun Heoc94bed892012-04-16 13:57:22 -0700692static inline struct blkg_rwstat blkg_rwstat_read(struct blkg_rwstat *rwstat)
Tejun Heoedcb0722012-04-01 14:38:42 -0700693{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700694 struct blkg_rwstat result;
695 int i;
Tejun Heoedcb0722012-04-01 14:38:42 -0700696
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700697 for (i = 0; i < BLKG_RWSTAT_NR; i++)
698 atomic64_set(&result.aux_cnt[i],
699 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]));
700 return result;
Tejun Heoedcb0722012-04-01 14:38:42 -0700701}
702
703/**
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800704 * blkg_rwstat_total - read the total count of a blkg_rwstat
Tejun Heoedcb0722012-04-01 14:38:42 -0700705 * @rwstat: blkg_rwstat to read
706 *
707 * Return the total count of @rwstat regardless of the IO direction. This
708 * function can be called without synchronization and takes care of u64
709 * atomicity.
710 */
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800711static inline uint64_t blkg_rwstat_total(struct blkg_rwstat *rwstat)
Tejun Heoedcb0722012-04-01 14:38:42 -0700712{
713 struct blkg_rwstat tmp = blkg_rwstat_read(rwstat);
714
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700715 return atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_READ]) +
716 atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heoedcb0722012-04-01 14:38:42 -0700717}
718
719/**
720 * blkg_rwstat_reset - reset a blkg_rwstat
721 * @rwstat: blkg_rwstat to reset
722 */
723static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat)
724{
Tejun Heoe6269c42015-08-18 14:55:21 -0700725 int i;
726
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700727 for (i = 0; i < BLKG_RWSTAT_NR; i++) {
728 percpu_counter_set(&rwstat->cpu_cnt[i], 0);
Tejun Heoe6269c42015-08-18 14:55:21 -0700729 atomic64_set(&rwstat->aux_cnt[i], 0);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700730 }
Tejun Heoedcb0722012-04-01 14:38:42 -0700731}
732
Tejun Heo16b3de62013-01-09 08:05:12 -0800733/**
Tejun Heoe6269c42015-08-18 14:55:21 -0700734 * blkg_rwstat_add_aux - add a blkg_rwstat into another's aux count
Tejun Heo16b3de62013-01-09 08:05:12 -0800735 * @to: the destination blkg_rwstat
736 * @from: the source
737 *
Tejun Heoe6269c42015-08-18 14:55:21 -0700738 * Add @from's count including the aux one to @to's aux count.
Tejun Heo16b3de62013-01-09 08:05:12 -0800739 */
Tejun Heoe6269c42015-08-18 14:55:21 -0700740static inline void blkg_rwstat_add_aux(struct blkg_rwstat *to,
741 struct blkg_rwstat *from)
Tejun Heo16b3de62013-01-09 08:05:12 -0800742{
Arnd Bergmannddc21232018-01-16 16:01:36 +0100743 u64 sum[BLKG_RWSTAT_NR];
Tejun Heo16b3de62013-01-09 08:05:12 -0800744 int i;
745
Tejun Heo16b3de62013-01-09 08:05:12 -0800746 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Arnd Bergmannddc21232018-01-16 16:01:36 +0100747 sum[i] = percpu_counter_sum_positive(&from->cpu_cnt[i]);
748
749 for (i = 0; i < BLKG_RWSTAT_NR; i++)
750 atomic64_add(sum[i] + atomic64_read(&from->aux_cnt[i]),
Tejun Heoe6269c42015-08-18 14:55:21 -0700751 &to->aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800752}
753
Tejun Heoae118892015-08-18 14:55:20 -0700754#ifdef CONFIG_BLK_DEV_THROTTLING
755extern bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
756 struct bio *bio);
757#else
758static inline bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
759 struct bio *bio) { return false; }
760#endif
761
Dennis Zhoue439bed2018-12-05 12:10:32 -0500762
763static inline void blkcg_bio_issue_init(struct bio *bio)
764{
765 bio_issue_init(&bio->bi_issue, bio_sectors(bio));
766}
767
Tejun Heoae118892015-08-18 14:55:20 -0700768static inline bool blkcg_bio_issue_check(struct request_queue *q,
769 struct bio *bio)
770{
Tejun Heoae118892015-08-18 14:55:20 -0700771 struct blkcg_gq *blkg;
772 bool throtl = false;
773
Dennis Zhou5cdf2e32018-12-05 12:10:31 -0500774 if (!bio->bi_blkg) {
775 char b[BDEVNAME_SIZE];
Tejun Heoae118892015-08-18 14:55:20 -0700776
Dennis Zhou5cdf2e32018-12-05 12:10:31 -0500777 WARN_ONCE(1,
778 "no blkg associated for bio on block-device: %s\n",
779 bio_devname(bio, b));
780 bio_associate_blkg(bio);
781 }
782
783 blkg = bio->bi_blkg;
Tejun Heoae118892015-08-18 14:55:20 -0700784
785 throtl = blk_throtl_bio(q, blkg, bio);
786
Tejun Heo77ea7332015-08-18 14:55:24 -0700787 if (!throtl) {
Josef Bacikc454edc2018-07-30 10:10:01 -0400788 /*
789 * If the bio is flagged with BIO_QUEUE_ENTERED it means this
790 * is a split bio and we would have already accounted for the
791 * size of the bio.
792 */
793 if (!bio_flagged(bio, BIO_QUEUE_ENTERED))
794 blkg_rwstat_add(&blkg->stat_bytes, bio->bi_opf,
795 bio->bi_iter.bi_size);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600796 blkg_rwstat_add(&blkg->stat_ios, bio->bi_opf, 1);
Tejun Heo77ea7332015-08-18 14:55:24 -0700797 }
798
Dennis Zhoue439bed2018-12-05 12:10:32 -0500799 blkcg_bio_issue_init(bio);
800
Tejun Heoae118892015-08-18 14:55:20 -0700801 return !throtl;
802}
803
Josef Bacikd09d8df2018-07-03 11:14:55 -0400804static inline void blkcg_use_delay(struct blkcg_gq *blkg)
805{
806 if (atomic_add_return(1, &blkg->use_delay) == 1)
807 atomic_inc(&blkg->blkcg->css.cgroup->congestion_count);
808}
809
810static inline int blkcg_unuse_delay(struct blkcg_gq *blkg)
811{
812 int old = atomic_read(&blkg->use_delay);
813
814 if (old == 0)
815 return 0;
816
817 /*
818 * We do this song and dance because we can race with somebody else
819 * adding or removing delay. If we just did an atomic_dec we'd end up
820 * negative and we'd already be in trouble. We need to subtract 1 and
821 * then check to see if we were the last delay so we can drop the
822 * congestion count on the cgroup.
823 */
824 while (old) {
825 int cur = atomic_cmpxchg(&blkg->use_delay, old, old - 1);
826 if (cur == old)
827 break;
828 old = cur;
829 }
830
831 if (old == 0)
832 return 0;
833 if (old == 1)
834 atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
835 return 1;
836}
837
838static inline void blkcg_clear_delay(struct blkcg_gq *blkg)
839{
840 int old = atomic_read(&blkg->use_delay);
841 if (!old)
842 return;
843 /* We only want 1 person clearing the congestion count for this blkg. */
844 while (old) {
845 int cur = atomic_cmpxchg(&blkg->use_delay, old, 0);
846 if (cur == old) {
847 atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
848 break;
849 }
850 old = cur;
851 }
852}
853
854void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta);
855void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay);
856void blkcg_maybe_throttle_current(void);
Tejun Heo36558c82012-04-16 13:57:24 -0700857#else /* CONFIG_BLK_CGROUP */
858
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400859struct blkcg {
860};
Jens Axboe2f5ea472009-12-03 21:06:43 +0100861
Tejun Heof95a04a2012-04-16 13:57:26 -0700862struct blkg_policy_data {
863};
864
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200865struct blkcg_policy_data {
866};
867
Tejun Heo3c798392012-04-16 13:57:25 -0700868struct blkcg_gq {
Jens Axboe2f5ea472009-12-03 21:06:43 +0100869};
870
Tejun Heo3c798392012-04-16 13:57:25 -0700871struct blkcg_policy {
Vivek Goyal3e252062009-12-04 10:36:42 -0500872};
873
Tejun Heo496d5e72015-05-22 17:13:21 -0400874#define blkcg_root_css ((struct cgroup_subsys_state *)ERR_PTR(-EINVAL))
875
Josef Bacikd09d8df2018-07-03 11:14:55 -0400876static inline void blkcg_maybe_throttle_current(void) { }
877static inline bool blk_cgroup_congested(void) { return false; }
878
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400879#ifdef CONFIG_BLOCK
880
Josef Bacikd09d8df2018-07-03 11:14:55 -0400881static inline void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay) { }
882
Tejun Heo3c798392012-04-16 13:57:25 -0700883static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, void *key) { return NULL; }
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700884static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q)
885{ return NULL; }
Tejun Heo5efd6112012-03-05 13:15:12 -0800886static inline int blkcg_init_queue(struct request_queue *q) { return 0; }
887static inline void blkcg_drain_queue(struct request_queue *q) { }
888static inline void blkcg_exit_queue(struct request_queue *q) { }
Jens Axboed5bf0292014-06-22 16:31:56 -0600889static inline int blkcg_policy_register(struct blkcg_policy *pol) { return 0; }
Tejun Heo3c798392012-04-16 13:57:25 -0700890static inline void blkcg_policy_unregister(struct blkcg_policy *pol) { }
Tejun Heoa2b16932012-04-13 13:11:33 -0700891static inline int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700892 const struct blkcg_policy *pol) { return 0; }
Tejun Heoa2b16932012-04-13 13:11:33 -0700893static inline void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700894 const struct blkcg_policy *pol) { }
Vivek Goyal3e252062009-12-04 10:36:42 -0500895
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500896static inline struct blkcg *__bio_blkcg(struct bio *bio) { return NULL; }
Tejun Heob1208b52012-06-04 20:40:57 -0700897static inline struct blkcg *bio_blkcg(struct bio *bio) { return NULL; }
Tejun Heoa0516612012-06-26 15:05:44 -0700898
Tejun Heof95a04a2012-04-16 13:57:26 -0700899static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg,
900 struct blkcg_policy *pol) { return NULL; }
901static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd) { return NULL; }
Tejun Heo3c798392012-04-16 13:57:25 -0700902static inline char *blkg_path(struct blkcg_gq *blkg) { return NULL; }
903static inline void blkg_get(struct blkcg_gq *blkg) { }
904static inline void blkg_put(struct blkcg_gq *blkg) { }
Vivek Goyalafc24d42010-04-26 19:27:56 +0200905
Dennis Zhoue439bed2018-12-05 12:10:32 -0500906static inline void blkcg_bio_issue_init(struct bio *bio) { }
Tejun Heoae118892015-08-18 14:55:20 -0700907static inline bool blkcg_bio_issue_check(struct request_queue *q,
908 struct bio *bio) { return true; }
909
Tejun Heoa0516612012-06-26 15:05:44 -0700910#define blk_queue_for_each_rl(rl, q) \
911 for ((rl) = &(q)->root_rl; (rl); (rl) = NULL)
912
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400913#endif /* CONFIG_BLOCK */
Tejun Heo36558c82012-04-16 13:57:24 -0700914#endif /* CONFIG_BLK_CGROUP */
915#endif /* _BLK_CGROUP_H */