qed: FW 8.42.2.0 iscsi/fcoe changes
[linux-2.6-microblaze.git] / include / linux / blk-cgroup.h
1 /* SPDX-License-Identifier: GPL-2.0 */
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>
18 #include <linux/percpu.h>
19 #include <linux/percpu_counter.h>
20 #include <linux/u64_stats_sync.h>
21 #include <linux/seq_file.h>
22 #include <linux/radix-tree.h>
23 #include <linux/blkdev.h>
24 #include <linux/atomic.h>
25 #include <linux/kthread.h>
26 #include <linux/fs.h>
27
28 /* percpu_counter batch for blkg_[rw]stats, per-cpu drift doesn't matter */
29 #define BLKG_STAT_CPU_BATCH     (INT_MAX / 2)
30
31 /* Max limits for throttle policy */
32 #define THROTL_IOPS_MAX         UINT_MAX
33
34 #ifdef CONFIG_BLK_CGROUP
35
36 enum blkg_iostat_type {
37         BLKG_IOSTAT_READ,
38         BLKG_IOSTAT_WRITE,
39         BLKG_IOSTAT_DISCARD,
40
41         BLKG_IOSTAT_NR,
42 };
43
44 struct blkcg_gq;
45
46 struct blkcg {
47         struct cgroup_subsys_state      css;
48         spinlock_t                      lock;
49
50         struct radix_tree_root          blkg_tree;
51         struct blkcg_gq __rcu           *blkg_hint;
52         struct hlist_head               blkg_list;
53
54         struct blkcg_policy_data        *cpd[BLKCG_MAX_POLS];
55
56         struct list_head                all_blkcgs_node;
57 #ifdef CONFIG_CGROUP_WRITEBACK
58         struct list_head                cgwb_list;
59         refcount_t                      cgwb_refcnt;
60 #endif
61 };
62
63 struct blkg_iostat {
64         u64                             bytes[BLKG_IOSTAT_NR];
65         u64                             ios[BLKG_IOSTAT_NR];
66 };
67
68 struct blkg_iostat_set {
69         struct u64_stats_sync           sync;
70         struct blkg_iostat              cur;
71         struct blkg_iostat              last;
72 };
73
74 /*
75  * A blkcg_gq (blkg) is association between a block cgroup (blkcg) and a
76  * request_queue (q).  This is used by blkcg policies which need to track
77  * information per blkcg - q pair.
78  *
79  * There can be multiple active blkcg policies and each blkg:policy pair is
80  * represented by a blkg_policy_data which is allocated and freed by each
81  * policy's pd_alloc/free_fn() methods.  A policy can allocate private data
82  * area by allocating larger data structure which embeds blkg_policy_data
83  * at the beginning.
84  */
85 struct blkg_policy_data {
86         /* the blkg and policy id this per-policy data belongs to */
87         struct blkcg_gq                 *blkg;
88         int                             plid;
89 };
90
91 /*
92  * Policies that need to keep per-blkcg data which is independent from any
93  * request_queue associated to it should implement cpd_alloc/free_fn()
94  * methods.  A policy can allocate private data area by allocating larger
95  * data structure which embeds blkcg_policy_data at the beginning.
96  * cpd_init() is invoked to let each policy handle per-blkcg data.
97  */
98 struct blkcg_policy_data {
99         /* the blkcg and policy id this per-policy data belongs to */
100         struct blkcg                    *blkcg;
101         int                             plid;
102 };
103
104 /* association between a blk cgroup and a request queue */
105 struct blkcg_gq {
106         /* Pointer to the associated request_queue */
107         struct request_queue            *q;
108         struct list_head                q_node;
109         struct hlist_node               blkcg_node;
110         struct blkcg                    *blkcg;
111
112         /*
113          * Each blkg gets congested separately and the congestion state is
114          * propagated to the matching bdi_writeback_congested.
115          */
116         struct bdi_writeback_congested  *wb_congested;
117
118         /* all non-root blkcg_gq's are guaranteed to have access to parent */
119         struct blkcg_gq                 *parent;
120
121         /* reference count */
122         struct percpu_ref               refcnt;
123
124         /* is this blkg online? protected by both blkcg and q locks */
125         bool                            online;
126
127         struct blkg_iostat_set __percpu *iostat_cpu;
128         struct blkg_iostat_set          iostat;
129
130         struct blkg_policy_data         *pd[BLKCG_MAX_POLS];
131
132         spinlock_t                      async_bio_lock;
133         struct bio_list                 async_bios;
134         struct work_struct              async_bio_work;
135
136         atomic_t                        use_delay;
137         atomic64_t                      delay_nsec;
138         atomic64_t                      delay_start;
139         u64                             last_delay;
140         int                             last_use;
141
142         struct rcu_head                 rcu_head;
143 };
144
145 typedef struct blkcg_policy_data *(blkcg_pol_alloc_cpd_fn)(gfp_t gfp);
146 typedef void (blkcg_pol_init_cpd_fn)(struct blkcg_policy_data *cpd);
147 typedef void (blkcg_pol_free_cpd_fn)(struct blkcg_policy_data *cpd);
148 typedef void (blkcg_pol_bind_cpd_fn)(struct blkcg_policy_data *cpd);
149 typedef struct blkg_policy_data *(blkcg_pol_alloc_pd_fn)(gfp_t gfp,
150                                 struct request_queue *q, struct blkcg *blkcg);
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);
154 typedef void (blkcg_pol_free_pd_fn)(struct blkg_policy_data *pd);
155 typedef void (blkcg_pol_reset_pd_stats_fn)(struct blkg_policy_data *pd);
156 typedef size_t (blkcg_pol_stat_pd_fn)(struct blkg_policy_data *pd, char *buf,
157                                       size_t size);
158
159 struct blkcg_policy {
160         int                             plid;
161         /* cgroup files for the policy */
162         struct cftype                   *dfl_cftypes;
163         struct cftype                   *legacy_cftypes;
164
165         /* operations */
166         blkcg_pol_alloc_cpd_fn          *cpd_alloc_fn;
167         blkcg_pol_init_cpd_fn           *cpd_init_fn;
168         blkcg_pol_free_cpd_fn           *cpd_free_fn;
169         blkcg_pol_bind_cpd_fn           *cpd_bind_fn;
170
171         blkcg_pol_alloc_pd_fn           *pd_alloc_fn;
172         blkcg_pol_init_pd_fn            *pd_init_fn;
173         blkcg_pol_online_pd_fn          *pd_online_fn;
174         blkcg_pol_offline_pd_fn         *pd_offline_fn;
175         blkcg_pol_free_pd_fn            *pd_free_fn;
176         blkcg_pol_reset_pd_stats_fn     *pd_reset_stats_fn;
177         blkcg_pol_stat_pd_fn            *pd_stat_fn;
178 };
179
180 extern struct blkcg blkcg_root;
181 extern struct cgroup_subsys_state * const blkcg_root_css;
182 extern bool blkcg_debug_stats;
183
184 struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
185                                       struct request_queue *q, bool update_hint);
186 struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
187                                       struct request_queue *q);
188 struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
189                                     struct request_queue *q);
190 int blkcg_init_queue(struct request_queue *q);
191 void blkcg_exit_queue(struct request_queue *q);
192
193 /* Blkio controller policy registration */
194 int blkcg_policy_register(struct blkcg_policy *pol);
195 void blkcg_policy_unregister(struct blkcg_policy *pol);
196 int blkcg_activate_policy(struct request_queue *q,
197                           const struct blkcg_policy *pol);
198 void blkcg_deactivate_policy(struct request_queue *q,
199                              const struct blkcg_policy *pol);
200
201 const char *blkg_dev_name(struct blkcg_gq *blkg);
202 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
203                        u64 (*prfill)(struct seq_file *,
204                                      struct blkg_policy_data *, int),
205                        const struct blkcg_policy *pol, int data,
206                        bool show_total);
207 u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v);
208
209 struct blkg_conf_ctx {
210         struct gendisk                  *disk;
211         struct blkcg_gq                 *blkg;
212         char                            *body;
213 };
214
215 struct gendisk *blkcg_conf_get_disk(char **inputp);
216 int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
217                    char *input, struct blkg_conf_ctx *ctx);
218 void blkg_conf_finish(struct blkg_conf_ctx *ctx);
219
220 /**
221  * blkcg_css - find the current css
222  *
223  * Find the css associated with either the kthread or the current task.
224  * This may return a dying css, so it is up to the caller to use tryget logic
225  * to confirm it is alive and well.
226  */
227 static inline struct cgroup_subsys_state *blkcg_css(void)
228 {
229         struct cgroup_subsys_state *css;
230
231         css = kthread_blkcg();
232         if (css)
233                 return css;
234         return task_css(current, io_cgrp_id);
235 }
236
237 static inline struct blkcg *css_to_blkcg(struct cgroup_subsys_state *css)
238 {
239         return css ? container_of(css, struct blkcg, css) : NULL;
240 }
241
242 /**
243  * __bio_blkcg - internal, inconsistent version to get blkcg
244  *
245  * DO NOT USE.
246  * This function is inconsistent and consequently is dangerous to use.  The
247  * first part of the function returns a blkcg where a reference is owned by the
248  * bio.  This means it does not need to be rcu protected as it cannot go away
249  * with the bio owning a reference to it.  However, the latter potentially gets
250  * it from task_css().  This can race against task migration and the cgroup
251  * dying.  It is also semantically different as it must be called rcu protected
252  * and is susceptible to failure when trying to get a reference to it.
253  * Therefore, it is not ok to assume that *_get() will always succeed on the
254  * blkcg returned here.
255  */
256 static inline struct blkcg *__bio_blkcg(struct bio *bio)
257 {
258         if (bio && bio->bi_blkg)
259                 return bio->bi_blkg->blkcg;
260         return css_to_blkcg(blkcg_css());
261 }
262
263 /**
264  * bio_blkcg - grab the blkcg associated with a bio
265  * @bio: target bio
266  *
267  * This returns the blkcg associated with a bio, %NULL if not associated.
268  * Callers are expected to either handle %NULL or know association has been
269  * done prior to calling this.
270  */
271 static inline struct blkcg *bio_blkcg(struct bio *bio)
272 {
273         if (bio && bio->bi_blkg)
274                 return bio->bi_blkg->blkcg;
275         return NULL;
276 }
277
278 static inline bool blk_cgroup_congested(void)
279 {
280         struct cgroup_subsys_state *css;
281         bool ret = false;
282
283         rcu_read_lock();
284         css = kthread_blkcg();
285         if (!css)
286                 css = task_css(current, io_cgrp_id);
287         while (css) {
288                 if (atomic_read(&css->cgroup->congestion_count)) {
289                         ret = true;
290                         break;
291                 }
292                 css = css->parent;
293         }
294         rcu_read_unlock();
295         return ret;
296 }
297
298 /**
299  * bio_issue_as_root_blkg - see if this bio needs to be issued as root blkg
300  * @return: true if this bio needs to be submitted with the root blkg context.
301  *
302  * In order to avoid priority inversions we sometimes need to issue a bio as if
303  * it were attached to the root blkg, and then backcharge to the actual owning
304  * blkg.  The idea is we do bio_blkcg() to look up the actual context for the
305  * bio and attach the appropriate blkg to the bio.  Then we call this helper and
306  * if it is true run with the root blkg for that queue and then do any
307  * backcharging to the originating cgroup once the io is complete.
308  */
309 static inline bool bio_issue_as_root_blkg(struct bio *bio)
310 {
311         return (bio->bi_opf & (REQ_META | REQ_SWAP)) != 0;
312 }
313
314 /**
315  * blkcg_parent - get the parent of a blkcg
316  * @blkcg: blkcg of interest
317  *
318  * Return the parent blkcg of @blkcg.  Can be called anytime.
319  */
320 static inline struct blkcg *blkcg_parent(struct blkcg *blkcg)
321 {
322         return css_to_blkcg(blkcg->css.parent);
323 }
324
325 /**
326  * __blkg_lookup - internal version of blkg_lookup()
327  * @blkcg: blkcg of interest
328  * @q: request_queue of interest
329  * @update_hint: whether to update lookup hint with the result or not
330  *
331  * This is internal version and shouldn't be used by policy
332  * implementations.  Looks up blkgs for the @blkcg - @q pair regardless of
333  * @q's bypass state.  If @update_hint is %true, the caller should be
334  * holding @q->queue_lock and lookup hint is updated on success.
335  */
336 static inline struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
337                                              struct request_queue *q,
338                                              bool update_hint)
339 {
340         struct blkcg_gq *blkg;
341
342         if (blkcg == &blkcg_root)
343                 return q->root_blkg;
344
345         blkg = rcu_dereference(blkcg->blkg_hint);
346         if (blkg && blkg->q == q)
347                 return blkg;
348
349         return blkg_lookup_slowpath(blkcg, q, update_hint);
350 }
351
352 /**
353  * blkg_lookup - lookup blkg for the specified blkcg - q pair
354  * @blkcg: blkcg of interest
355  * @q: request_queue of interest
356  *
357  * Lookup blkg for the @blkcg - @q pair.  This function should be called
358  * under RCU read lock.
359  */
360 static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg,
361                                            struct request_queue *q)
362 {
363         WARN_ON_ONCE(!rcu_read_lock_held());
364         return __blkg_lookup(blkcg, q, false);
365 }
366
367 /**
368  * blk_queue_root_blkg - return blkg for the (blkcg_root, @q) pair
369  * @q: request_queue of interest
370  *
371  * Lookup blkg for @q at the root level. See also blkg_lookup().
372  */
373 static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q)
374 {
375         return q->root_blkg;
376 }
377
378 /**
379  * blkg_to_pdata - get policy private data
380  * @blkg: blkg of interest
381  * @pol: policy of interest
382  *
383  * Return pointer to private data associated with the @blkg-@pol pair.
384  */
385 static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg,
386                                                   struct blkcg_policy *pol)
387 {
388         return blkg ? blkg->pd[pol->plid] : NULL;
389 }
390
391 static inline struct blkcg_policy_data *blkcg_to_cpd(struct blkcg *blkcg,
392                                                      struct blkcg_policy *pol)
393 {
394         return blkcg ? blkcg->cpd[pol->plid] : NULL;
395 }
396
397 /**
398  * pdata_to_blkg - get blkg associated with policy private data
399  * @pd: policy private data of interest
400  *
401  * @pd is policy private data.  Determine the blkg it's associated with.
402  */
403 static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd)
404 {
405         return pd ? pd->blkg : NULL;
406 }
407
408 static inline struct blkcg *cpd_to_blkcg(struct blkcg_policy_data *cpd)
409 {
410         return cpd ? cpd->blkcg : NULL;
411 }
412
413 extern void blkcg_destroy_blkgs(struct blkcg *blkcg);
414
415 #ifdef CONFIG_CGROUP_WRITEBACK
416
417 /**
418  * blkcg_cgwb_get - get a reference for blkcg->cgwb_list
419  * @blkcg: blkcg of interest
420  *
421  * This is used to track the number of active wb's related to a blkcg.
422  */
423 static inline void blkcg_cgwb_get(struct blkcg *blkcg)
424 {
425         refcount_inc(&blkcg->cgwb_refcnt);
426 }
427
428 /**
429  * blkcg_cgwb_put - put a reference for @blkcg->cgwb_list
430  * @blkcg: blkcg of interest
431  *
432  * This is used to track the number of active wb's related to a blkcg.
433  * When this count goes to zero, all active wb has finished so the
434  * blkcg can continue destruction by calling blkcg_destroy_blkgs().
435  * This work may occur in cgwb_release_workfn() on the cgwb_release
436  * workqueue.
437  */
438 static inline void blkcg_cgwb_put(struct blkcg *blkcg)
439 {
440         if (refcount_dec_and_test(&blkcg->cgwb_refcnt))
441                 blkcg_destroy_blkgs(blkcg);
442 }
443
444 #else
445
446 static inline void blkcg_cgwb_get(struct blkcg *blkcg) { }
447
448 static inline void blkcg_cgwb_put(struct blkcg *blkcg)
449 {
450         /* wb isn't being accounted, so trigger destruction right away */
451         blkcg_destroy_blkgs(blkcg);
452 }
453
454 #endif
455
456 /**
457  * blkg_path - format cgroup path of blkg
458  * @blkg: blkg of interest
459  * @buf: target buffer
460  * @buflen: target buffer length
461  *
462  * Format the path of the cgroup of @blkg into @buf.
463  */
464 static inline int blkg_path(struct blkcg_gq *blkg, char *buf, int buflen)
465 {
466         return cgroup_path(blkg->blkcg->css.cgroup, buf, buflen);
467 }
468
469 /**
470  * blkg_get - get a blkg reference
471  * @blkg: blkg to get
472  *
473  * The caller should be holding an existing reference.
474  */
475 static inline void blkg_get(struct blkcg_gq *blkg)
476 {
477         percpu_ref_get(&blkg->refcnt);
478 }
479
480 /**
481  * blkg_tryget - try and get a blkg reference
482  * @blkg: blkg to get
483  *
484  * This is for use when doing an RCU lookup of the blkg.  We may be in the midst
485  * of freeing this blkg, so we can only use it if the refcnt is not zero.
486  */
487 static inline bool blkg_tryget(struct blkcg_gq *blkg)
488 {
489         return blkg && percpu_ref_tryget(&blkg->refcnt);
490 }
491
492 /**
493  * blkg_tryget_closest - try and get a blkg ref on the closet blkg
494  * @blkg: blkg to get
495  *
496  * This needs to be called rcu protected.  As the failure mode here is to walk
497  * up the blkg tree, this ensure that the blkg->parent pointers are always
498  * valid.  This returns the blkg that it ended up taking a reference on or %NULL
499  * if no reference was taken.
500  */
501 static inline struct blkcg_gq *blkg_tryget_closest(struct blkcg_gq *blkg)
502 {
503         struct blkcg_gq *ret_blkg = NULL;
504
505         WARN_ON_ONCE(!rcu_read_lock_held());
506
507         while (blkg) {
508                 if (blkg_tryget(blkg)) {
509                         ret_blkg = blkg;
510                         break;
511                 }
512                 blkg = blkg->parent;
513         }
514
515         return ret_blkg;
516 }
517
518 /**
519  * blkg_put - put a blkg reference
520  * @blkg: blkg to put
521  */
522 static inline void blkg_put(struct blkcg_gq *blkg)
523 {
524         percpu_ref_put(&blkg->refcnt);
525 }
526
527 /**
528  * blkg_for_each_descendant_pre - pre-order walk of a blkg's descendants
529  * @d_blkg: loop cursor pointing to the current descendant
530  * @pos_css: used for iteration
531  * @p_blkg: target blkg to walk descendants of
532  *
533  * Walk @c_blkg through the descendants of @p_blkg.  Must be used with RCU
534  * read locked.  If called under either blkcg or queue lock, the iteration
535  * is guaranteed to include all and only online blkgs.  The caller may
536  * update @pos_css by calling css_rightmost_descendant() to skip subtree.
537  * @p_blkg is included in the iteration and the first node to be visited.
538  */
539 #define blkg_for_each_descendant_pre(d_blkg, pos_css, p_blkg)           \
540         css_for_each_descendant_pre((pos_css), &(p_blkg)->blkcg->css)   \
541                 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css),    \
542                                               (p_blkg)->q, false)))
543
544 /**
545  * blkg_for_each_descendant_post - post-order walk of a blkg's descendants
546  * @d_blkg: loop cursor pointing to the current descendant
547  * @pos_css: used for iteration
548  * @p_blkg: target blkg to walk descendants of
549  *
550  * Similar to blkg_for_each_descendant_pre() but performs post-order
551  * traversal instead.  Synchronization rules are the same.  @p_blkg is
552  * included in the iteration and the last node to be visited.
553  */
554 #define blkg_for_each_descendant_post(d_blkg, pos_css, p_blkg)          \
555         css_for_each_descendant_post((pos_css), &(p_blkg)->blkcg->css)  \
556                 if (((d_blkg) = __blkg_lookup(css_to_blkcg(pos_css),    \
557                                               (p_blkg)->q, false)))
558
559 #ifdef CONFIG_BLK_DEV_THROTTLING
560 extern bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
561                            struct bio *bio);
562 #else
563 static inline bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
564                                   struct bio *bio) { return false; }
565 #endif
566
567 bool __blkcg_punt_bio_submit(struct bio *bio);
568
569 static inline bool blkcg_punt_bio_submit(struct bio *bio)
570 {
571         if (bio->bi_opf & REQ_CGROUP_PUNT)
572                 return __blkcg_punt_bio_submit(bio);
573         else
574                 return false;
575 }
576
577 static inline void blkcg_bio_issue_init(struct bio *bio)
578 {
579         bio_issue_init(&bio->bi_issue, bio_sectors(bio));
580 }
581
582 static inline bool blkcg_bio_issue_check(struct request_queue *q,
583                                          struct bio *bio)
584 {
585         struct blkcg_gq *blkg;
586         bool throtl = false;
587
588         rcu_read_lock();
589
590         if (!bio->bi_blkg) {
591                 char b[BDEVNAME_SIZE];
592
593                 WARN_ONCE(1,
594                           "no blkg associated for bio on block-device: %s\n",
595                           bio_devname(bio, b));
596                 bio_associate_blkg(bio);
597         }
598
599         blkg = bio->bi_blkg;
600
601         throtl = blk_throtl_bio(q, blkg, bio);
602
603         if (!throtl) {
604                 struct blkg_iostat_set *bis;
605                 int rwd, cpu;
606
607                 if (op_is_discard(bio->bi_opf))
608                         rwd = BLKG_IOSTAT_DISCARD;
609                 else if (op_is_write(bio->bi_opf))
610                         rwd = BLKG_IOSTAT_WRITE;
611                 else
612                         rwd = BLKG_IOSTAT_READ;
613
614                 cpu = get_cpu();
615                 bis = per_cpu_ptr(blkg->iostat_cpu, cpu);
616                 u64_stats_update_begin(&bis->sync);
617
618                 /*
619                  * If the bio is flagged with BIO_QUEUE_ENTERED it means this
620                  * is a split bio and we would have already accounted for the
621                  * size of the bio.
622                  */
623                 if (!bio_flagged(bio, BIO_QUEUE_ENTERED))
624                         bis->cur.bytes[rwd] += bio->bi_iter.bi_size;
625                 bis->cur.ios[rwd]++;
626
627                 u64_stats_update_end(&bis->sync);
628                 if (cgroup_subsys_on_dfl(io_cgrp_subsys))
629                         cgroup_rstat_updated(blkg->blkcg->css.cgroup, cpu);
630                 put_cpu();
631         }
632
633         blkcg_bio_issue_init(bio);
634
635         rcu_read_unlock();
636         return !throtl;
637 }
638
639 static inline void blkcg_use_delay(struct blkcg_gq *blkg)
640 {
641         if (atomic_add_return(1, &blkg->use_delay) == 1)
642                 atomic_inc(&blkg->blkcg->css.cgroup->congestion_count);
643 }
644
645 static inline int blkcg_unuse_delay(struct blkcg_gq *blkg)
646 {
647         int old = atomic_read(&blkg->use_delay);
648
649         if (old == 0)
650                 return 0;
651
652         /*
653          * We do this song and dance because we can race with somebody else
654          * adding or removing delay.  If we just did an atomic_dec we'd end up
655          * negative and we'd already be in trouble.  We need to subtract 1 and
656          * then check to see if we were the last delay so we can drop the
657          * congestion count on the cgroup.
658          */
659         while (old) {
660                 int cur = atomic_cmpxchg(&blkg->use_delay, old, old - 1);
661                 if (cur == old)
662                         break;
663                 old = cur;
664         }
665
666         if (old == 0)
667                 return 0;
668         if (old == 1)
669                 atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
670         return 1;
671 }
672
673 static inline void blkcg_clear_delay(struct blkcg_gq *blkg)
674 {
675         int old = atomic_read(&blkg->use_delay);
676         if (!old)
677                 return;
678         /* We only want 1 person clearing the congestion count for this blkg. */
679         while (old) {
680                 int cur = atomic_cmpxchg(&blkg->use_delay, old, 0);
681                 if (cur == old) {
682                         atomic_dec(&blkg->blkcg->css.cgroup->congestion_count);
683                         break;
684                 }
685                 old = cur;
686         }
687 }
688
689 void blkcg_add_delay(struct blkcg_gq *blkg, u64 now, u64 delta);
690 void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay);
691 void blkcg_maybe_throttle_current(void);
692 #else   /* CONFIG_BLK_CGROUP */
693
694 struct blkcg {
695 };
696
697 struct blkg_policy_data {
698 };
699
700 struct blkcg_policy_data {
701 };
702
703 struct blkcg_gq {
704 };
705
706 struct blkcg_policy {
707 };
708
709 #define blkcg_root_css  ((struct cgroup_subsys_state *)ERR_PTR(-EINVAL))
710
711 static inline void blkcg_maybe_throttle_current(void) { }
712 static inline bool blk_cgroup_congested(void) { return false; }
713
714 #ifdef CONFIG_BLOCK
715
716 static inline void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay) { }
717
718 static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, void *key) { return NULL; }
719 static inline struct blkcg_gq *blk_queue_root_blkg(struct request_queue *q)
720 { return NULL; }
721 static inline int blkcg_init_queue(struct request_queue *q) { return 0; }
722 static inline void blkcg_exit_queue(struct request_queue *q) { }
723 static inline int blkcg_policy_register(struct blkcg_policy *pol) { return 0; }
724 static inline void blkcg_policy_unregister(struct blkcg_policy *pol) { }
725 static inline int blkcg_activate_policy(struct request_queue *q,
726                                         const struct blkcg_policy *pol) { return 0; }
727 static inline void blkcg_deactivate_policy(struct request_queue *q,
728                                            const struct blkcg_policy *pol) { }
729
730 static inline struct blkcg *__bio_blkcg(struct bio *bio) { return NULL; }
731 static inline struct blkcg *bio_blkcg(struct bio *bio) { return NULL; }
732
733 static inline struct blkg_policy_data *blkg_to_pd(struct blkcg_gq *blkg,
734                                                   struct blkcg_policy *pol) { return NULL; }
735 static inline struct blkcg_gq *pd_to_blkg(struct blkg_policy_data *pd) { return NULL; }
736 static inline char *blkg_path(struct blkcg_gq *blkg) { return NULL; }
737 static inline void blkg_get(struct blkcg_gq *blkg) { }
738 static inline void blkg_put(struct blkcg_gq *blkg) { }
739
740 static inline bool blkcg_punt_bio_submit(struct bio *bio) { return false; }
741 static inline void blkcg_bio_issue_init(struct bio *bio) { }
742 static inline bool blkcg_bio_issue_check(struct request_queue *q,
743                                          struct bio *bio) { return true; }
744
745 #define blk_queue_for_each_rl(rl, q)    \
746         for ((rl) = &(q)->root_rl; (rl); (rl) = NULL)
747
748 #endif  /* CONFIG_BLOCK */
749 #endif  /* CONFIG_BLK_CGROUP */
750 #endif  /* _BLK_CGROUP_H */