]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - lib/percpu_counter.c
lockdep: change a held lock's class
[mirror_ubuntu-artful-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
RT
10#include <linux/module.h>
11
c67ad917
AM
12#ifdef CONFIG_HOTPLUG_CPU
13static LIST_HEAD(percpu_counters);
14static DEFINE_MUTEX(percpu_counters_lock);
15#endif
16
3a587f47
PZ
17void percpu_counter_set(struct percpu_counter *fbc, s64 amount)
18{
19 int cpu;
20
21 spin_lock(&fbc->lock);
22 for_each_possible_cpu(cpu) {
23 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
24 *pcount = 0;
25 }
26 fbc->count = amount;
27 spin_unlock(&fbc->lock);
28}
29EXPORT_SYMBOL(percpu_counter_set);
30
20e89767 31void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch)
3cbc5640 32{
20e89767 33 s64 count;
0216bfcf 34 s32 *pcount;
3cbc5640
RT
35 int cpu = get_cpu();
36
37 pcount = per_cpu_ptr(fbc->counters, cpu);
38 count = *pcount + amount;
252e0ba6 39 if (count >= batch || count <= -batch) {
3cbc5640
RT
40 spin_lock(&fbc->lock);
41 fbc->count += count;
42 *pcount = 0;
43 spin_unlock(&fbc->lock);
44 } else {
45 *pcount = count;
46 }
47 put_cpu();
48}
252e0ba6 49EXPORT_SYMBOL(__percpu_counter_add);
3cbc5640
RT
50
51/*
52 * Add up all the per-cpu counts, return the result. This is a more accurate
53 * but much slower version of percpu_counter_read_positive()
54 */
1f7c14c6 55s64 __percpu_counter_sum(struct percpu_counter *fbc)
3cbc5640 56{
0216bfcf 57 s64 ret;
3cbc5640
RT
58 int cpu;
59
60 spin_lock(&fbc->lock);
61 ret = fbc->count;
b4ef0296 62 for_each_online_cpu(cpu) {
0216bfcf 63 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
3cbc5640 64 ret += *pcount;
1f7c14c6 65 *pcount = 0;
3cbc5640 66 }
1f7c14c6 67 fbc->count = ret;
e8ced39d 68
3cbc5640 69 spin_unlock(&fbc->lock);
bf1d89c8 70 return ret;
3cbc5640 71}
bf1d89c8 72EXPORT_SYMBOL(__percpu_counter_sum);
c67ad917 73
dc62a30e
PZ
74static struct lock_class_key percpu_counter_irqsafe;
75
833f4077 76int percpu_counter_init(struct percpu_counter *fbc, s64 amount)
c67ad917
AM
77{
78 spin_lock_init(&fbc->lock);
79 fbc->count = amount;
80 fbc->counters = alloc_percpu(s32);
833f4077
PZ
81 if (!fbc->counters)
82 return -ENOMEM;
c67ad917
AM
83#ifdef CONFIG_HOTPLUG_CPU
84 mutex_lock(&percpu_counters_lock);
85 list_add(&fbc->list, &percpu_counters);
86 mutex_unlock(&percpu_counters_lock);
87#endif
833f4077 88 return 0;
c67ad917
AM
89}
90EXPORT_SYMBOL(percpu_counter_init);
dc62a30e
PZ
91
92int percpu_counter_init_irq(struct percpu_counter *fbc, s64 amount)
93{
94 int err;
95
96 err = percpu_counter_init(fbc, amount);
97 if (!err)
98 lockdep_set_class(&fbc->lock, &percpu_counter_irqsafe);
99 return err;
100}
c67ad917
AM
101
102void percpu_counter_destroy(struct percpu_counter *fbc)
103{
833f4077
PZ
104 if (!fbc->counters)
105 return;
106
c67ad917 107 free_percpu(fbc->counters);
cf0ca9fe 108 fbc->counters = NULL;
c67ad917
AM
109#ifdef CONFIG_HOTPLUG_CPU
110 mutex_lock(&percpu_counters_lock);
111 list_del(&fbc->list);
112 mutex_unlock(&percpu_counters_lock);
113#endif
114}
115EXPORT_SYMBOL(percpu_counter_destroy);
116
117#ifdef CONFIG_HOTPLUG_CPU
118static int __cpuinit percpu_counter_hotcpu_callback(struct notifier_block *nb,
119 unsigned long action, void *hcpu)
120{
121 unsigned int cpu;
122 struct percpu_counter *fbc;
123
124 if (action != CPU_DEAD)
125 return NOTIFY_OK;
126
127 cpu = (unsigned long)hcpu;
128 mutex_lock(&percpu_counters_lock);
129 list_for_each_entry(fbc, &percpu_counters, list) {
130 s32 *pcount;
d2b20b11 131 unsigned long flags;
c67ad917 132
d2b20b11 133 spin_lock_irqsave(&fbc->lock, flags);
c67ad917
AM
134 pcount = per_cpu_ptr(fbc->counters, cpu);
135 fbc->count += *pcount;
136 *pcount = 0;
d2b20b11 137 spin_unlock_irqrestore(&fbc->lock, flags);
c67ad917
AM
138 }
139 mutex_unlock(&percpu_counters_lock);
140 return NOTIFY_OK;
141}
142
143static int __init percpu_counter_startup(void)
144{
145 hotcpu_notifier(percpu_counter_hotcpu_callback, 0);
146 return 0;
147}
148module_init(percpu_counter_startup);
149#endif