Ravikiran G Thirumalai | 3cbc5640 | 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 | 3cbc5640 | 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 | 3cbc5640 | 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 | |
Du, Changbin | d99b1d8 | 2016-05-19 17:09:35 -0700 | [diff] [blame] | 22 | static bool percpu_counter_fixup_free(void *addr, enum debug_obj_state state) |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 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); |
Du, Changbin | d99b1d8 | 2016-05-19 17:09:35 -0700 | [diff] [blame] | 30 | return true; |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 31 | default: |
Du, Changbin | d99b1d8 | 2016-05-19 17:09:35 -0700 | [diff] [blame] | 32 | return false; |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 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 | |
Nikolay Borisov | 3e8f399 | 2017-07-12 14:37:51 -0700 | [diff] [blame] | 75 | /** |
| 76 | * This function is both preempt and irq safe. The former is due to explicit |
| 77 | * preemption disable. The latter is guaranteed by the fact that the slow path |
| 78 | * is explicitly protected by an irq-safe spinlock whereas the fast patch uses |
| 79 | * this_cpu_add which is irq-safe by definition. Hence there is no need muck |
| 80 | * with irq state before calling this one |
| 81 | */ |
Nikolay Borisov | 104b4e5 | 2017-06-20 21:01:20 +0300 | [diff] [blame] | 82 | void percpu_counter_add_batch(struct percpu_counter *fbc, s64 amount, s32 batch) |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 83 | { |
Peter Zijlstra | 20e8976 | 2007-10-16 23:25:43 -0700 | [diff] [blame] | 84 | s64 count; |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 85 | |
Christoph Lameter | ea00c30 | 2010-10-26 14:23:09 -0700 | [diff] [blame] | 86 | preempt_disable(); |
Christoph Lameter | 819a72a | 2010-12-06 11:16:19 -0600 | [diff] [blame] | 87 | count = __this_cpu_read(*fbc->counters) + amount; |
Peter Zijlstra | 252e0ba | 2007-10-16 23:25:43 -0700 | [diff] [blame] | 88 | if (count >= batch || count <= -batch) { |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 89 | unsigned long flags; |
| 90 | raw_spin_lock_irqsave(&fbc->lock, flags); |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 91 | fbc->count += count; |
Hugh Dickins | d1969a8 | 2014-01-16 15:26:48 -0800 | [diff] [blame] | 92 | __this_cpu_sub(*fbc->counters, count - amount); |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 93 | raw_spin_unlock_irqrestore(&fbc->lock, flags); |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 94 | } else { |
Ming Lei | 74e72f8 | 2014-01-14 17:56:42 -0800 | [diff] [blame] | 95 | this_cpu_add(*fbc->counters, amount); |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 96 | } |
Christoph Lameter | ea00c30 | 2010-10-26 14:23:09 -0700 | [diff] [blame] | 97 | preempt_enable(); |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 98 | } |
Nikolay Borisov | 104b4e5 | 2017-06-20 21:01:20 +0300 | [diff] [blame] | 99 | EXPORT_SYMBOL(percpu_counter_add_batch); |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 100 | |
| 101 | /* |
| 102 | * Add up all the per-cpu counts, return the result. This is a more accurate |
| 103 | * but much slower version of percpu_counter_read_positive() |
| 104 | */ |
Andrew Morton | 02d2116 | 2008-12-09 13:14:14 -0800 | [diff] [blame] | 105 | s64 __percpu_counter_sum(struct percpu_counter *fbc) |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 106 | { |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 107 | s64 ret; |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 108 | int cpu; |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 109 | unsigned long flags; |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 110 | |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 111 | raw_spin_lock_irqsave(&fbc->lock, flags); |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 112 | ret = fbc->count; |
Andrew Morton | b4ef029 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 113 | for_each_online_cpu(cpu) { |
Mingming Cao | 0216bfc | 2006-06-23 02:05:41 -0700 | [diff] [blame] | 114 | s32 *pcount = per_cpu_ptr(fbc->counters, cpu); |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 115 | ret += *pcount; |
| 116 | } |
Shaohua Li | 098faf5 | 2013-10-24 09:06:45 +0100 | [diff] [blame] | 117 | raw_spin_unlock_irqrestore(&fbc->lock, flags); |
Peter Zijlstra | bf1d89c | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 118 | return ret; |
Ravikiran G Thirumalai | 3cbc5640 | 2006-06-23 02:05:40 -0700 | [diff] [blame] | 119 | } |
Peter Zijlstra | bf1d89c | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 120 | EXPORT_SYMBOL(__percpu_counter_sum); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 121 | |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 122 | 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] | 123 | struct lock_class_key *key) |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 124 | { |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 125 | unsigned long flags __maybe_unused; |
| 126 | |
Thomas Gleixner | f032a45 | 2009-07-25 16:21:48 +0200 | [diff] [blame] | 127 | raw_spin_lock_init(&fbc->lock); |
Peter Zijlstra | ea31951 | 2008-12-26 15:08:55 +0100 | [diff] [blame] | 128 | lockdep_set_class(&fbc->lock, key); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 129 | fbc->count = amount; |
Tejun Heo | 908c7f1 | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 130 | fbc->counters = alloc_percpu_gfp(s32, gfp); |
Peter Zijlstra | 833f407 | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 131 | if (!fbc->counters) |
| 132 | return -ENOMEM; |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 133 | |
| 134 | debug_percpu_counter_activate(fbc); |
| 135 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 136 | #ifdef CONFIG_HOTPLUG_CPU |
Masanori ITOH | 8474b59 | 2010-10-26 14:21:20 -0700 | [diff] [blame] | 137 | INIT_LIST_HEAD(&fbc->list); |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 138 | spin_lock_irqsave(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 139 | list_add(&fbc->list, &percpu_counters); |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 140 | spin_unlock_irqrestore(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 141 | #endif |
Peter Zijlstra | 833f407 | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 142 | return 0; |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 143 | } |
Peter Zijlstra | ea31951 | 2008-12-26 15:08:55 +0100 | [diff] [blame] | 144 | EXPORT_SYMBOL(__percpu_counter_init); |
Peter Zijlstra | dc62a30 | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 145 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 146 | void percpu_counter_destroy(struct percpu_counter *fbc) |
| 147 | { |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 148 | unsigned long flags __maybe_unused; |
| 149 | |
Peter Zijlstra | 833f407 | 2007-10-16 23:25:45 -0700 | [diff] [blame] | 150 | if (!fbc->counters) |
| 151 | return; |
| 152 | |
Tejun Heo | e2852ae | 2010-10-26 14:23:05 -0700 | [diff] [blame] | 153 | debug_percpu_counter_deactivate(fbc); |
| 154 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 155 | #ifdef CONFIG_HOTPLUG_CPU |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 156 | spin_lock_irqsave(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 157 | list_del(&fbc->list); |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 158 | spin_unlock_irqrestore(&percpu_counters_lock, flags); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 159 | #endif |
Eric Dumazet | fd3d664 | 2008-12-09 13:14:11 -0800 | [diff] [blame] | 160 | free_percpu(fbc->counters); |
| 161 | fbc->counters = NULL; |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 162 | } |
| 163 | EXPORT_SYMBOL(percpu_counter_destroy); |
| 164 | |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 165 | int percpu_counter_batch __read_mostly = 32; |
| 166 | EXPORT_SYMBOL(percpu_counter_batch); |
| 167 | |
Sebastian Andrzej Siewior | 5588f5a | 2016-11-03 15:50:00 +0100 | [diff] [blame] | 168 | static int compute_batch_value(unsigned int cpu) |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 169 | { |
| 170 | int nr = num_online_cpus(); |
| 171 | |
| 172 | percpu_counter_batch = max(32, nr*2); |
Sebastian Andrzej Siewior | 5588f5a | 2016-11-03 15:50:00 +0100 | [diff] [blame] | 173 | return 0; |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 174 | } |
| 175 | |
Sebastian Andrzej Siewior | 5588f5a | 2016-11-03 15:50:00 +0100 | [diff] [blame] | 176 | static int percpu_counter_cpu_dead(unsigned int cpu) |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 177 | { |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 178 | #ifdef CONFIG_HOTPLUG_CPU |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 179 | struct percpu_counter *fbc; |
| 180 | |
Sebastian Andrzej Siewior | 5588f5a | 2016-11-03 15:50:00 +0100 | [diff] [blame] | 181 | compute_batch_value(cpu); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 182 | |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 183 | spin_lock_irq(&percpu_counters_lock); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 184 | list_for_each_entry(fbc, &percpu_counters, list) { |
| 185 | s32 *pcount; |
| 186 | |
Eric Dumazet | aaf0f2f | 2017-01-20 06:34:22 -0800 | [diff] [blame] | 187 | raw_spin_lock(&fbc->lock); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 188 | pcount = per_cpu_ptr(fbc->counters, cpu); |
| 189 | fbc->count += *pcount; |
| 190 | *pcount = 0; |
Eric Dumazet | aaf0f2f | 2017-01-20 06:34:22 -0800 | [diff] [blame] | 191 | raw_spin_unlock(&fbc->lock); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 192 | } |
Tejun Heo | ebd8fef | 2014-09-08 09:51:29 +0900 | [diff] [blame] | 193 | spin_unlock_irq(&percpu_counters_lock); |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 194 | #endif |
Sebastian Andrzej Siewior | 5588f5a | 2016-11-03 15:50:00 +0100 | [diff] [blame] | 195 | return 0; |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 196 | } |
| 197 | |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 198 | /* |
| 199 | * Compare counter against given value. |
| 200 | * Return 1 if greater, 0 if equal and -1 if less |
| 201 | */ |
Dave Chinner | 80188b0 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 202 | int __percpu_counter_compare(struct percpu_counter *fbc, s64 rhs, s32 batch) |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 203 | { |
| 204 | s64 count; |
| 205 | |
| 206 | count = percpu_counter_read(fbc); |
| 207 | /* Check to see if rough count will be sufficient for comparison */ |
Dave Chinner | 80188b0 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 208 | if (abs(count - rhs) > (batch * num_online_cpus())) { |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 209 | if (count > rhs) |
| 210 | return 1; |
| 211 | else |
| 212 | return -1; |
| 213 | } |
| 214 | /* Need to use precise count */ |
| 215 | count = percpu_counter_sum(fbc); |
| 216 | if (count > rhs) |
| 217 | return 1; |
| 218 | else if (count < rhs) |
| 219 | return -1; |
| 220 | else |
| 221 | return 0; |
| 222 | } |
Dave Chinner | 80188b0 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 223 | EXPORT_SYMBOL(__percpu_counter_compare); |
Tim Chen | 27f5e0f | 2010-08-09 17:19:04 -0700 | [diff] [blame] | 224 | |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 225 | static int __init percpu_counter_startup(void) |
| 226 | { |
Sebastian Andrzej Siewior | 5588f5a | 2016-11-03 15:50:00 +0100 | [diff] [blame] | 227 | int ret; |
| 228 | |
| 229 | ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "lib/percpu_cnt:online", |
| 230 | compute_batch_value, NULL); |
| 231 | WARN_ON(ret < 0); |
| 232 | ret = cpuhp_setup_state_nocalls(CPUHP_PERCPU_CNT_DEAD, |
| 233 | "lib/percpu_cnt:dead", NULL, |
| 234 | percpu_counter_cpu_dead); |
| 235 | WARN_ON(ret < 0); |
Andrew Morton | c67ad91 | 2007-07-15 23:39:51 -0700 | [diff] [blame] | 236 | return 0; |
| 237 | } |
| 238 | module_init(percpu_counter_startup); |