]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
blk-cgroup: factor out a helper to read rwstat counter
authorChristoph Hellwig <hch@lst.de>
Thu, 6 Jun 2019 10:26:19 +0000 (12:26 +0200)
committerJens Axboe <axboe@kernel.dk>
Thu, 20 Jun 2019 16:32:34 +0000 (10:32 -0600)
Trying to break up the crazy statements to something readable.
Also switch to an unsigned counter as it can't ever turn negative.

Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-cgroup.c
include/linux/blk-cgroup.h

index 440797293235e8e1a477ac975144d9d3dd19e253..0778e52b1db2ae405affe3b718af53a9c0729402 100644 (file)
@@ -745,7 +745,7 @@ struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
        struct blkcg_gq *pos_blkg;
        struct cgroup_subsys_state *pos_css;
        struct blkg_rwstat sum = { };
        struct blkcg_gq *pos_blkg;
        struct cgroup_subsys_state *pos_css;
        struct blkg_rwstat sum = { };
-       int i;
+       unsigned int i;
 
        lockdep_assert_held(&blkg->q->queue_lock);
 
 
        lockdep_assert_held(&blkg->q->queue_lock);
 
@@ -762,8 +762,7 @@ struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
                        rwstat = (void *)pos_blkg + off;
 
                for (i = 0; i < BLKG_RWSTAT_NR; i++)
                        rwstat = (void *)pos_blkg + off;
 
                for (i = 0; i < BLKG_RWSTAT_NR; i++)
-                       atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
-                               percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
+                       atomic64_add(blkg_rwstat_read_counter(rwstat, i),
                                &sum.aux_cnt[i]);
        }
        rcu_read_unlock();
                                &sum.aux_cnt[i]);
        }
        rcu_read_unlock();
index 76c61318fda5b5c714cb8f2926b79c439fcb45f8..06236f56a84035b8b61154e69019e01e360c7795 100644 (file)
@@ -198,6 +198,13 @@ int blkcg_activate_policy(struct request_queue *q,
 void blkcg_deactivate_policy(struct request_queue *q,
                             const struct blkcg_policy *pol);
 
 void blkcg_deactivate_policy(struct request_queue *q,
                             const struct blkcg_policy *pol);
 
+static inline u64 blkg_rwstat_read_counter(struct blkg_rwstat *rwstat,
+               unsigned int idx)
+{
+       return atomic64_read(&rwstat->aux_cnt[idx]) +
+               percpu_counter_sum_positive(&rwstat->cpu_cnt[idx]);
+}
+
 const char *blkg_dev_name(struct blkcg_gq *blkg);
 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
                       u64 (*prfill)(struct seq_file *,
 const char *blkg_dev_name(struct blkcg_gq *blkg);
 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
                       u64 (*prfill)(struct seq_file *,