Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Fast batching percpu counters. |
| 3 | */ |
| 4 | |
| 5 | #include <linux/percpu_counter.h> |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 6 | #include <linux/notifier.h> |
| 7 | #include <linux/mutex.h> |
| 8 | #include <linux/init.h> |
| 9 | #include <linux/cpu.h> |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 10 | #include <linux/module.h> |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 11 | #include <linux/debugobjects.h> |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 12 | |
Glauber Costa | 3a8495c | 2011-10-31 17:12:34 -0700 | [diff] [blame] | 13 | #ifdef CONFIG_HOTPLUG_CPU |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 14 | static LIST_HEAD(percpu_counters); |
Al Viro | d87aae2 | 2012-07-31 09:28:31 +0400 | [diff] [blame] | 15 | static DEFINE_SPINLOCK(percpu_counters_lock); |
Glauber Costa | 3a8495c | 2011-10-31 17:12:34 -0700 | [diff] [blame] | 16 | #endif |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 17 | |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 18 | #ifdef CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER |
| 19 | |
| 20 | static struct debug_obj_descr percpu_counter_debug_descr; |
| 21 | |
| 22 | static int percpu_counter_fixup_free(void *addr, enum debug_obj_state state) |
| 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); |
| 30 | return 1; |
| 31 | default: |
| 32 | return 0; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | static struct debug_obj_descr percpu_counter_debug_descr = { |
| 37 | .name = "percpu_counter", |
| 38 | .fixup_free = percpu_counter_fixup_free, |
| 39 | }; |
| 40 | |
| 41 | static 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 | |
| 47 | static 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 */ |
| 54 | static inline void debug_percpu_counter_activate(struct percpu_counter *fbc) |
| 55 | { } |
| 56 | static inline void debug_percpu_counter_deactivate(struct percpu_counter *fbc) |
| 57 | { } |
| 58 | #endif /* CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER */ |
| 59 | |
Peter Zijlstra | 3a587f4 | 2007-10-16 23:25:44 -0700 | [diff] [blame] | 60 | void percpu_counter_set(struct percpu_counter *fbc, s64 amount) |
| 61 | { |
| 62 | int cpu; |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 63 | unsigned long flags; |
Peter Zijlstra | 3a587f4 | 2007-10-16 23:25:44 -0700 | [diff] [blame] | 64 | |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 65 | raw_spin_lock_irqsave(&fbc->lock, flags); |
Peter Zijlstra | 3a587f4 | 2007-10-16 23:25:44 -0700 | [diff] [blame] | 66 | for_each_possible_cpu(cpu) { |
| 67 | s32 *pcount = per_cpu_ptr(fbc->counters, cpu); |
| 68 | *pcount = 0; |
| 69 | } |
| 70 | fbc->count = amount; |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 71 | raw_spin_unlock_irqrestore(&fbc->lock, flags); |
Peter Zijlstra | 3a587f4 | 2007-10-16 23:25:44 -0700 | [diff] [blame] | 72 | } |
| 73 | EXPORT_SYMBOL(percpu_counter_set); |
| 74 | |
Peter Zijlstra | 20e8976 | 2007-10-16 23:25:43 -0700 | [diff] [blame] | 75 | void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch) |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 76 | { |
Peter Zijlstra | 20e8976 | 2007-10-16 23:25:43 -0700 | [diff] [blame] | 77 | s64 count; |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 78 | |
Christoph Lameter | ea00c30 | 2010-10-26 14:23:09 -0700 | [diff] [blame] | 79 | preempt_disable(); |
Christoph Lameter | 819a72a | 2010-12-06 11:16:19 -0600 | [diff] [blame] | 80 | count = __this_cpu_read(*fbc->counters) + amount; |
Peter Zijlstra | 252e0ba | 2007-10-16 23:25:43 -0700 | [diff] [blame] | 81 | if (count >= batch || count <= -batch) { |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 82 | unsigned long flags; |
| 83 | raw_spin_lock_irqsave(&fbc->lock, flags); |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 84 | fbc->count += count; |
Hugh Dickins | d1969a8 | 2014-01-16 15:26:48 -0800 | [diff] [blame] | 85 | __this_cpu_sub(*fbc->counters, count - amount); |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 86 | raw_spin_unlock_irqrestore(&fbc->lock, flags); |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 87 | } else { |
Ming Lei | 74e72f8 | 2014-01-14 17:56:42 -0800 | [diff] [blame] | 88 | this_cpu_add(*fbc->counters, amount); |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 89 | } |
Christoph Lameter | ea00c30 | 2010-10-26 14:23:09 -0700 | [diff] [blame] | 90 | preempt_enable(); |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 91 | } |
Peter Zijlstra | 252e0ba | 2007-10-16 23:25:43 -0700 | [diff] [blame] | 92 | EXPORT_SYMBOL(__percpu_counter_add); |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 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 | */ |
Andrew Morton | 02d2116 | 2008-12-09 13:14:14 -0800 | [diff] [blame] | 98 | s64 __percpu_counter_sum(struct percpu_counter *fbc) |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 99 | { |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 100 | s64 ret; |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 101 | int cpu; |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 102 | unsigned long flags; |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 103 | |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 104 | raw_spin_lock_irqsave(&fbc->lock, flags); |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 105 | ret = fbc->count; |
Andrew Morton | b4ef029 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 106 | for_each_online_cpu(cpu) { |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 107 | s32 *pcount = per_cpu_ptr(fbc->counters, cpu); |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 108 | ret += *pcount; |
| 109 | } |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 110 | raw_spin_unlock_irqrestore(&fbc->lock, flags); |
Peter Zijlstra | bf1d89c | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 111 | return ret; |
Ravikiran G Thirumalai | 3cbc564 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 112 | } |
Peter Zijlstra | bf1d89c | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 113 | EXPORT_SYMBOL(__percpu_counter_sum); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 114 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 115 | int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, gfp_t gfp, |
Peter Zijlstra | ea31951 | 2008-12-26 15:08:55 +0100 | [diff] [blame] | 116 | struct lock_class_key *key) |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 117 | { |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 118 | unsigned long flags __maybe_unused; |
| 119 | |
Thomas Gleixner | f032a45 | 2009-07-25 16:21:48 +0200 | [diff] [blame] | 120 | raw_spin_lock_init(&fbc->lock); |
Peter Zijlstra | ea31951 | 2008-12-26 15:08:55 +0100 | [diff] [blame] | 121 | lockdep_set_class(&fbc->lock, key); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 122 | fbc->count = amount; |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 123 | fbc->counters = alloc_percpu_gfp(s32, gfp); |
Peter Zijlstra | 833f407 | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 124 | if (!fbc->counters) |
| 125 | return -ENOMEM; |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 126 | |
| 127 | debug_percpu_counter_activate(fbc); |
| 128 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 129 | #ifdef CONFIG_HOTPLUG_CPU |
Masanori ITOH | 8474b59 | 2010-10-26 14:21:20 -0700 | [diff] [blame] | 130 | INIT_LIST_HEAD(&fbc->list); |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 131 | spin_lock_irqsave(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 132 | list_add(&fbc->list, &percpu_counters); |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 133 | spin_unlock_irqrestore(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 134 | #endif |
Peter Zijlstra | 833f407 | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 135 | return 0; |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 136 | } |
Peter Zijlstra | ea31951 | 2008-12-26 15:08:55 +0100 | [diff] [blame] | 137 | EXPORT_SYMBOL(__percpu_counter_init); |
Peter Zijlstra | dc62a30 | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 138 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 139 | void percpu_counter_destroy(struct percpu_counter *fbc) |
| 140 | { |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 141 | unsigned long flags __maybe_unused; |
| 142 | |
Peter Zijlstra | 833f407 | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 143 | if (!fbc->counters) |
| 144 | return; |
| 145 | |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 146 | debug_percpu_counter_deactivate(fbc); |
| 147 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 148 | #ifdef CONFIG_HOTPLUG_CPU |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 149 | spin_lock_irqsave(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 150 | list_del(&fbc->list); |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 151 | spin_unlock_irqrestore(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 152 | #endif |
Eric Dumazet | fd3d664 | 2008-12-09 13:14:11 -0800 | [diff] [blame] | 153 | free_percpu(fbc->counters); |
| 154 | fbc->counters = NULL; |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 155 | } |
| 156 | EXPORT_SYMBOL(percpu_counter_destroy); |
| 157 | |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 158 | int percpu_counter_batch __read_mostly = 32; |
| 159 | EXPORT_SYMBOL(percpu_counter_batch); |
| 160 | |
| 161 | static void compute_batch_value(void) |
| 162 | { |
| 163 | int nr = num_online_cpus(); |
| 164 | |
| 165 | percpu_counter_batch = max(32, nr*2); |
| 166 | } |
| 167 | |
Paul Gortmaker | 0db0628 | 2013-06-19 14:53:51 -0400 | [diff] [blame] | 168 | static int percpu_counter_hotcpu_callback(struct notifier_block *nb, |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 169 | unsigned long action, void *hcpu) |
| 170 | { |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 171 | #ifdef CONFIG_HOTPLUG_CPU |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 172 | unsigned int cpu; |
| 173 | struct percpu_counter *fbc; |
| 174 | |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 175 | compute_batch_value(); |
Jens Axboe | e39435c | 2014-04-08 16:04:12 -0700 | [diff] [blame] | 176 | if (action != CPU_DEAD && action != CPU_DEAD_FROZEN) |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 177 | return NOTIFY_OK; |
| 178 | |
| 179 | cpu = (unsigned long)hcpu; |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 180 | spin_lock_irq(&percpu_counters_lock); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 181 | list_for_each_entry(fbc, &percpu_counters, list) { |
| 182 | s32 *pcount; |
Gautham R Shenoy | d2b20b1 | 2007-10-18 23:40:47 -0700 | [diff] [blame] | 183 | unsigned long flags; |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 184 | |
Thomas Gleixner | f032a45 | 2009-07-25 16:21:48 +0200 | [diff] [blame] | 185 | raw_spin_lock_irqsave(&fbc->lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 186 | pcount = per_cpu_ptr(fbc->counters, cpu); |
| 187 | fbc->count += *pcount; |
| 188 | *pcount = 0; |
Thomas Gleixner | f032a45 | 2009-07-25 16:21:48 +0200 | [diff] [blame] | 189 | raw_spin_unlock_irqrestore(&fbc->lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 190 | } |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 191 | spin_unlock_irq(&percpu_counters_lock); |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 192 | #endif |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 193 | return NOTIFY_OK; |
| 194 | } |
| 195 | |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 196 | /* |
| 197 | * Compare counter against given value. |
| 198 | * Return 1 if greater, 0 if equal and -1 if less |
| 199 | */ |
Dave Chinner | 80188b0 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 200 | int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch) |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 201 | { |
| 202 | s64 count; |
| 203 | |
| 204 | count = percpu_counter_read(fbc); |
| 205 | /* Check to see if rough count will be sufficient for comparison */ |
Dave Chinner | 80188b0 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 206 | if (abs(count - rhs) > (batch * num_online_cpus())) { |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 207 | if (count > rhs) |
| 208 | return 1; |
| 209 | else |
| 210 | return -1; |
| 211 | } |
| 212 | /* Need to use precise count */ |
| 213 | count = percpu_counter_sum(fbc); |
| 214 | if (count > rhs) |
| 215 | return 1; |
| 216 | else if (count < rhs) |
| 217 | return -1; |
| 218 | else |
| 219 | return 0; |
| 220 | } |
Dave Chinner | 80188b0 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 221 | EXPORT_SYMBOL(__percpu_counter_compare); |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 222 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 223 | static int __init percpu_counter_startup(void) |
| 224 | { |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 225 | compute_batch_value(); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 226 | hotcpu_notifier(percpu_counter_hotcpu_callback, 0); |
| 227 | return 0; |
| 228 | } |
| 229 | module_init(percpu_counter_startup); |