]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - lib/percpu_counter.c
Merge branches 'core/futexes', 'core/locking', 'core/rcu' and 'linus' into core/urgent
[linux-2.6-omap-h63xx.git] / lib / percpu_counter.c
1 /*
2  * Fast batching percpu counters.
3  */
4
5 #include <linux/percpu_counter.h>
6 #include <linux/notifier.h>
7 #include <linux/mutex.h>
8 #include <linux/init.h>
9 #include <linux/cpu.h>
10 #include <linux/module.h>
11
12 #ifdef CONFIG_HOTPLUG_CPU
13 static LIST_HEAD(percpu_counters);
14 static DEFINE_MUTEX(percpu_counters_lock);
15 #endif
16
17 void 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 }
29 EXPORT_SYMBOL(percpu_counter_set);
30
31 void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch)
32 {
33         s64 count;
34         s32 *pcount;
35         int cpu = get_cpu();
36
37         pcount = per_cpu_ptr(fbc->counters, cpu);
38         count = *pcount + amount;
39         if (count >= batch || count <= -batch) {
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 }
49 EXPORT_SYMBOL(__percpu_counter_add);
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  */
55 s64 __percpu_counter_sum(struct percpu_counter *fbc)
56 {
57         s64 ret;
58         int cpu;
59
60         spin_lock(&fbc->lock);
61         ret = fbc->count;
62         for_each_online_cpu(cpu) {
63                 s32 *pcount = per_cpu_ptr(fbc->counters, cpu);
64                 ret += *pcount;
65         }
66         spin_unlock(&fbc->lock);
67         return ret;
68 }
69 EXPORT_SYMBOL(__percpu_counter_sum);
70
71 int __percpu_counter_init(struct percpu_counter *fbc, s64 amount,
72                           struct lock_class_key *key)
73 {
74         spin_lock_init(&fbc->lock);
75         lockdep_set_class(&fbc->lock, key);
76         fbc->count = amount;
77         fbc->counters = alloc_percpu(s32);
78         if (!fbc->counters)
79                 return -ENOMEM;
80 #ifdef CONFIG_HOTPLUG_CPU
81         mutex_lock(&percpu_counters_lock);
82         list_add(&fbc->list, &percpu_counters);
83         mutex_unlock(&percpu_counters_lock);
84 #endif
85         return 0;
86 }
87 EXPORT_SYMBOL(__percpu_counter_init);
88
89 void percpu_counter_destroy(struct percpu_counter *fbc)
90 {
91         if (!fbc->counters)
92                 return;
93
94 #ifdef CONFIG_HOTPLUG_CPU
95         mutex_lock(&percpu_counters_lock);
96         list_del(&fbc->list);
97         mutex_unlock(&percpu_counters_lock);
98 #endif
99         free_percpu(fbc->counters);
100         fbc->counters = NULL;
101 }
102 EXPORT_SYMBOL(percpu_counter_destroy);
103
104 #ifdef CONFIG_HOTPLUG_CPU
105 static int __cpuinit percpu_counter_hotcpu_callback(struct notifier_block *nb,
106                                         unsigned long action, void *hcpu)
107 {
108         unsigned int cpu;
109         struct percpu_counter *fbc;
110
111         if (action != CPU_DEAD)
112                 return NOTIFY_OK;
113
114         cpu = (unsigned long)hcpu;
115         mutex_lock(&percpu_counters_lock);
116         list_for_each_entry(fbc, &percpu_counters, list) {
117                 s32 *pcount;
118                 unsigned long flags;
119
120                 spin_lock_irqsave(&fbc->lock, flags);
121                 pcount = per_cpu_ptr(fbc->counters, cpu);
122                 fbc->count += *pcount;
123                 *pcount = 0;
124                 spin_unlock_irqrestore(&fbc->lock, flags);
125         }
126         mutex_unlock(&percpu_counters_lock);
127         return NOTIFY_OK;
128 }
129
130 static int __init percpu_counter_startup(void)
131 {
132         hotcpu_notifier(percpu_counter_hotcpu_callback, 0);
133         return 0;
134 }
135 module_init(percpu_counter_startup);
136 #endif