2 * Fast batching percpu counters.
5 #include <linux/percpu_counter.h>
6 #include <linux/notifier.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 struct debug_obj_descr percpu_counter_debug_descr
;
22 static int 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 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
);
75 void __percpu_counter_add(struct percpu_counter
*fbc
, s64 amount
, s32 batch
)
80 count
= __this_cpu_read(*fbc
->counters
) + amount
;
81 if (count
>= batch
|| count
<= -batch
) {
83 raw_spin_lock_irqsave(&fbc
->lock
, flags
);
85 __this_cpu_sub(*fbc
->counters
, count
- amount
);
86 raw_spin_unlock_irqrestore(&fbc
->lock
, flags
);
88 this_cpu_add(*fbc
->counters
, amount
);
92 EXPORT_SYMBOL(__percpu_counter_add
);
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()
98 s64
__percpu_counter_sum(struct percpu_counter
*fbc
)
104 raw_spin_lock_irqsave(&fbc
->lock
, flags
);
106 for_each_online_cpu(cpu
) {
107 s32
*pcount
= per_cpu_ptr(fbc
->counters
, cpu
);
110 raw_spin_unlock_irqrestore(&fbc
->lock
, flags
);
113 EXPORT_SYMBOL(__percpu_counter_sum
);
115 int __percpu_counter_init(struct percpu_counter
*fbc
, s64 amount
, gfp_t gfp
,
116 struct lock_class_key
*key
)
118 unsigned long flags __maybe_unused
;
120 raw_spin_lock_init(&fbc
->lock
);
121 lockdep_set_class(&fbc
->lock
, key
);
123 fbc
->counters
= alloc_percpu_gfp(s32
, gfp
);
127 debug_percpu_counter_activate(fbc
);
129 #ifdef CONFIG_HOTPLUG_CPU
130 INIT_LIST_HEAD(&fbc
->list
);
131 spin_lock_irqsave(&percpu_counters_lock
, flags
);
132 list_add(&fbc
->list
, &percpu_counters
);
133 spin_unlock_irqrestore(&percpu_counters_lock
, flags
);
137 EXPORT_SYMBOL(__percpu_counter_init
);
139 void percpu_counter_destroy(struct percpu_counter
*fbc
)
141 unsigned long flags __maybe_unused
;
146 debug_percpu_counter_deactivate(fbc
);
148 #ifdef CONFIG_HOTPLUG_CPU
149 spin_lock_irqsave(&percpu_counters_lock
, flags
);
150 list_del(&fbc
->list
);
151 spin_unlock_irqrestore(&percpu_counters_lock
, flags
);
153 free_percpu(fbc
->counters
);
154 fbc
->counters
= NULL
;
156 EXPORT_SYMBOL(percpu_counter_destroy
);
158 int percpu_counter_batch __read_mostly
= 32;
159 EXPORT_SYMBOL(percpu_counter_batch
);
161 static void compute_batch_value(void)
163 int nr
= num_online_cpus();
165 percpu_counter_batch
= max(32, nr
*2);
168 static int percpu_counter_hotcpu_callback(struct notifier_block
*nb
,
169 unsigned long action
, void *hcpu
)
171 #ifdef CONFIG_HOTPLUG_CPU
173 struct percpu_counter
*fbc
;
175 compute_batch_value();
176 if (action
!= CPU_DEAD
&& action
!= CPU_DEAD_FROZEN
)
179 cpu
= (unsigned long)hcpu
;
180 spin_lock_irq(&percpu_counters_lock
);
181 list_for_each_entry(fbc
, &percpu_counters
, list
) {
185 raw_spin_lock_irqsave(&fbc
->lock
, flags
);
186 pcount
= per_cpu_ptr(fbc
->counters
, cpu
);
187 fbc
->count
+= *pcount
;
189 raw_spin_unlock_irqrestore(&fbc
->lock
, flags
);
191 spin_unlock_irq(&percpu_counters_lock
);
197 * Compare counter against given value.
198 * Return 1 if greater, 0 if equal and -1 if less
200 int __percpu_counter_compare(struct percpu_counter
*fbc
, s64 rhs
, s32 batch
)
204 count
= percpu_counter_read(fbc
);
205 /* Check to see if rough count will be sufficient for comparison */
206 if (abs(count
- rhs
) > (batch
* num_online_cpus())) {
212 /* Need to use precise count */
213 count
= percpu_counter_sum(fbc
);
216 else if (count
< rhs
)
221 EXPORT_SYMBOL(__percpu_counter_compare
);
223 static int __init
percpu_counter_startup(void)
225 compute_batch_value();
226 hotcpu_notifier(percpu_counter_hotcpu_callback
, 0);
229 module_init(percpu_counter_startup
);