]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - lib/percpu_counter.c
UBUNTU: Ubuntu-4.10.0-37.41
[mirror_ubuntu-zesty-kernel.git] / lib / percpu_counter.c
CommitLineData
3cbc5640
RT
1/*
2 * Fast batching percpu counters.
3 */
4
5#include <linux/percpu_counter.h>
c67ad917
AM
6#include <linux/notifier.h>
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
20static struct debug_obj_descr percpu_counter_debug_descr;
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
36static struct debug_obj_descr percpu_counter_debug_descr = {
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
20e89767 75void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch)
3cbc5640 76{
20e89767 77 s64 count;
3cbc5640 78
ea00c30b 79 preempt_disable();
819a72af 80 count = __this_cpu_read(*fbc->counters) + amount;
252e0ba6 81 if (count >= batch || count <= -batch) {
098faf58
SL
82 unsigned long flags;
83 raw_spin_lock_irqsave(&fbc->lock, flags);
3cbc5640 84 fbc->count += count;
d1969a84 85 __this_cpu_sub(*fbc->counters, count - amount);
098faf58 86 raw_spin_unlock_irqrestore(&fbc->lock, flags);
3cbc5640 87 } else {
74e72f89 88 this_cpu_add(*fbc->counters, amount);
3cbc5640 89 }
ea00c30b 90 preempt_enable();
3cbc5640 91}
252e0ba6 92EXPORT_SYMBOL(__percpu_counter_add);
3cbc5640
RT
93
94/*
95 * Add up all the per-cpu counts, return the result. This is a more accurate
96 * but much slower version of percpu_counter_read_positive()
97 */
02d21168 98s64 __percpu_counter_sum(struct percpu_counter *fbc)
3cbc5640 99{
0216bfcf 100 s64 ret;
3cbc5640 101 int cpu;
098faf58 102 unsigned long flags;
3cbc5640 103
098faf58 104 raw_spin_lock_irqsave(&fbc->lock, flags);
3cbc5640 105 ret = fbc->count;
b4ef0296 106 for_each_online_cpu(cpu) {
0216bfcf 107 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
3cbc5640
RT
108 ret += *pcount;
109 }
098faf58 110 raw_spin_unlock_irqrestore(&fbc->lock, flags);
bf1d89c8 111 return ret;
3cbc5640 112}
bf1d89c8 113EXPORT_SYMBOL(__percpu_counter_sum);
c67ad917 114
908c7f19 115int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp,
ea319518 116 struct lock_class_key *key)
c67ad917 117{
ebd8fef3
TH
118 unsigned long flags __maybe_unused;
119
f032a450 120 raw_spin_lock_init(&fbc->lock);
ea319518 121 lockdep_set_class(&fbc->lock, key);
c67ad917 122 fbc->count = amount;
908c7f19 123 fbc->counters = alloc_percpu_gfp(s32, gfp);
833f4077
PZ
124 if (!fbc->counters)
125 return -ENOMEM;
e2852ae8
TH
126
127 debug_percpu_counter_activate(fbc);
128
c67ad917 129#ifdef CONFIG_HOTPLUG_CPU
8474b591 130 INIT_LIST_HEAD(&fbc->list);
ebd8fef3 131 spin_lock_irqsave(&percpu_counters_lock, flags);
c67ad917 132 list_add(&fbc->list, &percpu_counters);
ebd8fef3 133 spin_unlock_irqrestore(&percpu_counters_lock, flags);
c67ad917 134#endif
833f4077 135 return 0;
c67ad917 136}
ea319518 137EXPORT_SYMBOL(__percpu_counter_init);
c67ad917
AM
138
139void percpu_counter_destroy(struct percpu_counter *fbc)
140{
ebd8fef3
TH
141 unsigned long flags __maybe_unused;
142
833f4077
PZ
143 if (!fbc->counters)
144 return;
145
e2852ae8
TH
146 debug_percpu_counter_deactivate(fbc);
147
c67ad917 148#ifdef CONFIG_HOTPLUG_CPU
ebd8fef3 149 spin_lock_irqsave(&percpu_counters_lock, flags);
c67ad917 150 list_del(&fbc->list);
ebd8fef3 151 spin_unlock_irqrestore(&percpu_counters_lock, flags);
c67ad917 152#endif
fd3d664f
ED
153 free_percpu(fbc->counters);
154 fbc->counters = NULL;
c67ad917
AM
155}
156EXPORT_SYMBOL(percpu_counter_destroy);
157
179f7ebf
ED
158int percpu_counter_batch __read_mostly = 32;
159EXPORT_SYMBOL(percpu_counter_batch);
160
5588f5af 161static int compute_batch_value(unsigned int cpu)
179f7ebf
ED
162{
163 int nr = num_online_cpus();
164
165 percpu_counter_batch = max(32, nr*2);
5588f5af 166 return 0;
179f7ebf
ED
167}
168
5588f5af 169static int percpu_counter_cpu_dead(unsigned int cpu)
c67ad917 170{
179f7ebf 171#ifdef CONFIG_HOTPLUG_CPU
c67ad917
AM
172 struct percpu_counter *fbc;
173
5588f5af 174 compute_batch_value(cpu);
c67ad917 175
ebd8fef3 176 spin_lock_irq(&percpu_counters_lock);
c67ad917
AM
177 list_for_each_entry(fbc, &percpu_counters, list) {
178 s32 *pcount;
d2b20b11 179 unsigned long flags;
c67ad917 180
f032a450 181 raw_spin_lock_irqsave(&fbc->lock, flags);
c67ad917
AM
182 pcount = per_cpu_ptr(fbc->counters, cpu);
183 fbc->count += *pcount;
184 *pcount = 0;
f032a450 185 raw_spin_unlock_irqrestore(&fbc->lock, flags);
c67ad917 186 }
ebd8fef3 187 spin_unlock_irq(&percpu_counters_lock);
179f7ebf 188#endif
5588f5af 189 return 0;
c67ad917
AM
190}
191
27f5e0f6
TC
192/*
193 * Compare counter against given value.
194 * Return 1 if greater, 0 if equal and -1 if less
195 */
80188b0d 196int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch)
27f5e0f6
TC
197{
198 s64 count;
199
200 count = percpu_counter_read(fbc);
201 /* Check to see if rough count will be sufficient for comparison */
80188b0d 202 if (abs(count - rhs) > (batch * num_online_cpus())) {
27f5e0f6
TC
203 if (count > rhs)
204 return 1;
205 else
206 return -1;
207 }
208 /* Need to use precise count */
209 count = percpu_counter_sum(fbc);
210 if (count > rhs)
211 return 1;
212 else if (count < rhs)
213 return -1;
214 else
215 return 0;
216}
80188b0d 217EXPORT_SYMBOL(__percpu_counter_compare);
27f5e0f6 218
c67ad917
AM
219static int __init percpu_counter_startup(void)
220{
5588f5af
SAS
221 int ret;
222
223 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "lib/percpu_cnt:online",
224 compute_batch_value, NULL);
225 WARN_ON(ret < 0);
226 ret = cpuhp_setup_state_nocalls(CPUHP_PERCPU_CNT_DEAD,
227 "lib/percpu_cnt:dead", NULL,
228 percpu_counter_cpu_dead);
229 WARN_ON(ret < 0);
c67ad917
AM
230 return 0;
231}
232module_init(percpu_counter_startup);