1 /* SPDX-License-Identifier: GPL-2.0
3 * Legacy blkg rwstat helpers enabled by CONFIG_BLK_CGROUP_RWSTAT.
4 * Do not use in new code.
6 #ifndef _BLK_CGROUP_RWSTAT_H
7 #define _BLK_CGROUP_RWSTAT_H
9 #include "blk-cgroup.h"
11 enum blkg_rwstat_type {
19 BLKG_RWSTAT_TOTAL = BLKG_RWSTAT_NR,
23 * blkg_[rw]stat->aux_cnt is excluded for local stats but included for
24 * recursive. Used to carry stats of dead children.
27 struct percpu_counter cpu_cnt[BLKG_RWSTAT_NR];
28 atomic64_t aux_cnt[BLKG_RWSTAT_NR];
31 struct blkg_rwstat_sample {
32 u64 cnt[BLKG_RWSTAT_NR];
35 static inline u64 blkg_rwstat_read_counter(struct blkg_rwstat *rwstat,
38 return atomic64_read(&rwstat->aux_cnt[idx]) +
39 percpu_counter_sum_positive(&rwstat->cpu_cnt[idx]);
42 int blkg_rwstat_init(struct blkg_rwstat *rwstat, gfp_t gfp);
43 void blkg_rwstat_exit(struct blkg_rwstat *rwstat);
44 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
45 const struct blkg_rwstat_sample *rwstat);
46 u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
48 void blkg_rwstat_recursive_sum(struct blkcg_gq *blkg, struct blkcg_policy *pol,
49 int off, struct blkg_rwstat_sample *sum);
53 * blkg_rwstat_add - add a value to a blkg_rwstat
54 * @rwstat: target blkg_rwstat
55 * @op: REQ_OP and flags
58 * Add @val to @rwstat. The counters are chosen according to @rw. The
59 * caller is responsible for synchronizing calls to this function.
61 static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat,
62 blk_opf_t opf, uint64_t val)
64 struct percpu_counter *cnt;
66 if (op_is_discard(opf))
67 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_DISCARD];
68 else if (op_is_write(opf))
69 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_WRITE];
71 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_READ];
73 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
76 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_SYNC];
78 cnt = &rwstat->cpu_cnt[BLKG_RWSTAT_ASYNC];
80 percpu_counter_add_batch(cnt, val, BLKG_STAT_CPU_BATCH);
84 * blkg_rwstat_read - read the current values of a blkg_rwstat
85 * @rwstat: blkg_rwstat to read
87 * Read the current snapshot of @rwstat and return it in the aux counts.
89 static inline void blkg_rwstat_read(struct blkg_rwstat *rwstat,
90 struct blkg_rwstat_sample *result)
94 for (i = 0; i < BLKG_RWSTAT_NR; i++)
96 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]);
100 * blkg_rwstat_total - read the total count of a blkg_rwstat
101 * @rwstat: blkg_rwstat to read
103 * Return the total count of @rwstat regardless of the IO direction. This
104 * function can be called without synchronization and takes care of u64
107 static inline uint64_t blkg_rwstat_total(struct blkg_rwstat *rwstat)
109 struct blkg_rwstat_sample tmp = { };
111 blkg_rwstat_read(rwstat, &tmp);
112 return tmp.cnt[BLKG_RWSTAT_READ] + tmp.cnt[BLKG_RWSTAT_WRITE];
116 * blkg_rwstat_reset - reset a blkg_rwstat
117 * @rwstat: blkg_rwstat to reset
119 static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat)
123 for (i = 0; i < BLKG_RWSTAT_NR; i++) {
124 percpu_counter_set(&rwstat->cpu_cnt[i], 0);
125 atomic64_set(&rwstat->aux_cnt[i], 0);
130 * blkg_rwstat_add_aux - add a blkg_rwstat into another's aux count
131 * @to: the destination blkg_rwstat
134 * Add @from's count including the aux one to @to's aux count.
136 static inline void blkg_rwstat_add_aux(struct blkg_rwstat *to,
137 struct blkg_rwstat *from)
139 u64 sum[BLKG_RWSTAT_NR];
142 for (i = 0; i < BLKG_RWSTAT_NR; i++)
143 sum[i] = percpu_counter_sum_positive(&from->cpu_cnt[i]);
145 for (i = 0; i < BLKG_RWSTAT_NR; i++)
146 atomic64_add(sum[i] + atomic64_read(&from->aux_cnt[i]),
149 #endif /* _BLK_CGROUP_RWSTAT_H */