blob: ed610b75dc322935f8282bf4bddf0a0717fb852d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -07002/*
3 * Fast batching percpu counters.
4 */
5
6#include <linux/percpu_counter.h>
Andrew Mortonc67ad912007-07-15 23:39:51 -07007#include <linux/mutex.h>
8#include <linux/init.h>
9#include <linux/cpu.h>
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070010#include <linux/module.h>
Tejun Heoe2852ae2010-10-26 14:23:05 -070011#include <linux/debugobjects.h>
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070012
Glauber Costa3a8495c2011-10-31 17:12:34 -070013#ifdef CONFIG_HOTPLUG_CPU
Andrew Mortonc67ad912007-07-15 23:39:51 -070014static LIST_HEAD(percpu_counters);
Al Virod87aae22012-07-31 09:28:31 +040015static DEFINE_SPINLOCK(percpu_counters_lock);
Glauber Costa3a8495c2011-10-31 17:12:34 -070016#endif
Andrew Mortonc67ad912007-07-15 23:39:51 -070017
Tejun Heoe2852ae2010-10-26 14:23:05 -070018#ifdef CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER
19
Stephen Boydf9e62f32020-08-14 17:40:27 -070020static const struct debug_obj_descr percpu_counter_debug_descr;
Tejun Heoe2852ae2010-10-26 14:23:05 -070021
Du, Changbind99b1d82016-05-19 17:09:35 -070022static bool percpu_counter_fixup_free(void *addr, enum debug_obj_state state)
Tejun Heoe2852ae2010-10-26 14:23:05 -070023{
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);
Du, Changbind99b1d82016-05-19 17:09:35 -070030 return true;
Tejun Heoe2852ae2010-10-26 14:23:05 -070031 default:
Du, Changbind99b1d82016-05-19 17:09:35 -070032 return false;
Tejun Heoe2852ae2010-10-26 14:23:05 -070033 }
34}
35
Stephen Boydf9e62f32020-08-14 17:40:27 -070036static const struct debug_obj_descr percpu_counter_debug_descr = {
Tejun Heoe2852ae2010-10-26 14:23:05 -070037 .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
Peter Zijlstra3a587f42007-10-16 23:25:44 -070060void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
61{
62 int cpu;
Shaohua Li098faf52013-10-24 09:06:45 +010063 unsigned long flags;
Peter Zijlstra3a587f42007-10-16 23:25:44 -070064
Shaohua Li098faf52013-10-24 09:06:45 +010065 raw_spin_lock_irqsave(&fbc->lock, flags);
Peter Zijlstra3a587f42007-10-16 23:25:44 -070066 for_each_possible_cpu(cpu) {
67 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
68 *pcount = 0;
69 }
70 fbc->count = amount;
Shaohua Li098faf52013-10-24 09:06:45 +010071 raw_spin_unlock_irqrestore(&fbc->lock, flags);
Peter Zijlstra3a587f42007-10-16 23:25:44 -070072}
73EXPORT_SYMBOL(percpu_counter_set);
74
Alex Shidb65a862021-05-06 18:03:43 -070075/*
Nikolay Borisov3e8f3992017-07-12 14:37:51 -070076 * This function is both preempt and irq safe. The former is due to explicit
77 * preemption disable. The latter is guaranteed by the fact that the slow path
78 * is explicitly protected by an irq-safe spinlock whereas the fast patch uses
79 * this_cpu_add which is irq-safe by definition. Hence there is no need muck
80 * with irq state before calling this one
81 */
Nikolay Borisov104b4e52017-06-20 21:01:20 +030082void percpu_counter_add_batch(struct percpu_counter *fbc, s64 amount, s32 batch)
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070083{
Peter Zijlstra20e89762007-10-16 23:25:43 -070084 s64 count;
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070085
Christoph Lameterea00c302010-10-26 14:23:09 -070086 preempt_disable();
Christoph Lameter819a72a2010-12-06 11:16:19 -060087 count = __this_cpu_read(*fbc->counters) + amount;
Miaohe Lin1d339632020-10-15 20:11:28 -070088 if (abs(count) >= batch) {
Shaohua Li098faf52013-10-24 09:06:45 +010089 unsigned long flags;
90 raw_spin_lock_irqsave(&fbc->lock, flags);
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070091 fbc->count += count;
Hugh Dickinsd1969a84d2014-01-16 15:26:48 -080092 __this_cpu_sub(*fbc->counters, count - amount);
Shaohua Li098faf52013-10-24 09:06:45 +010093 raw_spin_unlock_irqrestore(&fbc->lock, flags);
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070094 } else {
Ming Lei74e72f82014-01-14 17:56:42 -080095 this_cpu_add(*fbc->counters, amount);
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070096 }
Christoph Lameterea00c302010-10-26 14:23:09 -070097 preempt_enable();
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -070098}
Nikolay Borisov104b4e52017-06-20 21:01:20 +030099EXPORT_SYMBOL(percpu_counter_add_batch);
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700100
101/*
Feng Tang0a4954a2020-08-06 23:23:11 -0700102 * For percpu_counter with a big batch, the devication of its count could
103 * be big, and there is requirement to reduce the deviation, like when the
104 * counter's batch could be runtime decreased to get a better accuracy,
105 * which can be achieved by running this sync function on each CPU.
106 */
107void percpu_counter_sync(struct percpu_counter *fbc)
108{
109 unsigned long flags;
110 s64 count;
111
112 raw_spin_lock_irqsave(&fbc->lock, flags);
113 count = __this_cpu_read(*fbc->counters);
114 fbc->count += count;
115 __this_cpu_sub(*fbc->counters, count);
116 raw_spin_unlock_irqrestore(&fbc->lock, flags);
117}
118EXPORT_SYMBOL(percpu_counter_sync);
119
120/*
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700121 * Add up all the per-cpu counts, return the result. This is a more accurate
122 * but much slower version of percpu_counter_read_positive()
123 */
Andrew Morton02d21162008-12-09 13:14:14 -0800124s64 __percpu_counter_sum(struct percpu_counter *fbc)
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700125{
Mingming Cao0216bfc2006-06-23 02:05:41 -0700126 s64 ret;
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700127 int cpu;
Shaohua Li098faf52013-10-24 09:06:45 +0100128 unsigned long flags;
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700129
Shaohua Li098faf52013-10-24 09:06:45 +0100130 raw_spin_lock_irqsave(&fbc->lock, flags);
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700131 ret = fbc->count;
Andrew Mortonb4ef0292007-07-15 23:39:51 -0700132 for_each_online_cpu(cpu) {
Mingming Cao0216bfc2006-06-23 02:05:41 -0700133 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700134 ret += *pcount;
135 }
Shaohua Li098faf52013-10-24 09:06:45 +0100136 raw_spin_unlock_irqrestore(&fbc->lock, flags);
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -0700137 return ret;
Ravikiran G Thirumalai3cbc5642006-06-23 02:05:40 -0700138}
Peter Zijlstrabf1d89c2007-10-16 23:25:45 -0700139EXPORT_SYMBOL(__percpu_counter_sum);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700140
Tejun Heo908c7f12014-09-08 09:51:29 +0900141int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp,
Peter Zijlstraea319512008-12-26 15:08:55 +0100142 struct lock_class_key *key)
Andrew Mortonc67ad912007-07-15 23:39:51 -0700143{
Tejun Heoebd8fef2014-09-08 09:51:29 +0900144 unsigned long flags __maybe_unused;
145
Thomas Gleixnerf032a452009-07-25 16:21:48 +0200146 raw_spin_lock_init(&fbc->lock);
Peter Zijlstraea319512008-12-26 15:08:55 +0100147 lockdep_set_class(&fbc->lock, key);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700148 fbc->count = amount;
Tejun Heo908c7f12014-09-08 09:51:29 +0900149 fbc->counters = alloc_percpu_gfp(s32, gfp);
Peter Zijlstra833f4072007-10-16 23:25:45 -0700150 if (!fbc->counters)
151 return -ENOMEM;
Tejun Heoe2852ae2010-10-26 14:23:05 -0700152
153 debug_percpu_counter_activate(fbc);
154
Andrew Mortonc67ad912007-07-15 23:39:51 -0700155#ifdef CONFIG_HOTPLUG_CPU
Masanori ITOH8474b592010-10-26 14:21:20 -0700156 INIT_LIST_HEAD(&fbc->list);
Tejun Heoebd8fef2014-09-08 09:51:29 +0900157 spin_lock_irqsave(&percpu_counters_lock, flags);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700158 list_add(&fbc->list, &percpu_counters);
Tejun Heoebd8fef2014-09-08 09:51:29 +0900159 spin_unlock_irqrestore(&percpu_counters_lock, flags);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700160#endif
Peter Zijlstra833f4072007-10-16 23:25:45 -0700161 return 0;
Andrew Mortonc67ad912007-07-15 23:39:51 -0700162}
Peter Zijlstraea319512008-12-26 15:08:55 +0100163EXPORT_SYMBOL(__percpu_counter_init);
Peter Zijlstradc62a302007-10-16 23:25:46 -0700164
Andrew Mortonc67ad912007-07-15 23:39:51 -0700165void percpu_counter_destroy(struct percpu_counter *fbc)
166{
Tejun Heoebd8fef2014-09-08 09:51:29 +0900167 unsigned long flags __maybe_unused;
168
Peter Zijlstra833f4072007-10-16 23:25:45 -0700169 if (!fbc->counters)
170 return;
171
Tejun Heoe2852ae2010-10-26 14:23:05 -0700172 debug_percpu_counter_deactivate(fbc);
173
Andrew Mortonc67ad912007-07-15 23:39:51 -0700174#ifdef CONFIG_HOTPLUG_CPU
Tejun Heoebd8fef2014-09-08 09:51:29 +0900175 spin_lock_irqsave(&percpu_counters_lock, flags);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700176 list_del(&fbc->list);
Tejun Heoebd8fef2014-09-08 09:51:29 +0900177 spin_unlock_irqrestore(&percpu_counters_lock, flags);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700178#endif
Eric Dumazetfd3d6642008-12-09 13:14:11 -0800179 free_percpu(fbc->counters);
180 fbc->counters = NULL;
Andrew Mortonc67ad912007-07-15 23:39:51 -0700181}
182EXPORT_SYMBOL(percpu_counter_destroy);
183
Eric Dumazet179f7eb2009-01-06 14:41:04 -0800184int percpu_counter_batch __read_mostly = 32;
185EXPORT_SYMBOL(percpu_counter_batch);
186
Sebastian Andrzej Siewior5588f5a2016-11-03 15:50:00 +0100187static int compute_batch_value(unsigned int cpu)
Eric Dumazet179f7eb2009-01-06 14:41:04 -0800188{
189 int nr = num_online_cpus();
190
191 percpu_counter_batch = max(32, nr*2);
Sebastian Andrzej Siewior5588f5a2016-11-03 15:50:00 +0100192 return 0;
Eric Dumazet179f7eb2009-01-06 14:41:04 -0800193}
194
Sebastian Andrzej Siewior5588f5a2016-11-03 15:50:00 +0100195static int percpu_counter_cpu_dead(unsigned int cpu)
Andrew Mortonc67ad912007-07-15 23:39:51 -0700196{
Eric Dumazet179f7eb2009-01-06 14:41:04 -0800197#ifdef CONFIG_HOTPLUG_CPU
Andrew Mortonc67ad912007-07-15 23:39:51 -0700198 struct percpu_counter *fbc;
199
Sebastian Andrzej Siewior5588f5a2016-11-03 15:50:00 +0100200 compute_batch_value(cpu);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700201
Tejun Heoebd8fef2014-09-08 09:51:29 +0900202 spin_lock_irq(&percpu_counters_lock);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700203 list_for_each_entry(fbc, &percpu_counters, list) {
204 s32 *pcount;
205
Eric Dumazetaaf0f2f2017-01-20 06:34:22 -0800206 raw_spin_lock(&fbc->lock);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700207 pcount = per_cpu_ptr(fbc->counters, cpu);
208 fbc->count += *pcount;
209 *pcount = 0;
Eric Dumazetaaf0f2f2017-01-20 06:34:22 -0800210 raw_spin_unlock(&fbc->lock);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700211 }
Tejun Heoebd8fef2014-09-08 09:51:29 +0900212 spin_unlock_irq(&percpu_counters_lock);
Eric Dumazet179f7eb2009-01-06 14:41:04 -0800213#endif
Sebastian Andrzej Siewior5588f5a2016-11-03 15:50:00 +0100214 return 0;
Andrew Mortonc67ad912007-07-15 23:39:51 -0700215}
216
Tim Chen27f5e0f2010-08-09 17:19:04 -0700217/*
218 * Compare counter against given value.
219 * Return 1 if greater, 0 if equal and -1 if less
220 */
Dave Chinner80188b02015-05-29 07:39:34 +1000221int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch)
Tim Chen27f5e0f2010-08-09 17:19:04 -0700222{
223 s64 count;
224
225 count = percpu_counter_read(fbc);
226 /* Check to see if rough count will be sufficient for comparison */
Dave Chinner80188b02015-05-29 07:39:34 +1000227 if (abs(count - rhs) > (batch * num_online_cpus())) {
Tim Chen27f5e0f2010-08-09 17:19:04 -0700228 if (count > rhs)
229 return 1;
230 else
231 return -1;
232 }
233 /* Need to use precise count */
234 count = percpu_counter_sum(fbc);
235 if (count > rhs)
236 return 1;
237 else if (count < rhs)
238 return -1;
239 else
240 return 0;
241}
Dave Chinner80188b02015-05-29 07:39:34 +1000242EXPORT_SYMBOL(__percpu_counter_compare);
Tim Chen27f5e0f2010-08-09 17:19:04 -0700243
Andrew Mortonc67ad912007-07-15 23:39:51 -0700244static int __init percpu_counter_startup(void)
245{
Sebastian Andrzej Siewior5588f5a2016-11-03 15:50:00 +0100246 int ret;
247
248 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "lib/percpu_cnt:online",
249 compute_batch_value, NULL);
250 WARN_ON(ret < 0);
251 ret = cpuhp_setup_state_nocalls(CPUHP_PERCPU_CNT_DEAD,
252 "lib/percpu_cnt:dead", NULL,
253 percpu_counter_cpu_dead);
254 WARN_ON(ret < 0);
Andrew Mortonc67ad912007-07-15 23:39:51 -0700255 return 0;
256}
257module_init(percpu_counter_startup);