Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 2 | #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 Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 18 | #include <linux/percpu_counter.h> |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 19 | #include <linux/seq_file.h> |
Tejun Heo | a637120 | 2012-04-19 16:29:24 -0700 | [diff] [blame] | 20 | #include <linux/radix-tree.h> |
Tejun Heo | a051661 | 2012-06-26 15:05:44 -0700 | [diff] [blame] | 21 | #include <linux/blkdev.h> |
Tejun Heo | a5049a8 | 2014-06-19 17:42:57 -0400 | [diff] [blame] | 22 | #include <linux/atomic.h> |
Shaohua Li | 902ec5b | 2017-09-14 14:02:06 -0700 | [diff] [blame] | 23 | #include <linux/kthread.h> |
Dennis Zhou | 5cdf2e3 | 2018-12-05 12:10:31 -0500 | [diff] [blame] | 24 | #include <linux/fs.h> |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 25 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 26 | /* percpu_counter batch for blkg_[rw]stats, per-cpu drift doesn't matter */ |
| 27 | #define BLKG_STAT_CPU_BATCH (INT_MAX / 2) |
| 28 | |
Vivek Goyal | 9355aed | 2010-10-01 21:16:41 +0200 | [diff] [blame] | 29 | /* Max limits for throttle policy */ |
| 30 | #define THROTL_IOPS_MAX UINT_MAX |
| 31 | |
Tejun Heo | f48ec1d | 2012-04-13 13:11:25 -0700 | [diff] [blame] | 32 | #ifdef CONFIG_BLK_CGROUP |
| 33 | |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 34 | enum blkg_rwstat_type { |
| 35 | BLKG_RWSTAT_READ, |
| 36 | BLKG_RWSTAT_WRITE, |
| 37 | BLKG_RWSTAT_SYNC, |
| 38 | BLKG_RWSTAT_ASYNC, |
Tejun Heo | 636620b | 2018-07-18 04:47:41 -0700 | [diff] [blame] | 39 | BLKG_RWSTAT_DISCARD, |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 40 | |
| 41 | BLKG_RWSTAT_NR, |
| 42 | BLKG_RWSTAT_TOTAL = BLKG_RWSTAT_NR, |
Divyesh Shah | 303a3ac | 2010-04-01 15:01:24 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
Tejun Heo | a637120 | 2012-04-19 16:29:24 -0700 | [diff] [blame] | 45 | struct blkcg_gq; |
| 46 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 47 | struct blkcg { |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 48 | struct cgroup_subsys_state css; |
| 49 | spinlock_t lock; |
Tejun Heo | a637120 | 2012-04-19 16:29:24 -0700 | [diff] [blame] | 50 | |
| 51 | struct radix_tree_root blkg_tree; |
Bart Van Assche | 55679c8 | 2016-09-23 09:07:56 -0700 | [diff] [blame] | 52 | struct blkcg_gq __rcu *blkg_hint; |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 53 | struct hlist_head blkg_list; |
Tejun Heo | 9a9e8a2 | 2012-03-19 15:10:56 -0700 | [diff] [blame] | 54 | |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 55 | struct blkcg_policy_data *cpd[BLKCG_MAX_POLS]; |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 56 | |
Tejun Heo | 7876f93 | 2015-07-09 16:39:49 -0400 | [diff] [blame] | 57 | struct list_head all_blkcgs_node; |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 58 | #ifdef CONFIG_CGROUP_WRITEBACK |
| 59 | struct list_head cgwb_list; |
Dennis Zhou (Facebook) | 59b5771 | 2018-08-31 16:22:43 -0400 | [diff] [blame] | 60 | refcount_t cgwb_refcnt; |
Tejun Heo | 52ebea7 | 2015-05-22 17:13:37 -0400 | [diff] [blame] | 61 | #endif |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 62 | }; |
| 63 | |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 64 | /* |
| 65 | * blkg_[rw]stat->aux_cnt is excluded for local stats but included for |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 66 | * recursive. Used to carry stats of dead children, and, for blkg_rwstat, |
| 67 | * to carry result values from read and sum operations. |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 68 | */ |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 69 | struct blkg_stat { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 70 | struct percpu_counter cpu_cnt; |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 71 | atomic64_t aux_cnt; |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | struct blkg_rwstat { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 75 | struct percpu_counter cpu_cnt[BLKG_RWSTAT_NR]; |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 76 | atomic64_t aux_cnt[BLKG_RWSTAT_NR]; |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 79 | /* |
| 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 Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 84 | * 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 Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 89 | */ |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 90 | struct blkg_policy_data { |
Tejun Heo | b276a87 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 91 | /* the blkg and policy id this per-policy data belongs to */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 92 | struct blkcg_gq *blkg; |
Tejun Heo | b276a87 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 93 | int plid; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 94 | }; |
| 95 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 96 | /* |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 97 | * 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 Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 102 | */ |
| 103 | struct blkcg_policy_data { |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 104 | /* the blkcg and policy id this per-policy data belongs to */ |
| 105 | struct blkcg *blkcg; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 106 | int plid; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 107 | }; |
| 108 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 109 | /* association between a blk cgroup and a request queue */ |
| 110 | struct blkcg_gq { |
Tejun Heo | c875f4d | 2012-03-05 13:15:22 -0800 | [diff] [blame] | 111 | /* Pointer to the associated request_queue */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 112 | struct request_queue *q; |
| 113 | struct list_head q_node; |
| 114 | struct hlist_node blkcg_node; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 115 | struct blkcg *blkcg; |
Tejun Heo | 3c54786 | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 116 | |
Tejun Heo | ce7acfe | 2015-05-22 17:13:38 -0400 | [diff] [blame] | 117 | /* |
| 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 Heo | 3c54786 | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 123 | /* all non-root blkcg_gq's are guaranteed to have access to parent */ |
| 124 | struct blkcg_gq *parent; |
| 125 | |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 126 | /* reference count */ |
Dennis Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 127 | atomic_t refcnt; |
Vivek Goyal | 2208419 | 2009-12-03 12:59:49 -0500 | [diff] [blame] | 128 | |
Tejun Heo | f427d90 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 129 | /* is this blkg online? protected by both blkcg and q locks */ |
| 130 | bool online; |
| 131 | |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 132 | struct blkg_rwstat stat_bytes; |
| 133 | struct blkg_rwstat stat_ios; |
| 134 | |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 135 | struct blkg_policy_data *pd[BLKCG_MAX_POLS]; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 136 | |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 137 | struct rcu_head rcu_head; |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 138 | |
| 139 | atomic_t use_delay; |
| 140 | atomic64_t delay_nsec; |
| 141 | atomic64_t delay_start; |
| 142 | u64 last_delay; |
| 143 | int last_use; |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 144 | }; |
| 145 | |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 146 | typedef struct blkcg_policy_data *(blkcg_pol_alloc_cpd_fn)(gfp_t gfp); |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 147 | typedef void (blkcg_pol_init_cpd_fn)(struct blkcg_policy_data *cpd); |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 148 | typedef void (blkcg_pol_free_cpd_fn)(struct blkcg_policy_data *cpd); |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 149 | typedef void (blkcg_pol_bind_cpd_fn)(struct blkcg_policy_data *cpd); |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 150 | typedef struct blkg_policy_data *(blkcg_pol_alloc_pd_fn)(gfp_t gfp, int node); |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 151 | typedef void (blkcg_pol_init_pd_fn)(struct blkg_policy_data *pd); |
| 152 | typedef void (blkcg_pol_online_pd_fn)(struct blkg_policy_data *pd); |
| 153 | typedef void (blkcg_pol_offline_pd_fn)(struct blkg_policy_data *pd); |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 154 | typedef void (blkcg_pol_free_pd_fn)(struct blkg_policy_data *pd); |
Tejun Heo | a9520cd | 2015-08-18 14:55:14 -0700 | [diff] [blame] | 155 | typedef void (blkcg_pol_reset_pd_stats_fn)(struct blkg_policy_data *pd); |
Josef Bacik | 903d23f | 2018-07-03 11:14:52 -0400 | [diff] [blame] | 156 | typedef size_t (blkcg_pol_stat_pd_fn)(struct blkg_policy_data *pd, char *buf, |
| 157 | size_t size); |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 158 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 159 | struct blkcg_policy { |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 160 | int plid; |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 161 | /* cgroup files for the policy */ |
Tejun Heo | 2ee867dc | 2015-08-18 14:55:34 -0700 | [diff] [blame] | 162 | struct cftype *dfl_cftypes; |
Tejun Heo | 880f50e | 2015-08-18 14:55:30 -0700 | [diff] [blame] | 163 | struct cftype *legacy_cftypes; |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 164 | |
| 165 | /* operations */ |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 166 | blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 167 | blkcg_pol_init_cpd_fn *cpd_init_fn; |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 168 | blkcg_pol_free_cpd_fn *cpd_free_fn; |
Tejun Heo | 69d7fde | 2015-08-18 14:55:36 -0700 | [diff] [blame] | 169 | blkcg_pol_bind_cpd_fn *cpd_bind_fn; |
Tejun Heo | e4a9bde | 2015-08-18 14:55:16 -0700 | [diff] [blame] | 170 | |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 171 | blkcg_pol_alloc_pd_fn *pd_alloc_fn; |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 172 | blkcg_pol_init_pd_fn *pd_init_fn; |
Tejun Heo | f427d90 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 173 | blkcg_pol_online_pd_fn *pd_online_fn; |
| 174 | blkcg_pol_offline_pd_fn *pd_offline_fn; |
Tejun Heo | 001bea7 | 2015-08-18 14:55:11 -0700 | [diff] [blame] | 175 | blkcg_pol_free_pd_fn *pd_free_fn; |
Tejun Heo | f9fcc2d | 2012-04-16 13:57:27 -0700 | [diff] [blame] | 176 | blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn; |
Josef Bacik | 903d23f | 2018-07-03 11:14:52 -0400 | [diff] [blame] | 177 | blkcg_pol_stat_pd_fn *pd_stat_fn; |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 178 | }; |
| 179 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 180 | extern struct blkcg blkcg_root; |
Tejun Heo | 496d5e7 | 2015-05-22 17:13:21 -0400 | [diff] [blame] | 181 | extern struct cgroup_subsys_state * const blkcg_root_css; |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 182 | |
Tejun Heo | 24f2904 | 2015-08-18 14:55:17 -0700 | [diff] [blame] | 183 | struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg, |
| 184 | struct request_queue *q, bool update_hint); |
Dennis Zhou | b978962 | 2018-12-05 12:10:27 -0500 | [diff] [blame] | 185 | struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg, |
| 186 | struct request_queue *q); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 187 | struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg, |
| 188 | struct request_queue *q); |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 189 | int blkcg_init_queue(struct request_queue *q); |
| 190 | void blkcg_drain_queue(struct request_queue *q); |
| 191 | void blkcg_exit_queue(struct request_queue *q); |
Tejun Heo | 5efd611 | 2012-03-05 13:15:12 -0800 | [diff] [blame] | 192 | |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 193 | /* Blkio controller policy registration */ |
Jens Axboe | d5bf029 | 2014-06-22 16:31:56 -0600 | [diff] [blame] | 194 | int blkcg_policy_register(struct blkcg_policy *pol); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 195 | void blkcg_policy_unregister(struct blkcg_policy *pol); |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 196 | int blkcg_activate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 197 | const struct blkcg_policy *pol); |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 198 | void blkcg_deactivate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 199 | const struct blkcg_policy *pol); |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 200 | |
Tejun Heo | dd165eb | 2015-08-18 14:55:33 -0700 | [diff] [blame] | 201 | const char *blkg_dev_name(struct blkcg_gq *blkg); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 202 | void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg, |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 203 | u64 (*prfill)(struct seq_file *, |
| 204 | struct blkg_policy_data *, int), |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 205 | const struct blkcg_policy *pol, int data, |
Tejun Heo | ec39934 | 2012-04-13 13:11:27 -0700 | [diff] [blame] | 206 | bool show_total); |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 207 | u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v); |
| 208 | u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 209 | const struct blkg_rwstat *rwstat); |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 210 | u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off); |
| 211 | u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, |
| 212 | int off); |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 213 | int blkg_print_stat_bytes(struct seq_file *sf, void *v); |
| 214 | int blkg_print_stat_ios(struct seq_file *sf, void *v); |
| 215 | int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v); |
| 216 | int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v); |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 217 | |
Tejun Heo | f12c74c | 2015-08-18 14:55:23 -0700 | [diff] [blame] | 218 | u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg, |
| 219 | struct blkcg_policy *pol, int off); |
| 220 | struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg, |
| 221 | struct blkcg_policy *pol, int off); |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 222 | |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 223 | struct blkg_conf_ctx { |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 224 | struct gendisk *disk; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 225 | struct blkcg_gq *blkg; |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 226 | char *body; |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 227 | }; |
| 228 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 229 | int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol, |
Tejun Heo | 36aa9e5 | 2015-08-18 14:55:31 -0700 | [diff] [blame] | 230 | char *input, struct blkg_conf_ctx *ctx); |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 231 | void blkg_conf_finish(struct blkg_conf_ctx *ctx); |
| 232 | |
Dennis Zhou | 0fe061b | 2018-12-05 12:10:26 -0500 | [diff] [blame] | 233 | /** |
| 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 | */ |
| 240 | static 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 | */ |
| 257 | static 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) | 27e6fa9 | 2018-09-11 14:41:26 -0400 | [diff] [blame] | 290 | |
Tejun Heo | a7c6d55 | 2013-08-08 20:11:23 -0400 | [diff] [blame] | 291 | static 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 Zhou | 0fe061b | 2018-12-05 12:10:26 -0500 | [diff] [blame] | 296 | /** |
| 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 | */ |
| 310 | static inline struct blkcg *__bio_blkcg(struct bio *bio) |
Dennis Zhou (Facebook) | 27e6fa9 | 2018-09-11 14:41:26 -0400 | [diff] [blame] | 311 | { |
Dennis Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 312 | if (bio && bio->bi_css) |
| 313 | return css_to_blkcg(bio->bi_css); |
Dennis Zhou | 0fe061b | 2018-12-05 12:10:26 -0500 | [diff] [blame] | 314 | 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 | */ |
| 325 | static 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 Heo | fd383c2 | 2015-05-22 17:13:23 -0400 | [diff] [blame] | 330 | } |
| 331 | |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 332 | static 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 Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 352 | /** |
Josef Bacik | c7c98fd | 2018-07-03 11:14:51 -0400 | [diff] [blame] | 353 | * 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 | */ |
| 363 | static inline bool bio_issue_as_root_blkg(struct bio *bio) |
| 364 | { |
Josef Bacik | 0d1e0c7 | 2018-07-03 11:14:53 -0400 | [diff] [blame] | 365 | return (bio->bi_opf & (REQ_META | REQ_SWAP)) != 0; |
Josef Bacik | c7c98fd | 2018-07-03 11:14:51 -0400 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | /** |
Tejun Heo | 3c54786 | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 369 | * 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 | */ |
| 374 | static inline struct blkcg *blkcg_parent(struct blkcg *blkcg) |
| 375 | { |
Tejun Heo | 5c9d535 | 2014-05-16 13:22:48 -0400 | [diff] [blame] | 376 | return css_to_blkcg(blkcg->css.parent); |
Tejun Heo | 3c54786 | 2013-01-09 08:05:10 -0800 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | /** |
Tejun Heo | 24f2904 | 2015-08-18 14:55:17 -0700 | [diff] [blame] | 380 | * __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 | */ |
| 390 | static 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 Heo | 85b6bc9 | 2015-08-18 14:55:18 -0700 | [diff] [blame] | 396 | if (blkcg == &blkcg_root) |
| 397 | return q->root_blkg; |
| 398 | |
Tejun Heo | 24f2904 | 2015-08-18 14:55:17 -0700 | [diff] [blame] | 399 | 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 Hellwig | 8f4236d | 2018-11-14 17:02:04 +0100 | [diff] [blame] | 412 | * under RCU read loc. |
Tejun Heo | 24f2904 | 2015-08-18 14:55:17 -0700 | [diff] [blame] | 413 | */ |
| 414 | static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, |
| 415 | struct request_queue *q) |
| 416 | { |
| 417 | WARN_ON_ONCE(!rcu_read_lock_held()); |
Tejun Heo | 24f2904 | 2015-08-18 14:55:17 -0700 | [diff] [blame] | 418 | return __blkg_lookup(blkcg, q, false); |
| 419 | } |
| 420 | |
| 421 | /** |
Bart Van Assche | b86d865 | 2018-08-10 13:28:07 -0700 | [diff] [blame] | 422 | * blk_queue_root_blkg - return blkg for the (blkcg_root, @q) pair |
Bart Van Assche | 6bad9b2 | 2018-08-09 07:53:36 -0700 | [diff] [blame] | 423 | * @q: request_queue of interest |
| 424 | * |
| 425 | * Lookup blkg for @q at the root level. See also blkg_lookup(). |
| 426 | */ |
Bart Van Assche | b86d865 | 2018-08-10 13:28:07 -0700 | [diff] [blame] | 427 | static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q) |
Bart Van Assche | 6bad9b2 | 2018-08-09 07:53:36 -0700 | [diff] [blame] | 428 | { |
Bart Van Assche | b86d865 | 2018-08-10 13:28:07 -0700 | [diff] [blame] | 429 | return q->root_blkg; |
Bart Van Assche | 6bad9b2 | 2018-08-09 07:53:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | /** |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 433 | * 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 Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 439 | static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg, |
| 440 | struct blkcg_policy *pol) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 441 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 442 | return blkg ? blkg->pd[pol->plid] : NULL; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 443 | } |
| 444 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 445 | static inline struct blkcg_policy_data *blkcg_to_cpd(struct blkcg *blkcg, |
| 446 | struct blkcg_policy *pol) |
| 447 | { |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 448 | return blkcg ? blkcg->cpd[pol->plid] : NULL; |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 449 | } |
| 450 | |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 451 | /** |
| 452 | * pdata_to_blkg - get blkg associated with policy private data |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 453 | * @pd: policy private data of interest |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 454 | * |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 455 | * @pd is policy private data. Determine the blkg it's associated with. |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 456 | */ |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 457 | static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 458 | { |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 459 | return pd ? pd->blkg : NULL; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 460 | } |
| 461 | |
Tejun Heo | 8143764 | 2015-08-18 14:55:15 -0700 | [diff] [blame] | 462 | static inline struct blkcg *cpd_to_blkcg(struct blkcg_policy_data *cpd) |
| 463 | { |
| 464 | return cpd ? cpd->blkcg : NULL; |
| 465 | } |
| 466 | |
Dennis Zhou (Facebook) | 59b5771 | 2018-08-31 16:22:43 -0400 | [diff] [blame] | 467 | extern 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 | */ |
| 477 | static 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 | */ |
| 492 | static 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 | |
| 500 | static inline void blkcg_cgwb_get(struct blkcg *blkcg) { } |
| 501 | |
| 502 | static 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 Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 510 | /** |
| 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 Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 518 | static inline int blkg_path(struct blkcg_gq *blkg, char *buf, int buflen) |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 519 | { |
Tejun Heo | 4c737b4 | 2016-08-10 11:23:44 -0400 | [diff] [blame] | 520 | return cgroup_path(blkg->blkcg->css.cgroup, buf, buflen); |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 521 | } |
| 522 | |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 523 | /** |
| 524 | * blkg_get - get a blkg reference |
| 525 | * @blkg: blkg to get |
| 526 | * |
Tejun Heo | a5049a8 | 2014-06-19 17:42:57 -0400 | [diff] [blame] | 527 | * The caller should be holding an existing reference. |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 528 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 529 | static inline void blkg_get(struct blkcg_gq *blkg) |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 530 | { |
Dennis Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 531 | WARN_ON_ONCE(atomic_read(&blkg->refcnt) <= 0); |
| 532 | atomic_inc(&blkg->refcnt); |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 533 | } |
| 534 | |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 535 | /** |
Dennis Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 536 | * blkg_try_get - try and get a blkg reference |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 537 | * @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 Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 542 | static inline struct blkcg_gq *blkg_try_get(struct blkcg_gq *blkg) |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 543 | { |
Dennis Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 544 | if (atomic_inc_not_zero(&blkg->refcnt)) |
| 545 | return blkg; |
| 546 | return NULL; |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 547 | } |
| 548 | |
Dennis Zhou | beea9da | 2018-12-05 12:10:28 -0500 | [diff] [blame] | 549 | /** |
| 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 | */ |
| 556 | static 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) | 07b05bc | 2018-09-11 14:41:28 -0400 | [diff] [blame] | 563 | |
Dennis Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 564 | void __blkg_release_rcu(struct rcu_head *rcu); |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 565 | |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 566 | /** |
| 567 | * blkg_put - put a blkg reference |
| 568 | * @blkg: blkg to put |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 569 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 570 | static inline void blkg_put(struct blkcg_gq *blkg) |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 571 | { |
Dennis Zhou | b5f2954 | 2018-11-01 17:24:10 -0400 | [diff] [blame] | 572 | 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 Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 575 | } |
| 576 | |
Tejun Heo | dd4a4ff | 2013-05-14 13:52:30 -0700 | [diff] [blame] | 577 | /** |
| 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 Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 580 | * @pos_css: used for iteration |
Tejun Heo | dd4a4ff | 2013-05-14 13:52:30 -0700 | [diff] [blame] | 581 | * @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 Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 586 | * update @pos_css by calling css_rightmost_descendant() to skip subtree. |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 587 | * @p_blkg is included in the iteration and the first node to be visited. |
Tejun Heo | dd4a4ff | 2013-05-14 13:52:30 -0700 | [diff] [blame] | 588 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 589 | #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 Heo | dd4a4ff | 2013-05-14 13:52:30 -0700 | [diff] [blame] | 592 | (p_blkg)->q, false))) |
| 593 | |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 594 | /** |
Tejun Heo | aa539cb | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 595 | * blkg_for_each_descendant_post - post-order walk of a blkg's descendants |
| 596 | * @d_blkg: loop cursor pointing to the current descendant |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 597 | * @pos_css: used for iteration |
Tejun Heo | aa539cb | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 598 | * @p_blkg: target blkg to walk descendants of |
| 599 | * |
| 600 | * Similar to blkg_for_each_descendant_pre() but performs post-order |
Tejun Heo | bd8815a | 2013-08-08 20:11:27 -0400 | [diff] [blame] | 601 | * traversal instead. Synchronization rules are the same. @p_blkg is |
| 602 | * included in the iteration and the last node to be visited. |
Tejun Heo | aa539cb | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 603 | */ |
Tejun Heo | 492eb21 | 2013-08-08 20:11:25 -0400 | [diff] [blame] | 604 | #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 Heo | aa539cb | 2013-05-14 13:52:31 -0700 | [diff] [blame] | 607 | (p_blkg)->q, false))) |
| 608 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 609 | static inline int blkg_stat_init(struct blkg_stat *stat, gfp_t gfp) |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 610 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 611 | int ret; |
| 612 | |
| 613 | ret = percpu_counter_init(&stat->cpu_cnt, 0, gfp); |
| 614 | if (ret) |
| 615 | return ret; |
| 616 | |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 617 | atomic64_set(&stat->aux_cnt, 0); |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 618 | return 0; |
| 619 | } |
| 620 | |
| 621 | static inline void blkg_stat_exit(struct blkg_stat *stat) |
| 622 | { |
| 623 | percpu_counter_destroy(&stat->cpu_cnt); |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 624 | } |
| 625 | |
Tejun Heo | a051661 | 2012-06-26 15:05:44 -0700 | [diff] [blame] | 626 | /** |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 627 | * blkg_stat_add - add a value to a blkg_stat |
| 628 | * @stat: target blkg_stat |
| 629 | * @val: value to add |
| 630 | * |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 631 | * 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 Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 633 | */ |
| 634 | static inline void blkg_stat_add(struct blkg_stat *stat, uint64_t val) |
| 635 | { |
Nikolay Borisov | 104b4e5 | 2017-06-20 21:01:20 +0300 | [diff] [blame] | 636 | percpu_counter_add_batch(&stat->cpu_cnt, val, BLKG_STAT_CPU_BATCH); |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | /** |
| 640 | * blkg_stat_read - read the current value of a blkg_stat |
| 641 | * @stat: blkg_stat to read |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 642 | */ |
| 643 | static inline uint64_t blkg_stat_read(struct blkg_stat *stat) |
| 644 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 645 | return percpu_counter_sum_positive(&stat->cpu_cnt); |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | /** |
| 649 | * blkg_stat_reset - reset a blkg_stat |
| 650 | * @stat: blkg_stat to reset |
| 651 | */ |
| 652 | static inline void blkg_stat_reset(struct blkg_stat *stat) |
| 653 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 654 | percpu_counter_set(&stat->cpu_cnt, 0); |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 655 | atomic64_set(&stat->aux_cnt, 0); |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | /** |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 659 | * blkg_stat_add_aux - add a blkg_stat into another's aux count |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 660 | * @to: the destination blkg_stat |
| 661 | * @from: the source |
| 662 | * |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 663 | * Add @from's count including the aux one to @to's aux count. |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 664 | */ |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 665 | static inline void blkg_stat_add_aux(struct blkg_stat *to, |
| 666 | struct blkg_stat *from) |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 667 | { |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 668 | atomic64_add(blkg_stat_read(from) + atomic64_read(&from->aux_cnt), |
| 669 | &to->aux_cnt); |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 670 | } |
| 671 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 672 | static 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 | |
| 688 | static inline void blkg_rwstat_exit(struct blkg_rwstat *rwstat) |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 689 | { |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 690 | int i; |
| 691 | |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 692 | for (i = 0; i < BLKG_RWSTAT_NR; i++) |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 693 | percpu_counter_destroy(&rwstat->cpu_cnt[i]); |
Peter Zijlstra | 90d3839 | 2013-11-12 19:42:14 -0800 | [diff] [blame] | 694 | } |
| 695 | |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 696 | /** |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 697 | * blkg_rwstat_add - add a value to a blkg_rwstat |
| 698 | * @rwstat: target blkg_rwstat |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 699 | * @op: REQ_OP and flags |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 700 | * @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 | */ |
| 705 | static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat, |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 706 | unsigned int op, uint64_t val) |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 707 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 708 | struct percpu_counter *cnt; |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 709 | |
Tejun Heo | 636620b | 2018-07-18 04:47:41 -0700 | [diff] [blame] | 710 | if (op_is_discard(op)) |
| 711 | cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_DISCARD]; |
| 712 | else if (op_is_write(op)) |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 713 | cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_WRITE]; |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 714 | else |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 715 | cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_READ]; |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 716 | |
Nikolay Borisov | 104b4e5 | 2017-06-20 21:01:20 +0300 | [diff] [blame] | 717 | percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH); |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 718 | |
Christoph Hellwig | d71d9ae | 2016-11-01 07:40:03 -0600 | [diff] [blame] | 719 | if (op_is_sync(op)) |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 720 | cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_SYNC]; |
| 721 | else |
| 722 | cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_ASYNC]; |
| 723 | |
Nikolay Borisov | 104b4e5 | 2017-06-20 21:01:20 +0300 | [diff] [blame] | 724 | percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH); |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | /** |
| 728 | * blkg_rwstat_read - read the current values of a blkg_rwstat |
| 729 | * @rwstat: blkg_rwstat to read |
| 730 | * |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 731 | * Read the current snapshot of @rwstat and return it in the aux counts. |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 732 | */ |
Tejun Heo | c94bed89 | 2012-04-16 13:57:22 -0700 | [diff] [blame] | 733 | static inline struct blkg_rwstat blkg_rwstat_read(struct blkg_rwstat *rwstat) |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 734 | { |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 735 | struct blkg_rwstat result; |
| 736 | int i; |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 737 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 738 | 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 Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | /** |
Tejun Heo | 4d5e80a | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 745 | * blkg_rwstat_total - read the total count of a blkg_rwstat |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 746 | * @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 Heo | 4d5e80a | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 752 | static inline uint64_t blkg_rwstat_total(struct blkg_rwstat *rwstat) |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 753 | { |
| 754 | struct blkg_rwstat tmp = blkg_rwstat_read(rwstat); |
| 755 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 756 | return atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_READ]) + |
| 757 | atomic64_read(&tmp.aux_cnt[BLKG_RWSTAT_WRITE]); |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 758 | } |
| 759 | |
| 760 | /** |
| 761 | * blkg_rwstat_reset - reset a blkg_rwstat |
| 762 | * @rwstat: blkg_rwstat to reset |
| 763 | */ |
| 764 | static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat) |
| 765 | { |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 766 | int i; |
| 767 | |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 768 | for (i = 0; i < BLKG_RWSTAT_NR; i++) { |
| 769 | percpu_counter_set(&rwstat->cpu_cnt[i], 0); |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 770 | atomic64_set(&rwstat->aux_cnt[i], 0); |
Tejun Heo | 24bdb8e | 2015-08-18 14:55:22 -0700 | [diff] [blame] | 771 | } |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 772 | } |
| 773 | |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 774 | /** |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 775 | * blkg_rwstat_add_aux - add a blkg_rwstat into another's aux count |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 776 | * @to: the destination blkg_rwstat |
| 777 | * @from: the source |
| 778 | * |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 779 | * Add @from's count including the aux one to @to's aux count. |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 780 | */ |
Tejun Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 781 | static inline void blkg_rwstat_add_aux(struct blkg_rwstat *to, |
| 782 | struct blkg_rwstat *from) |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 783 | { |
Arnd Bergmann | ddc2123 | 2018-01-16 16:01:36 +0100 | [diff] [blame] | 784 | u64 sum[BLKG_RWSTAT_NR]; |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 785 | int i; |
| 786 | |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 787 | for (i = 0; i < BLKG_RWSTAT_NR; i++) |
Arnd Bergmann | ddc2123 | 2018-01-16 16:01:36 +0100 | [diff] [blame] | 788 | 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 Heo | e6269c4 | 2015-08-18 14:55:21 -0700 | [diff] [blame] | 792 | &to->aux_cnt[i]); |
Tejun Heo | 16b3de6 | 2013-01-09 08:05:12 -0800 | [diff] [blame] | 793 | } |
| 794 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 795 | #ifdef CONFIG_BLK_DEV_THROTTLING |
| 796 | extern bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg, |
| 797 | struct bio *bio); |
| 798 | #else |
| 799 | static inline bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg, |
| 800 | struct bio *bio) { return false; } |
| 801 | #endif |
| 802 | |
Dennis Zhou | e439bed | 2018-12-05 12:10:32 -0500 | [diff] [blame] | 803 | |
| 804 | static inline void blkcg_bio_issue_init(struct bio *bio) |
| 805 | { |
| 806 | bio_issue_init(&bio->bi_issue, bio_sectors(bio)); |
| 807 | } |
| 808 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 809 | static inline bool blkcg_bio_issue_check(struct request_queue *q, |
| 810 | struct bio *bio) |
| 811 | { |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 812 | struct blkcg_gq *blkg; |
| 813 | bool throtl = false; |
| 814 | |
Dennis Zhou | 5cdf2e3 | 2018-12-05 12:10:31 -0500 | [diff] [blame] | 815 | if (!bio->bi_blkg) { |
| 816 | char b[BDEVNAME_SIZE]; |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 817 | |
Dennis Zhou | 5cdf2e3 | 2018-12-05 12:10:31 -0500 | [diff] [blame] | 818 | 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 Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 825 | |
| 826 | throtl = blk_throtl_bio(q, blkg, bio); |
| 827 | |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 828 | if (!throtl) { |
Josef Bacik | c454edc | 2018-07-30 10:10:01 -0400 | [diff] [blame] | 829 | /* |
| 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 Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 837 | blkg_rwstat_add(&blkg->stat_ios, bio->bi_opf, 1); |
Tejun Heo | 77ea733 | 2015-08-18 14:55:24 -0700 | [diff] [blame] | 838 | } |
| 839 | |
Dennis Zhou | e439bed | 2018-12-05 12:10:32 -0500 | [diff] [blame] | 840 | blkcg_bio_issue_init(bio); |
| 841 | |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 842 | return !throtl; |
| 843 | } |
| 844 | |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 845 | static 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 | |
| 851 | static 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 | |
| 879 | static 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 | |
| 895 | void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta); |
| 896 | void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay); |
| 897 | void blkcg_maybe_throttle_current(void); |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 898 | #else /* CONFIG_BLK_CGROUP */ |
| 899 | |
Tejun Heo | efa7d1c | 2015-05-22 17:13:18 -0400 | [diff] [blame] | 900 | struct blkcg { |
| 901 | }; |
Jens Axboe | 2f5ea47 | 2009-12-03 21:06:43 +0100 | [diff] [blame] | 902 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 903 | struct blkg_policy_data { |
| 904 | }; |
| 905 | |
Arianna Avanzini | e48453c | 2015-06-05 23:38:42 +0200 | [diff] [blame] | 906 | struct blkcg_policy_data { |
| 907 | }; |
| 908 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 909 | struct blkcg_gq { |
Jens Axboe | 2f5ea47 | 2009-12-03 21:06:43 +0100 | [diff] [blame] | 910 | }; |
| 911 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 912 | struct blkcg_policy { |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 913 | }; |
| 914 | |
Tejun Heo | 496d5e7 | 2015-05-22 17:13:21 -0400 | [diff] [blame] | 915 | #define blkcg_root_css ((struct cgroup_subsys_state *)ERR_PTR(-EINVAL)) |
| 916 | |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 917 | static inline void blkcg_maybe_throttle_current(void) { } |
| 918 | static inline bool blk_cgroup_congested(void) { return false; } |
| 919 | |
Tejun Heo | efa7d1c | 2015-05-22 17:13:18 -0400 | [diff] [blame] | 920 | #ifdef CONFIG_BLOCK |
| 921 | |
Josef Bacik | d09d8df | 2018-07-03 11:14:55 -0400 | [diff] [blame] | 922 | static inline void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay) { } |
| 923 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 924 | static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, void *key) { return NULL; } |
Bart Van Assche | b86d865 | 2018-08-10 13:28:07 -0700 | [diff] [blame] | 925 | static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q) |
| 926 | { return NULL; } |
Tejun Heo | 5efd611 | 2012-03-05 13:15:12 -0800 | [diff] [blame] | 927 | static inline int blkcg_init_queue(struct request_queue *q) { return 0; } |
| 928 | static inline void blkcg_drain_queue(struct request_queue *q) { } |
| 929 | static inline void blkcg_exit_queue(struct request_queue *q) { } |
Jens Axboe | d5bf029 | 2014-06-22 16:31:56 -0600 | [diff] [blame] | 930 | static inline int blkcg_policy_register(struct blkcg_policy *pol) { return 0; } |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 931 | static inline void blkcg_policy_unregister(struct blkcg_policy *pol) { } |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 932 | static inline int blkcg_activate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 933 | const struct blkcg_policy *pol) { return 0; } |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 934 | static inline void blkcg_deactivate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 935 | const struct blkcg_policy *pol) { } |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 936 | |
Dennis Zhou | 0fe061b | 2018-12-05 12:10:26 -0500 | [diff] [blame] | 937 | static inline struct blkcg *__bio_blkcg(struct bio *bio) { return NULL; } |
Tejun Heo | b1208b5 | 2012-06-04 20:40:57 -0700 | [diff] [blame] | 938 | static inline struct blkcg *bio_blkcg(struct bio *bio) { return NULL; } |
Tejun Heo | a051661 | 2012-06-26 15:05:44 -0700 | [diff] [blame] | 939 | |
Tejun Heo | f95a04a | 2012-04-16 13:57:26 -0700 | [diff] [blame] | 940 | static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg, |
| 941 | struct blkcg_policy *pol) { return NULL; } |
| 942 | static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd) { return NULL; } |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 943 | static inline char *blkg_path(struct blkcg_gq *blkg) { return NULL; } |
| 944 | static inline void blkg_get(struct blkcg_gq *blkg) { } |
| 945 | static inline void blkg_put(struct blkcg_gq *blkg) { } |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 946 | |
Dennis Zhou | e439bed | 2018-12-05 12:10:32 -0500 | [diff] [blame] | 947 | static inline void blkcg_bio_issue_init(struct bio *bio) { } |
Tejun Heo | ae11889 | 2015-08-18 14:55:20 -0700 | [diff] [blame] | 948 | static inline bool blkcg_bio_issue_check(struct request_queue *q, |
| 949 | struct bio *bio) { return true; } |
| 950 | |
Tejun Heo | a051661 | 2012-06-26 15:05:44 -0700 | [diff] [blame] | 951 | #define blk_queue_for_each_rl(rl, q) \ |
| 952 | for ((rl) = &(q)->root_rl; (rl); (rl) = NULL) |
| 953 | |
Tejun Heo | efa7d1c | 2015-05-22 17:13:18 -0400 | [diff] [blame] | 954 | #endif /* CONFIG_BLOCK */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 955 | #endif /* CONFIG_BLK_CGROUP */ |
| 956 | #endif /* _BLK_CGROUP_H */ |