summaryrefslogtreecommitdiffstats
path: root/block/blk-cgroup.c
diff options
context:
space:
mode:
authorDennis Zhou <dennis@kernel.org>2018-12-05 12:10:39 -0500
committerJens Axboe <axboe@kernel.dk>2018-12-08 00:26:38 -0500
commit7754f669ffde3919e398a9e591cd7510d6cf4e73 (patch)
tree7d32cf5b86590053afa34b479bdcb1210006dfed /block/blk-cgroup.c
parent7fcf2b033b84e261dca283bc2911aaea4b07b525 (diff)
blkcg: rename blkg_try_get() to blkg_tryget()
blkg reference counting now uses percpu_ref rather than atomic_t. Let's make this consistent with css_tryget. This renames blkg_try_get to blkg_tryget and now returns a bool rather than the blkg or %NULL. Signed-off-by: Dennis Zhou <dennis@kernel.org> Reviewed-by: Josef Bacik <josef@toxicpanda.com> Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-cgroup.c')
-rw-r--r--block/blk-cgroup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c
index 2ca7611fe274..6bd0619a7d6e 100644
--- a/block/blk-cgroup.c
+++ b/block/blk-cgroup.c
@@ -1736,8 +1736,7 @@ void blkcg_maybe_throttle_current(void)
1736 blkg = blkg_lookup(blkcg, q); 1736 blkg = blkg_lookup(blkcg, q);
1737 if (!blkg) 1737 if (!blkg)
1738 goto out; 1738 goto out;
1739 blkg = blkg_try_get(blkg); 1739 if (!blkg_tryget(blkg))
1740 if (!blkg)
1741 goto out; 1740 goto out;
1742 rcu_read_unlock(); 1741 rcu_read_unlock();
1743 1742