Skip to content

Commit 6bad9b2

Browse files
KAGA-KOKOaxboe
authored andcommitted
blkcg: Introduce blkg_root_lookup()
This new function will be used in a later patch to verify whether a queue has been dissociated from the cgroup controller before being released. Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com> Cc: Tejun Heo <tj@kernel.org> Cc: Christoph Hellwig <hch@lst.de> Cc: Ming Lei <ming.lei@redhat.com> Cc: Omar Sandoval <osandov@fb.com> Cc: Johannes Thumshirn <jthumshirn@suse.de> Cc: Alexandru Moise <00moses.alexander00@gmail.com> Cc: Joseph Qi <joseph.qi@linux.alibaba.com> Cc: <stable@vger.kernel.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
1 parent b1f4267 commit 6bad9b2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

include/linux/blk-cgroup.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,23 @@ static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg,
341341
return __blkg_lookup(blkcg, q, false);
342342
}
343343

344+
/**
345+
* blkg_lookup - look up blkg for the specified request queue
346+
* @q: request_queue of interest
347+
*
348+
* Lookup blkg for @q at the root level. See also blkg_lookup().
349+
*/
350+
static inline struct blkcg_gq *blkg_root_lookup(struct request_queue *q)
351+
{
352+
struct blkcg_gq *blkg;
353+
354+
rcu_read_lock();
355+
blkg = blkg_lookup(&blkcg_root, q);
356+
rcu_read_unlock();
357+
358+
return blkg;
359+
}
360+
344361
/**
345362
* blkg_to_pdata - get policy private data
346363
* @blkg: blkg of interest
@@ -864,6 +881,7 @@ static inline bool blk_cgroup_congested(void) { return false; }
864881
static inline void blkcg_schedule_throttle(struct request_queue *q, bool use_memdelay) { }
865882

866883
static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, void *key) { return NULL; }
884+
static inline struct blkcg_gq *blkg_root_lookup(struct request_queue *q) { return NULL; }
867885
static inline int blkcg_init_queue(struct request_queue *q) { return 0; }
868886
static inline void blkcg_drain_queue(struct request_queue *q) { }
869887
static inline void blkcg_exit_queue(struct request_queue *q) { }

0 commit comments

Comments
 (0)