blob: 76c61318fda5b5c714cb8f2926b79c439fcb45f8 [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 Zhou7fcf2b02018-12-05 12:10:38 -0500127 struct percpu_ref 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 Zhou7fcf2b02018-12-05 12:10:38 -0500490 percpu_ref_get(&blkg->refcnt);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800491}
492
Josef Bacikd09d8df2018-07-03 11:14:55 -0400493/**
Dennis Zhou7754f662018-12-05 12:10:39 -0500494 * blkg_tryget - try and get a blkg reference
Josef Bacikd09d8df2018-07-03 11:14:55 -0400495 * @blkg: blkg to get
496 *
497 * This is for use when doing an RCU lookup of the blkg. We may be in the midst
498 * of freeing this blkg, so we can only use it if the refcnt is not zero.
499 */
Dennis Zhou7754f662018-12-05 12:10:39 -0500500static inline bool blkg_tryget(struct blkcg_gq *blkg)
Josef Bacikd09d8df2018-07-03 11:14:55 -0400501{
Dennis Zhou6ab21872018-12-19 16:43:21 -0600502 return blkg && percpu_ref_tryget(&blkg->refcnt);
Josef Bacikd09d8df2018-07-03 11:14:55 -0400503}
504
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500505/**
Dennis Zhou7754f662018-12-05 12:10:39 -0500506 * blkg_tryget_closest - try and get a blkg ref on the closet blkg
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500507 * @blkg: blkg to get
508 *
Dennis Zhou6ab21872018-12-19 16:43:21 -0600509 * This needs to be called rcu protected. As the failure mode here is to walk
510 * up the blkg tree, this ensure that the blkg->parent pointers are always
511 * valid. This returns the blkg that it ended up taking a reference on or %NULL
512 * if no reference was taken.
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500513 */
Dennis Zhou7754f662018-12-05 12:10:39 -0500514static inline struct blkcg_gq *blkg_tryget_closest(struct blkcg_gq *blkg)
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500515{
Dennis Zhou6ab21872018-12-19 16:43:21 -0600516 struct blkcg_gq *ret_blkg = NULL;
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500517
Dennis Zhou6ab21872018-12-19 16:43:21 -0600518 WARN_ON_ONCE(!rcu_read_lock_held());
519
520 while (blkg) {
521 if (blkg_tryget(blkg)) {
522 ret_blkg = blkg;
523 break;
524 }
525 blkg = blkg->parent;
526 }
527
528 return ret_blkg;
Dennis Zhoubeea9da2018-12-05 12:10:28 -0500529}
Dennis Zhou (Facebook)07b05bc2018-09-11 14:41:28 -0400530
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800531/**
532 * blkg_put - put a blkg reference
533 * @blkg: blkg to put
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800534 */
Tejun Heo3c798392012-04-16 13:57:25 -0700535static inline void blkg_put(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800536{
Dennis Zhou7fcf2b02018-12-05 12:10:38 -0500537 percpu_ref_put(&blkg->refcnt);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800538}
539
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700540/**
541 * blkg_for_each_descendant_pre - pre-order walk of a blkg's descendants
542 * @d_blkg: loop cursor pointing to the current descendant
Tejun Heo492eb212013-08-08 20:11:25 -0400543 * @pos_css: used for iteration
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700544 * @p_blkg: target blkg to walk descendants of
545 *
546 * Walk @c_blkg through the descendants of @p_blkg. Must be used with RCU
547 * read locked. If called under either blkcg or queue lock, the iteration
548 * is guaranteed to include all and only online blkgs. The caller may
Tejun Heo492eb212013-08-08 20:11:25 -0400549 * update @pos_css by calling css_rightmost_descendant() to skip subtree.
Tejun Heobd8815a2013-08-08 20:11:27 -0400550 * @p_blkg is included in the iteration and the first node to be visited.
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700551 */
Tejun Heo492eb212013-08-08 20:11:25 -0400552#define blkg_for_each_descendant_pre(d_blkg, pos_css, p_blkg) \
553 css_for_each_descendant_pre((pos_css), &(p_blkg)->blkcg->css) \
554 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css), \
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700555 (p_blkg)->q, false)))
556
Tejun Heoedcb0722012-04-01 14:38:42 -0700557/**
Tejun Heoaa539cb2013-05-14 13:52:31 -0700558 * blkg_for_each_descendant_post - post-order walk of a blkg's descendants
559 * @d_blkg: loop cursor pointing to the current descendant
Tejun Heo492eb212013-08-08 20:11:25 -0400560 * @pos_css: used for iteration
Tejun Heoaa539cb2013-05-14 13:52:31 -0700561 * @p_blkg: target blkg to walk descendants of
562 *
563 * Similar to blkg_for_each_descendant_pre() but performs post-order
Tejun Heobd8815a2013-08-08 20:11:27 -0400564 * traversal instead. Synchronization rules are the same. @p_blkg is
565 * included in the iteration and the last node to be visited.
Tejun Heoaa539cb2013-05-14 13:52:31 -0700566 */
Tejun Heo492eb212013-08-08 20:11:25 -0400567#define blkg_for_each_descendant_post(d_blkg, pos_css, p_blkg) \
568 css_for_each_descendant_post((pos_css), &(p_blkg)->blkcg->css) \
569 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css), \
Tejun Heoaa539cb2013-05-14 13:52:31 -0700570 (p_blkg)->q, false)))
571
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700572static inline int blkg_stat_init(struct blkg_stat *stat, gfp_t gfp)
Peter Zijlstra90d38392013-11-12 19:42:14 -0800573{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700574 int ret;
575
576 ret = percpu_counter_init(&stat->cpu_cnt, 0, gfp);
577 if (ret)
578 return ret;
579
Tejun Heoe6269c42015-08-18 14:55:21 -0700580 atomic64_set(&stat->aux_cnt, 0);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700581 return 0;
582}
583
584static inline void blkg_stat_exit(struct blkg_stat *stat)
585{
586 percpu_counter_destroy(&stat->cpu_cnt);
Peter Zijlstra90d38392013-11-12 19:42:14 -0800587}
588
Tejun Heoa0516612012-06-26 15:05:44 -0700589/**
Tejun Heoedcb0722012-04-01 14:38:42 -0700590 * blkg_stat_add - add a value to a blkg_stat
591 * @stat: target blkg_stat
592 * @val: value to add
593 *
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700594 * Add @val to @stat. The caller must ensure that IRQ on the same CPU
595 * don't re-enter this function for the same counter.
Tejun Heoedcb0722012-04-01 14:38:42 -0700596 */
597static inline void blkg_stat_add(struct blkg_stat *stat, uint64_t val)
598{
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300599 percpu_counter_add_batch(&stat->cpu_cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heoedcb0722012-04-01 14:38:42 -0700600}
601
602/**
603 * blkg_stat_read - read the current value of a blkg_stat
604 * @stat: blkg_stat to read
Tejun Heoedcb0722012-04-01 14:38:42 -0700605 */
606static inline uint64_t blkg_stat_read(struct blkg_stat *stat)
607{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700608 return percpu_counter_sum_positive(&stat->cpu_cnt);
Tejun Heoedcb0722012-04-01 14:38:42 -0700609}
610
611/**
612 * blkg_stat_reset - reset a blkg_stat
613 * @stat: blkg_stat to reset
614 */
615static inline void blkg_stat_reset(struct blkg_stat *stat)
616{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700617 percpu_counter_set(&stat->cpu_cnt, 0);
Tejun Heoe6269c42015-08-18 14:55:21 -0700618 atomic64_set(&stat->aux_cnt, 0);
Tejun Heoedcb0722012-04-01 14:38:42 -0700619}
620
621/**
Tejun Heoe6269c42015-08-18 14:55:21 -0700622 * blkg_stat_add_aux - add a blkg_stat into another's aux count
Tejun Heo16b3de62013-01-09 08:05:12 -0800623 * @to: the destination blkg_stat
624 * @from: the source
625 *
Tejun Heoe6269c42015-08-18 14:55:21 -0700626 * Add @from's count including the aux one to @to's aux count.
Tejun Heo16b3de62013-01-09 08:05:12 -0800627 */
Tejun Heoe6269c42015-08-18 14:55:21 -0700628static inline void blkg_stat_add_aux(struct blkg_stat *to,
629 struct blkg_stat *from)
Tejun Heo16b3de62013-01-09 08:05:12 -0800630{
Tejun Heoe6269c42015-08-18 14:55:21 -0700631 atomic64_add(blkg_stat_read(from) + atomic64_read(&from->aux_cnt),
632 &to->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800633}
634
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700635static inline int blkg_rwstat_init(struct blkg_rwstat *rwstat, gfp_t gfp)
636{
637 int i, ret;
638
639 for (i = 0; i < BLKG_RWSTAT_NR; i++) {
640 ret = percpu_counter_init(&rwstat->cpu_cnt[i], 0, gfp);
641 if (ret) {
642 while (--i >= 0)
643 percpu_counter_destroy(&rwstat->cpu_cnt[i]);
644 return ret;
645 }
646 atomic64_set(&rwstat->aux_cnt[i], 0);
647 }
648 return 0;
649}
650
651static inline void blkg_rwstat_exit(struct blkg_rwstat *rwstat)
Peter Zijlstra90d38392013-11-12 19:42:14 -0800652{
Tejun Heoe6269c42015-08-18 14:55:21 -0700653 int i;
654
Tejun Heoe6269c42015-08-18 14:55:21 -0700655 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700656 percpu_counter_destroy(&rwstat->cpu_cnt[i]);
Peter Zijlstra90d38392013-11-12 19:42:14 -0800657}
658
Tejun Heo16b3de62013-01-09 08:05:12 -0800659/**
Tejun Heoedcb0722012-04-01 14:38:42 -0700660 * blkg_rwstat_add - add a value to a blkg_rwstat
661 * @rwstat: target blkg_rwstat
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600662 * @op: REQ_OP and flags
Tejun Heoedcb0722012-04-01 14:38:42 -0700663 * @val: value to add
664 *
665 * Add @val to @rwstat. The counters are chosen according to @rw. The
666 * caller is responsible for synchronizing calls to this function.
667 */
668static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat,
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600669 unsigned int op, uint64_t val)
Tejun Heoedcb0722012-04-01 14:38:42 -0700670{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700671 struct percpu_counter *cnt;
Tejun Heoedcb0722012-04-01 14:38:42 -0700672
Tejun Heo636620b2018-07-18 04:47:41 -0700673 if (op_is_discard(op))
674 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_DISCARD];
675 else if (op_is_write(op))
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700676 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_WRITE];
Tejun Heoedcb0722012-04-01 14:38:42 -0700677 else
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700678 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_READ];
Tejun Heoedcb0722012-04-01 14:38:42 -0700679
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300680 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700681
Christoph Hellwigd71d9ae2016-11-01 07:40:03 -0600682 if (op_is_sync(op))
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700683 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_SYNC];
684 else
685 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_ASYNC];
686
Nikolay Borisov104b4e52017-06-20 21:01:20 +0300687 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
Tejun Heoedcb0722012-04-01 14:38:42 -0700688}
689
690/**
691 * blkg_rwstat_read - read the current values of a blkg_rwstat
692 * @rwstat: blkg_rwstat to read
693 *
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700694 * Read the current snapshot of @rwstat and return it in the aux counts.
Tejun Heoedcb0722012-04-01 14:38:42 -0700695 */
Tejun Heoc94bed892012-04-16 13:57:22 -0700696static inline struct blkg_rwstat blkg_rwstat_read(struct blkg_rwstat *rwstat)
Tejun Heoedcb0722012-04-01 14:38:42 -0700697{
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700698 struct blkg_rwstat result;
699 int i;
Tejun Heoedcb0722012-04-01 14:38:42 -0700700
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700701 for (i = 0; i < BLKG_RWSTAT_NR; i++)
702 atomic64_set(&result.aux_cnt[i],
703 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]));
704 return result;
Tejun Heoedcb0722012-04-01 14:38:42 -0700705}
706
707/**
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800708 * blkg_rwstat_total - read the total count of a blkg_rwstat
Tejun Heoedcb0722012-04-01 14:38:42 -0700709 * @rwstat: blkg_rwstat to read
710 *
711 * Return the total count of @rwstat regardless of the IO direction. This
712 * function can be called without synchronization and takes care of u64
713 * atomicity.
714 */
Tejun Heo4d5e80a2013-01-09 08:05:12 -0800715static inline uint64_t blkg_rwstat_total(struct blkg_rwstat *rwstat)
Tejun Heoedcb0722012-04-01 14:38:42 -0700716{
717 struct blkg_rwstat tmp = blkg_rwstat_read(rwstat);
718
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700719 return atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_READ]) +
720 atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heoedcb0722012-04-01 14:38:42 -0700721}
722
723/**
724 * blkg_rwstat_reset - reset a blkg_rwstat
725 * @rwstat: blkg_rwstat to reset
726 */
727static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat)
728{
Tejun Heoe6269c42015-08-18 14:55:21 -0700729 int i;
730
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700731 for (i = 0; i < BLKG_RWSTAT_NR; i++) {
732 percpu_counter_set(&rwstat->cpu_cnt[i], 0);
Tejun Heoe6269c42015-08-18 14:55:21 -0700733 atomic64_set(&rwstat->aux_cnt[i], 0);
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700734 }
Tejun Heoedcb0722012-04-01 14:38:42 -0700735}
736
Tejun Heo16b3de62013-01-09 08:05:12 -0800737/**
Tejun Heoe6269c42015-08-18 14:55:21 -0700738 * blkg_rwstat_add_aux - add a blkg_rwstat into another's aux count
Tejun Heo16b3de62013-01-09 08:05:12 -0800739 * @to: the destination blkg_rwstat
740 * @from: the source
741 *
Tejun Heoe6269c42015-08-18 14:55:21 -0700742 * Add @from's count including the aux one to @to's aux count.
Tejun Heo16b3de62013-01-09 08:05:12 -0800743 */
Tejun Heoe6269c42015-08-18 14:55:21 -0700744static inline void blkg_rwstat_add_aux(struct blkg_rwstat *to,
745 struct blkg_rwstat *from)
Tejun Heo16b3de62013-01-09 08:05:12 -0800746{
Arnd Bergmannddc21232018-01-16 16:01:36 +0100747 u64 sum[BLKG_RWSTAT_NR];
Tejun Heo16b3de62013-01-09 08:05:12 -0800748 int i;
749
Tejun Heo16b3de62013-01-09 08:05:12 -0800750 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Arnd Bergmannddc21232018-01-16 16:01:36 +0100751 sum[i] = percpu_counter_sum_positive(&from->cpu_cnt[i]);
752
753 for (i = 0; i < BLKG_RWSTAT_NR; i++)
754 atomic64_add(sum[i] + atomic64_read(&from->aux_cnt[i]),
Tejun Heoe6269c42015-08-18 14:55:21 -0700755 &to->aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800756}
757
Tejun Heoae118892015-08-18 14:55:20 -0700758#ifdef CONFIG_BLK_DEV_THROTTLING
759extern bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
760 struct bio *bio);
761#else
762static inline bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
763 struct bio *bio) { return false; }
764#endif
765
Dennis Zhoue439bed2018-12-05 12:10:32 -0500766
767static inline void blkcg_bio_issue_init(struct bio *bio)
768{
769 bio_issue_init(&bio->bi_issue, bio_sectors(bio));
770}
771
Tejun Heoae118892015-08-18 14:55:20 -0700772static inline bool blkcg_bio_issue_check(struct request_queue *q,
773 struct bio *bio)
774{
Tejun Heoae118892015-08-18 14:55:20 -0700775 struct blkcg_gq *blkg;
776 bool throtl = false;
777
Dennis Zhou4705de72018-12-06 12:49:38 -0500778 rcu_read_lock();
779
Dennis Zhou5cdf2e32018-12-05 12:10:31 -0500780 if (!bio->bi_blkg) {
781 char b[BDEVNAME_SIZE];
Tejun Heoae118892015-08-18 14:55:20 -0700782
Dennis Zhou5cdf2e32018-12-05 12:10:31 -0500783 WARN_ONCE(1,
784 "no blkg associated for bio on block-device: %s\n",
785 bio_devname(bio, b));
786 bio_associate_blkg(bio);
787 }
788
789 blkg = bio->bi_blkg;
Tejun Heoae118892015-08-18 14:55:20 -0700790
791 throtl = blk_throtl_bio(q, blkg, bio);
792
Tejun Heo77ea7332015-08-18 14:55:24 -0700793 if (!throtl) {
Josef Bacikc454edc2018-07-30 10:10:01 -0400794 /*
795 * If the bio is flagged with BIO_QUEUE_ENTERED it means this
796 * is a split bio and we would have already accounted for the
797 * size of the bio.
798 */
799 if (!bio_flagged(bio, BIO_QUEUE_ENTERED))
800 blkg_rwstat_add(&blkg->stat_bytes, bio->bi_opf,
801 bio->bi_iter.bi_size);
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600802 blkg_rwstat_add(&blkg->stat_ios, bio->bi_opf, 1);
Tejun Heo77ea7332015-08-18 14:55:24 -0700803 }
804
Dennis Zhoue439bed2018-12-05 12:10:32 -0500805 blkcg_bio_issue_init(bio);
806
Dennis Zhou4705de72018-12-06 12:49:38 -0500807 rcu_read_unlock();
Tejun Heoae118892015-08-18 14:55:20 -0700808 return !throtl;
809}
810
Josef Bacikd09d8df2018-07-03 11:14:55 -0400811static inline void blkcg_use_delay(struct blkcg_gq *blkg)
812{
813 if (atomic_add_return(1, &blkg->use_delay) == 1)
814 atomic_inc(&blkg->blkcg->css.cgroup->congestion_count);
815}
816
817static inline int blkcg_unuse_delay(struct blkcg_gq *blkg)
818{
819 int old = atomic_read(&blkg->use_delay);
820
821 if (old == 0)
822 return 0;
823
824 /*
825 * We do this song and dance because we can race with somebody else
826 * adding or removing delay. If we just did an atomic_dec we'd end up
827 * negative and we'd already be in trouble. We need to subtract 1 and
828 * then check to see if we were the last delay so we can drop the
829 * congestion count on the cgroup.
830 */
831 while (old) {
832 int cur = atomic_cmpxchg(&blkg->use_delay, old, old - 1);
833 if (cur == old)
834 break;
835 old = cur;
836 }
837
838 if (old == 0)
839 return 0;
840 if (old == 1)
841 atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
842 return 1;
843}
844
845static inline void blkcg_clear_delay(struct blkcg_gq *blkg)
846{
847 int old = atomic_read(&blkg->use_delay);
848 if (!old)
849 return;
850 /* We only want 1 person clearing the congestion count for this blkg. */
851 while (old) {
852 int cur = atomic_cmpxchg(&blkg->use_delay, old, 0);
853 if (cur == old) {
854 atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
855 break;
856 }
857 old = cur;
858 }
859}
860
861void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta);
862void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay);
863void blkcg_maybe_throttle_current(void);
Tejun Heo36558c82012-04-16 13:57:24 -0700864#else /* CONFIG_BLK_CGROUP */
865
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400866struct blkcg {
867};
Jens Axboe2f5ea472009-12-03 21:06:43 +0100868
Tejun Heof95a04a2012-04-16 13:57:26 -0700869struct blkg_policy_data {
870};
871
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200872struct blkcg_policy_data {
873};
874
Tejun Heo3c798392012-04-16 13:57:25 -0700875struct blkcg_gq {
Jens Axboe2f5ea472009-12-03 21:06:43 +0100876};
877
Tejun Heo3c798392012-04-16 13:57:25 -0700878struct blkcg_policy {
Vivek Goyal3e252062009-12-04 10:36:42 -0500879};
880
Tejun Heo496d5e72015-05-22 17:13:21 -0400881#define blkcg_root_css ((struct cgroup_subsys_state *)ERR_PTR(-EINVAL))
882
Josef Bacikd09d8df2018-07-03 11:14:55 -0400883static inline void blkcg_maybe_throttle_current(void) { }
884static inline bool blk_cgroup_congested(void) { return false; }
885
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400886#ifdef CONFIG_BLOCK
887
Josef Bacikd09d8df2018-07-03 11:14:55 -0400888static inline void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay) { }
889
Tejun Heo3c798392012-04-16 13:57:25 -0700890static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, void *key) { return NULL; }
Bart Van Asscheb86d8652018-08-10 13:28:07 -0700891static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q)
892{ return NULL; }
Tejun Heo5efd6112012-03-05 13:15:12 -0800893static inline int blkcg_init_queue(struct request_queue *q) { return 0; }
894static inline void blkcg_drain_queue(struct request_queue *q) { }
895static inline void blkcg_exit_queue(struct request_queue *q) { }
Jens Axboed5bf0292014-06-22 16:31:56 -0600896static inline int blkcg_policy_register(struct blkcg_policy *pol) { return 0; }
Tejun Heo3c798392012-04-16 13:57:25 -0700897static inline void blkcg_policy_unregister(struct blkcg_policy *pol) { }
Tejun Heoa2b16932012-04-13 13:11:33 -0700898static inline int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700899 const struct blkcg_policy *pol) { return 0; }
Tejun Heoa2b16932012-04-13 13:11:33 -0700900static inline void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700901 const struct blkcg_policy *pol) { }
Vivek Goyal3e252062009-12-04 10:36:42 -0500902
Dennis Zhou0fe061b2018-12-05 12:10:26 -0500903static inline struct blkcg *__bio_blkcg(struct bio *bio) { return NULL; }
Tejun Heob1208b52012-06-04 20:40:57 -0700904static inline struct blkcg *bio_blkcg(struct bio *bio) { return NULL; }
Tejun Heoa0516612012-06-26 15:05:44 -0700905
Tejun Heof95a04a2012-04-16 13:57:26 -0700906static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg,
907 struct blkcg_policy *pol) { return NULL; }
908static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd) { return NULL; }
Tejun Heo3c798392012-04-16 13:57:25 -0700909static inline char *blkg_path(struct blkcg_gq *blkg) { return NULL; }
910static inline void blkg_get(struct blkcg_gq *blkg) { }
911static inline void blkg_put(struct blkcg_gq *blkg) { }
Vivek Goyalafc24d42010-04-26 19:27:56 +0200912
Dennis Zhoue439bed2018-12-05 12:10:32 -0500913static inline void blkcg_bio_issue_init(struct bio *bio) { }
Tejun Heoae118892015-08-18 14:55:20 -0700914static inline bool blkcg_bio_issue_check(struct request_queue *q,
915 struct bio *bio) { return true; }
916
Tejun Heoa0516612012-06-26 15:05:44 -0700917#define blk_queue_for_each_rl(rl, q) \
918 for ((rl) = &(q)->root_rl; (rl); (rl) = NULL)
919
Tejun Heoefa7d1c2015-05-22 17:13:18 -0400920#endif /* CONFIG_BLOCK */
Tejun Heo36558c82012-04-16 13:57:24 -0700921#endif /* CONFIG_BLK_CGROUP */
922#endif /* _BLK_CGROUP_H */