1 // SPDX-License-Identifier: GPL-2.0
3 * Fast batching percpu counters.
6 #include <linux/percpu_counter.h>
7 #include <linux/mutex.h>
8 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/debugobjects.h>
13 #ifdef CONFIG_HOTPLUG_CPU
14 static LIST_HEAD(percpu_counters);
15 static DEFINE_SPINLOCK(percpu_counters_lock);
18 #ifdef CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER
20 static const struct debug_obj_descr percpu_counter_debug_descr;
22 static bool percpu_counter_fixup_free(void *addr, enum debug_obj_state state)
24 struct percpu_counter *fbc = addr;
27 case ODEBUG_STATE_ACTIVE:
28 percpu_counter_destroy(fbc);
29 debug_object_free(fbc, &percpu_counter_debug_descr);
36 static const struct debug_obj_descr percpu_counter_debug_descr = {
37 .name = "percpu_counter",
38 .fixup_free = percpu_counter_fixup_free,
41 static inline void debug_percpu_counter_activate(struct percpu_counter *fbc)
43 debug_object_init(fbc, &percpu_counter_debug_descr);
44 debug_object_activate(fbc, &percpu_counter_debug_descr);
47 static inline void debug_percpu_counter_deactivate(struct percpu_counter *fbc)
49 debug_object_deactivate(fbc, &percpu_counter_debug_descr);
50 debug_object_free(fbc, &percpu_counter_debug_descr);
53 #else /* CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER */
54 static inline void debug_percpu_counter_activate(struct percpu_counter *fbc)
56 static inline void debug_percpu_counter_deactivate(struct percpu_counter *fbc)
58 #endif /* CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER */
60 void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
65 raw_spin_lock_irqsave(&fbc->lock, flags);
66 for_each_possible_cpu(cpu) {
67 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
71 raw_spin_unlock_irqrestore(&fbc->lock, flags);
73 EXPORT_SYMBOL(percpu_counter_set);
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.
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.
87 void percpu_counter_add_batch(struct percpu_counter *fbc, s64 amount, s32 batch)
92 local_irq_save(flags);
93 count = __this_cpu_read(*fbc->counters) + amount;
94 if (abs(count) >= batch) {
95 raw_spin_lock(&fbc->lock);
97 __this_cpu_sub(*fbc->counters, count - amount);
98 raw_spin_unlock(&fbc->lock);
100 this_cpu_add(*fbc->counters, amount);
102 local_irq_restore(flags);
104 EXPORT_SYMBOL(percpu_counter_add_batch);
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.
112 void percpu_counter_sync(struct percpu_counter *fbc)
117 raw_spin_lock_irqsave(&fbc->lock, flags);
118 count = __this_cpu_read(*fbc->counters);
120 __this_cpu_sub(*fbc->counters, count);
121 raw_spin_unlock_irqrestore(&fbc->lock, flags);
123 EXPORT_SYMBOL(percpu_counter_sync);
125 static s64 __percpu_counter_sum_mask(struct percpu_counter *fbc,
126 const struct cpumask *cpu_mask)
132 raw_spin_lock_irqsave(&fbc->lock, flags);
134 for_each_cpu(cpu, cpu_mask) {
135 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
138 raw_spin_unlock_irqrestore(&fbc->lock, flags);
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()
146 s64 __percpu_counter_sum(struct percpu_counter *fbc)
148 return __percpu_counter_sum_mask(fbc, cpu_online_mask);
150 EXPORT_SYMBOL(__percpu_counter_sum);
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.
157 s64 percpu_counter_sum_all(struct percpu_counter *fbc)
159 return __percpu_counter_sum_mask(fbc, cpu_possible_mask);
161 EXPORT_SYMBOL(percpu_counter_sum_all);
163 int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp,
164 struct lock_class_key *key)
166 unsigned long flags __maybe_unused;
168 raw_spin_lock_init(&fbc->lock);
169 lockdep_set_class(&fbc->lock, key);
171 fbc->counters = alloc_percpu_gfp(s32, gfp);
175 debug_percpu_counter_activate(fbc);
177 #ifdef CONFIG_HOTPLUG_CPU
178 INIT_LIST_HEAD(&fbc->list);
179 spin_lock_irqsave(&percpu_counters_lock, flags);
180 list_add(&fbc->list, &percpu_counters);
181 spin_unlock_irqrestore(&percpu_counters_lock, flags);
185 EXPORT_SYMBOL(__percpu_counter_init);
187 void percpu_counter_destroy(struct percpu_counter *fbc)
189 unsigned long flags __maybe_unused;
194 debug_percpu_counter_deactivate(fbc);
196 #ifdef CONFIG_HOTPLUG_CPU
197 spin_lock_irqsave(&percpu_counters_lock, flags);
198 list_del(&fbc->list);
199 spin_unlock_irqrestore(&percpu_counters_lock, flags);
201 free_percpu(fbc->counters);
202 fbc->counters = NULL;
204 EXPORT_SYMBOL(percpu_counter_destroy);
206 int percpu_counter_batch __read_mostly = 32;
207 EXPORT_SYMBOL(percpu_counter_batch);
209 static int compute_batch_value(unsigned int cpu)
211 int nr = num_online_cpus();
213 percpu_counter_batch = max(32, nr*2);
217 static int percpu_counter_cpu_dead(unsigned int cpu)
219 #ifdef CONFIG_HOTPLUG_CPU
220 struct percpu_counter *fbc;
222 compute_batch_value(cpu);
224 spin_lock_irq(&percpu_counters_lock);
225 list_for_each_entry(fbc, &percpu_counters, list) {
228 raw_spin_lock(&fbc->lock);
229 pcount = per_cpu_ptr(fbc->counters, cpu);
230 fbc->count += *pcount;
232 raw_spin_unlock(&fbc->lock);
234 spin_unlock_irq(&percpu_counters_lock);
240 * Compare counter against given value.
241 * Return 1 if greater, 0 if equal and -1 if less
243 int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch)
247 count = percpu_counter_read(fbc);
248 /* Check to see if rough count will be sufficient for comparison */
249 if (abs(count - rhs) > (batch * num_online_cpus())) {
255 /* Need to use precise count */
256 count = percpu_counter_sum(fbc);
259 else if (count < rhs)
264 EXPORT_SYMBOL(__percpu_counter_compare);
266 static int __init percpu_counter_startup(void)
270 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "lib/percpu_cnt:online",
271 compute_batch_value, NULL);
273 ret = cpuhp_setup_state_nocalls(CPUHP_PERCPU_CNT_DEAD,
274 "lib/percpu_cnt:dead", NULL,
275 percpu_counter_cpu_dead);
279 module_init(percpu_counter_startup);