blk-integrity: register sysfs attributes on struct device
[linux-block.git] / lib / percpu_counter.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
3cbc5640
RT
2/*
3 * Fast batching percpu counters.
4 */
5
6#include <linux/percpu_counter.h>
c67ad917
AM
7#include <linux/mutex.h>
8#include <linux/init.h>
9#include <linux/cpu.h>
3cbc5640 10#include <linux/module.h>
e2852ae8 11#include <linux/debugobjects.h>
3cbc5640 12
3a8495c7 13#ifdef CONFIG_HOTPLUG_CPU
c67ad917 14static LIST_HEAD(percpu_counters);
d87aae2f 15static DEFINE_SPINLOCK(percpu_counters_lock);
3a8495c7 16#endif
c67ad917 17
e2852ae8
TH
18#ifdef CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER
19
f9e62f31 20static const struct debug_obj_descr percpu_counter_debug_descr;
e2852ae8 21
d99b1d89 22static bool percpu_counter_fixup_free(void *addr, enum debug_obj_state state)
e2852ae8
TH
23{
24 struct percpu_counter *fbc = addr;
25
26 switch (state) {
27 case ODEBUG_STATE_ACTIVE:
28 percpu_counter_destroy(fbc);
29 debug_object_free(fbc, &percpu_counter_debug_descr);
d99b1d89 30 return true;
e2852ae8 31 default:
d99b1d89 32 return false;
e2852ae8
TH
33 }
34}
35
f9e62f31 36static const struct debug_obj_descr percpu_counter_debug_descr = {
e2852ae8
TH
37 .name = "percpu_counter",
38 .fixup_free = percpu_counter_fixup_free,
39};
40
41static inline void debug_percpu_counter_activate(struct percpu_counter *fbc)
42{
43 debug_object_init(fbc, &percpu_counter_debug_descr);
44 debug_object_activate(fbc, &percpu_counter_debug_descr);
45}
46
47static inline void debug_percpu_counter_deactivate(struct percpu_counter *fbc)
48{
49 debug_object_deactivate(fbc, &percpu_counter_debug_descr);
50 debug_object_free(fbc, &percpu_counter_debug_descr);
51}
52
53#else /* CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER */
54static inline void debug_percpu_counter_activate(struct percpu_counter *fbc)
55{ }
56static inline void debug_percpu_counter_deactivate(struct percpu_counter *fbc)
57{ }
58#endif /* CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER */
59
3a587f47
PZ
60void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
61{
62 int cpu;
098faf58 63 unsigned long flags;
3a587f47 64
098faf58 65 raw_spin_lock_irqsave(&fbc->lock, flags);
3a587f47
PZ
66 for_each_possible_cpu(cpu) {
67 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
68 *pcount = 0;
69 }
70 fbc->count = amount;
098faf58 71 raw_spin_unlock_irqrestore(&fbc->lock, flags);
3a587f47
PZ
72}
73EXPORT_SYMBOL(percpu_counter_set);
74
db65a867 75/*
805afd83
MS
76 * local_irq_save() is needed to make the function irq safe:
77 * - The slow path would be ok as protected by an irq-safe spinlock.
78 * - this_cpu_add would be ok as it is irq-safe by definition.
79 * But:
80 * The decision slow path/fast path and the actual update must be atomic, too.
81 * Otherwise a call in process context could check the current values and
82 * decide that the fast path can be used. If now an interrupt occurs before
83 * the this_cpu_add(), and the interrupt updates this_cpu(*fbc->counters),
84 * then the this_cpu_add() that is executed after the interrupt has completed
85 * can produce values larger than "batch" or even overflows.
3e8f399d 86 */
104b4e51 87void percpu_counter_add_batch(struct percpu_counter *fbc, s64 amount, s32 batch)
3cbc5640 88{
20e89767 89 s64 count;
805afd83 90 unsigned long flags;
3cbc5640 91
805afd83 92 local_irq_save(flags);
819a72af 93 count = __this_cpu_read(*fbc->counters) + amount;
1d339638 94 if (abs(count) >= batch) {
805afd83 95 raw_spin_lock(&fbc->lock);
3cbc5640 96 fbc->count += count;
d1969a84 97 __this_cpu_sub(*fbc->counters, count - amount);
805afd83 98 raw_spin_unlock(&fbc->lock);
3cbc5640 99 } else {
74e72f89 100 this_cpu_add(*fbc->counters, amount);
3cbc5640 101 }
805afd83 102 local_irq_restore(flags);
3cbc5640 103}
104b4e51 104EXPORT_SYMBOL(percpu_counter_add_batch);
3cbc5640 105
0a4954a8
FT
106/*
107 * For percpu_counter with a big batch, the devication of its count could
108 * be big, and there is requirement to reduce the deviation, like when the
109 * counter's batch could be runtime decreased to get a better accuracy,
110 * which can be achieved by running this sync function on each CPU.
111 */
112void percpu_counter_sync(struct percpu_counter *fbc)
113{
114 unsigned long flags;
115 s64 count;
116
117 raw_spin_lock_irqsave(&fbc->lock, flags);
118 count = __this_cpu_read(*fbc->counters);
119 fbc->count += count;
120 __this_cpu_sub(*fbc->counters, count);
121 raw_spin_unlock_irqrestore(&fbc->lock, flags);
122}
123EXPORT_SYMBOL(percpu_counter_sync);
124
f689054a
SB
125static s64 __percpu_counter_sum_mask(struct percpu_counter *fbc,
126 const struct cpumask *cpu_mask)
3cbc5640 127{
0216bfcf 128 s64 ret;
3cbc5640 129 int cpu;
098faf58 130 unsigned long flags;
3cbc5640 131
098faf58 132 raw_spin_lock_irqsave(&fbc->lock, flags);
3cbc5640 133 ret = fbc->count;
f689054a 134 for_each_cpu(cpu, cpu_mask) {
0216bfcf 135 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
3cbc5640
RT
136 ret += *pcount;
137 }
098faf58 138 raw_spin_unlock_irqrestore(&fbc->lock, flags);
bf1d89c8 139 return ret;
3cbc5640 140}
f689054a
SB
141
142/*
143 * Add up all the per-cpu counts, return the result. This is a more accurate
144 * but much slower version of percpu_counter_read_positive()
145 */
146s64 __percpu_counter_sum(struct percpu_counter *fbc)
147{
148 return __percpu_counter_sum_mask(fbc, cpu_online_mask);
149}
bf1d89c8 150EXPORT_SYMBOL(__percpu_counter_sum);
c67ad917 151
f689054a
SB
152/*
153 * This is slower version of percpu_counter_sum as it traverses all possible
154 * cpus. Use this only in the cases where accurate data is needed in the
155 * presense of CPUs getting offlined.
156 */
157s64 percpu_counter_sum_all(struct percpu_counter *fbc)
158{
159 return __percpu_counter_sum_mask(fbc, cpu_possible_mask);
160}
161EXPORT_SYMBOL(percpu_counter_sum_all);
162
908c7f19 163int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp,
ea319518 164 struct lock_class_key *key)
c67ad917 165{
ebd8fef3
TH
166 unsigned long flags __maybe_unused;
167
f032a450 168 raw_spin_lock_init(&fbc->lock);
ea319518 169 lockdep_set_class(&fbc->lock, key);
c67ad917 170 fbc->count = amount;
908c7f19 171 fbc->counters = alloc_percpu_gfp(s32, gfp);
833f4077
PZ
172 if (!fbc->counters)
173 return -ENOMEM;
e2852ae8
TH
174
175 debug_percpu_counter_activate(fbc);
176
c67ad917 177#ifdef CONFIG_HOTPLUG_CPU
8474b591 178 INIT_LIST_HEAD(&fbc->list);
ebd8fef3 179 spin_lock_irqsave(&percpu_counters_lock, flags);
c67ad917 180 list_add(&fbc->list, &percpu_counters);
ebd8fef3 181 spin_unlock_irqrestore(&percpu_counters_lock, flags);
c67ad917 182#endif
833f4077 183 return 0;
c67ad917 184}
ea319518 185EXPORT_SYMBOL(__percpu_counter_init);
c67ad917
AM
186
187void percpu_counter_destroy(struct percpu_counter *fbc)
188{
ebd8fef3
TH
189 unsigned long flags __maybe_unused;
190
833f4077
PZ
191 if (!fbc->counters)
192 return;
193
e2852ae8
TH
194 debug_percpu_counter_deactivate(fbc);
195
c67ad917 196#ifdef CONFIG_HOTPLUG_CPU
ebd8fef3 197 spin_lock_irqsave(&percpu_counters_lock, flags);
c67ad917 198 list_del(&fbc->list);
ebd8fef3 199 spin_unlock_irqrestore(&percpu_counters_lock, flags);
c67ad917 200#endif
fd3d664f
ED
201 free_percpu(fbc->counters);
202 fbc->counters = NULL;
c67ad917
AM
203}
204EXPORT_SYMBOL(percpu_counter_destroy);
205
179f7ebf
ED
206int percpu_counter_batch __read_mostly = 32;
207EXPORT_SYMBOL(percpu_counter_batch);
208
5588f5af 209static int compute_batch_value(unsigned int cpu)
179f7ebf
ED
210{
211 int nr = num_online_cpus();
212
213 percpu_counter_batch = max(32, nr*2);
5588f5af 214 return 0;
179f7ebf
ED
215}
216
5588f5af 217static int percpu_counter_cpu_dead(unsigned int cpu)
c67ad917 218{
179f7ebf 219#ifdef CONFIG_HOTPLUG_CPU
c67ad917
AM
220 struct percpu_counter *fbc;
221
5588f5af 222 compute_batch_value(cpu);
c67ad917 223
ebd8fef3 224 spin_lock_irq(&percpu_counters_lock);
c67ad917
AM
225 list_for_each_entry(fbc, &percpu_counters, list) {
226 s32 *pcount;
227
aaf0f2fa 228 raw_spin_lock(&fbc->lock);
c67ad917
AM
229 pcount = per_cpu_ptr(fbc->counters, cpu);
230 fbc->count += *pcount;
231 *pcount = 0;
aaf0f2fa 232 raw_spin_unlock(&fbc->lock);
c67ad917 233 }
ebd8fef3 234 spin_unlock_irq(&percpu_counters_lock);
179f7ebf 235#endif
5588f5af 236 return 0;
c67ad917
AM
237}
238
27f5e0f6
TC
239/*
240 * Compare counter against given value.
241 * Return 1 if greater, 0 if equal and -1 if less
242 */
80188b0d 243int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch)
27f5e0f6
TC
244{
245 s64 count;
246
247 count = percpu_counter_read(fbc);
248 /* Check to see if rough count will be sufficient for comparison */
80188b0d 249 if (abs(count - rhs) > (batch * num_online_cpus())) {
27f5e0f6
TC
250 if (count > rhs)
251 return 1;
252 else
253 return -1;
254 }
255 /* Need to use precise count */
256 count = percpu_counter_sum(fbc);
257 if (count > rhs)
258 return 1;
259 else if (count < rhs)
260 return -1;
261 else
262 return 0;
263}
80188b0d 264EXPORT_SYMBOL(__percpu_counter_compare);
27f5e0f6 265
c67ad917
AM
266static int __init percpu_counter_startup(void)
267{
5588f5af
SAS
268 int ret;
269
270 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "lib/percpu_cnt:online",
271 compute_batch_value, NULL);
272 WARN_ON(ret < 0);
273 ret = cpuhp_setup_state_nocalls(CPUHP_PERCPU_CNT_DEAD,
274 "lib/percpu_cnt:dead", NULL,
275 percpu_counter_cpu_dead);
276 WARN_ON(ret < 0);
c67ad917
AM
277 return 0;
278}
279module_init(percpu_counter_startup);