Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Generic helpers for smp ipi calls |
| 3 | * |
| 4 | * (C) Jens Axboe <jens.axboe@oracle.com> 2008 |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 5 | */ |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 6 | #include <linux/rcupdate.h> |
Linus Torvalds | 59190f4 | 2008-07-15 14:02:33 -0700 | [diff] [blame] | 7 | #include <linux/rculist.h> |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 8 | #include <linux/module.h> |
| 9 | #include <linux/percpu.h> |
| 10 | #include <linux/init.h> |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 11 | #include <linux/smp.h> |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 12 | #include <linux/cpu.h> |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 13 | |
| 14 | static DEFINE_PER_CPU(struct call_single_queue, call_single_queue); |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 15 | |
| 16 | static struct { |
| 17 | struct list_head queue; |
| 18 | spinlock_t lock; |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 19 | } call_function __cacheline_aligned_in_smp = |
| 20 | { |
| 21 | .queue = LIST_HEAD_INIT(call_function.queue), |
| 22 | .lock = __SPIN_LOCK_UNLOCKED(call_function.lock), |
| 23 | }; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 24 | |
| 25 | enum { |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 26 | CSD_FLAG_LOCK = 0x01, |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 27 | }; |
| 28 | |
| 29 | struct call_function_data { |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 30 | struct call_single_data csd; |
| 31 | spinlock_t lock; |
| 32 | unsigned int refs; |
| 33 | cpumask_var_t cpumask; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | struct call_single_queue { |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 37 | struct list_head list; |
| 38 | spinlock_t lock; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 39 | }; |
| 40 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 41 | static DEFINE_PER_CPU(struct call_function_data, cfd_data) = { |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 42 | .lock = __SPIN_LOCK_UNLOCKED(cfd_data.lock), |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | static int |
| 46 | hotplug_cfd(struct notifier_block *nfb, unsigned long action, void *hcpu) |
| 47 | { |
| 48 | long cpu = (long)hcpu; |
| 49 | struct call_function_data *cfd = &per_cpu(cfd_data, cpu); |
| 50 | |
| 51 | switch (action) { |
| 52 | case CPU_UP_PREPARE: |
| 53 | case CPU_UP_PREPARE_FROZEN: |
| 54 | if (!alloc_cpumask_var_node(&cfd->cpumask, GFP_KERNEL, |
| 55 | cpu_to_node(cpu))) |
| 56 | return NOTIFY_BAD; |
| 57 | break; |
| 58 | |
| 59 | #ifdef CONFIG_CPU_HOTPLUG |
| 60 | case CPU_UP_CANCELED: |
| 61 | case CPU_UP_CANCELED_FROZEN: |
| 62 | |
| 63 | case CPU_DEAD: |
| 64 | case CPU_DEAD_FROZEN: |
| 65 | free_cpumask_var(cfd->cpumask); |
| 66 | break; |
| 67 | #endif |
| 68 | }; |
| 69 | |
| 70 | return NOTIFY_OK; |
| 71 | } |
| 72 | |
| 73 | static struct notifier_block __cpuinitdata hotplug_cfd_notifier = { |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 74 | .notifier_call = hotplug_cfd, |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 75 | }; |
| 76 | |
Eduard - Gabriel Munteanu | 7babe8d | 2008-07-25 19:45:11 -0700 | [diff] [blame] | 77 | static int __cpuinit init_call_single_data(void) |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 78 | { |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 79 | void *cpu = (void *)(long)smp_processor_id(); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 80 | int i; |
| 81 | |
| 82 | for_each_possible_cpu(i) { |
| 83 | struct call_single_queue *q = &per_cpu(call_single_queue, i); |
| 84 | |
| 85 | spin_lock_init(&q->lock); |
| 86 | INIT_LIST_HEAD(&q->list); |
| 87 | } |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 88 | |
| 89 | hotplug_cfd(&hotplug_cfd_notifier, CPU_UP_PREPARE, cpu); |
| 90 | register_cpu_notifier(&hotplug_cfd_notifier); |
| 91 | |
Eduard - Gabriel Munteanu | 7babe8d | 2008-07-25 19:45:11 -0700 | [diff] [blame] | 92 | return 0; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 93 | } |
Eduard - Gabriel Munteanu | 7babe8d | 2008-07-25 19:45:11 -0700 | [diff] [blame] | 94 | early_initcall(init_call_single_data); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 95 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 96 | /* |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 97 | * csd_lock/csd_unlock used to serialize access to per-cpu csd resources |
| 98 | * |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 99 | * For non-synchronous ipi calls the csd can still be in use by the |
| 100 | * previous function call. For multi-cpu calls its even more interesting |
| 101 | * as we'll have to ensure no other cpu is observing our csd. |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 102 | */ |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 103 | static void csd_lock_wait(struct call_single_data *data) |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 104 | { |
| 105 | while (data->flags & CSD_FLAG_LOCK) |
| 106 | cpu_relax(); |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | static void csd_lock(struct call_single_data *data) |
| 110 | { |
| 111 | csd_lock_wait(data); |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 112 | data->flags = CSD_FLAG_LOCK; |
| 113 | |
| 114 | /* |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 115 | * prevent CPU from reordering the above assignment |
| 116 | * to ->flags with any subsequent assignments to other |
| 117 | * fields of the specified call_single_data structure: |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 118 | */ |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 119 | smp_mb(); |
| 120 | } |
| 121 | |
| 122 | static void csd_unlock(struct call_single_data *data) |
| 123 | { |
| 124 | WARN_ON(!(data->flags & CSD_FLAG_LOCK)); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 125 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 126 | /* |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 127 | * ensure we're all done before releasing data: |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 128 | */ |
| 129 | smp_mb(); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 130 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 131 | data->flags &= ~CSD_FLAG_LOCK; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | /* |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 135 | * Insert a previously allocated call_single_data element |
| 136 | * for execution on the given CPU. data must already have |
| 137 | * ->func, ->info, and ->flags set. |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 138 | */ |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 139 | static |
| 140 | void generic_exec_single(int cpu, struct call_single_data *data, int wait) |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 141 | { |
| 142 | struct call_single_queue *dst = &per_cpu(call_single_queue, cpu); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 143 | unsigned long flags; |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 144 | int ipi; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 145 | |
| 146 | spin_lock_irqsave(&dst->lock, flags); |
| 147 | ipi = list_empty(&dst->list); |
| 148 | list_add_tail(&data->list, &dst->list); |
| 149 | spin_unlock_irqrestore(&dst->lock, flags); |
| 150 | |
Suresh Siddha | 561920a0 | 2008-10-30 18:28:41 +0100 | [diff] [blame] | 151 | /* |
Nick Piggin | 15d0d3b | 2009-02-25 06:22:45 +0100 | [diff] [blame] | 152 | * The list addition should be visible before sending the IPI |
| 153 | * handler locks the list to pull the entry off it because of |
| 154 | * normal cache coherency rules implied by spinlocks. |
| 155 | * |
| 156 | * If IPIs can go out of order to the cache coherency protocol |
| 157 | * in an architecture, sufficient synchronisation should be added |
| 158 | * to arch code to make it appear to obey cache coherency WRT |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 159 | * locking and barrier primitives. Generic code isn't really |
| 160 | * equipped to do the right thing... |
Suresh Siddha | 561920a0 | 2008-10-30 18:28:41 +0100 | [diff] [blame] | 161 | */ |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 162 | if (ipi) |
| 163 | arch_send_call_function_single_ipi(cpu); |
| 164 | |
| 165 | if (wait) |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 166 | csd_lock_wait(data); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | /* |
| 170 | * Invoked by arch to handle an IPI for call function. Must be called with |
| 171 | * interrupts disabled. |
| 172 | */ |
| 173 | void generic_smp_call_function_interrupt(void) |
| 174 | { |
| 175 | struct call_function_data *data; |
| 176 | int cpu = get_cpu(); |
| 177 | |
| 178 | /* |
Nick Piggin | 15d0d3b | 2009-02-25 06:22:45 +0100 | [diff] [blame] | 179 | * Ensure entry is visible on call_function_queue after we have |
| 180 | * entered the IPI. See comment in smp_call_function_many. |
| 181 | * If we don't have this, then we may miss an entry on the list |
| 182 | * and never get another IPI to process it. |
| 183 | */ |
| 184 | smp_mb(); |
| 185 | |
| 186 | /* |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 187 | * It's ok to use list_for_each_rcu() here even though we may |
| 188 | * delete 'pos', since list_del_rcu() doesn't clear ->next |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 189 | */ |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 190 | list_for_each_entry_rcu(data, &call_function.queue, csd.list) { |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 191 | int refs; |
| 192 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 193 | spin_lock(&data->lock); |
| 194 | if (!cpumask_test_cpu(cpu, data->cpumask)) { |
| 195 | spin_unlock(&data->lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 196 | continue; |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 197 | } |
| 198 | cpumask_clear_cpu(cpu, data->cpumask); |
| 199 | spin_unlock(&data->lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 200 | |
| 201 | data->csd.func(data->csd.info); |
| 202 | |
| 203 | spin_lock(&data->lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 204 | WARN_ON(data->refs == 0); |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 205 | refs = --data->refs; |
| 206 | if (!refs) { |
| 207 | spin_lock(&call_function.lock); |
| 208 | list_del_rcu(&data->csd.list); |
| 209 | spin_unlock(&call_function.lock); |
| 210 | } |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 211 | spin_unlock(&data->lock); |
| 212 | |
| 213 | if (refs) |
| 214 | continue; |
| 215 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 216 | csd_unlock(&data->csd); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 217 | } |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 218 | |
| 219 | put_cpu(); |
| 220 | } |
| 221 | |
| 222 | /* |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 223 | * Invoked by arch to handle an IPI for call function single. Must be |
| 224 | * called from the arch with interrupts disabled. |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 225 | */ |
| 226 | void generic_smp_call_function_single_interrupt(void) |
| 227 | { |
| 228 | struct call_single_queue *q = &__get_cpu_var(call_single_queue); |
Nick Piggin | 15d0d3b | 2009-02-25 06:22:45 +0100 | [diff] [blame] | 229 | unsigned int data_flags; |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 230 | LIST_HEAD(list); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 231 | |
Nick Piggin | 15d0d3b | 2009-02-25 06:22:45 +0100 | [diff] [blame] | 232 | spin_lock(&q->lock); |
| 233 | list_replace_init(&q->list, &list); |
| 234 | spin_unlock(&q->lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 235 | |
Nick Piggin | 15d0d3b | 2009-02-25 06:22:45 +0100 | [diff] [blame] | 236 | while (!list_empty(&list)) { |
| 237 | struct call_single_data *data; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 238 | |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 239 | data = list_entry(list.next, struct call_single_data, list); |
Nick Piggin | 15d0d3b | 2009-02-25 06:22:45 +0100 | [diff] [blame] | 240 | list_del(&data->list); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 241 | |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 242 | /* |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 243 | * 'data' can be invalid after this call if flags == 0 |
| 244 | * (when called through generic_exec_single()), |
| 245 | * so save them away before making the call: |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 246 | */ |
Nick Piggin | 15d0d3b | 2009-02-25 06:22:45 +0100 | [diff] [blame] | 247 | data_flags = data->flags; |
| 248 | |
| 249 | data->func(data->info); |
| 250 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 251 | /* |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 252 | * Unlocked CSDs are valid through generic_exec_single(): |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 253 | */ |
| 254 | if (data_flags & CSD_FLAG_LOCK) |
| 255 | csd_unlock(data); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 256 | } |
| 257 | } |
| 258 | |
Steven Rostedt | d7240b9 | 2009-01-29 10:08:01 -0500 | [diff] [blame] | 259 | static DEFINE_PER_CPU(struct call_single_data, csd_data); |
| 260 | |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 261 | /* |
| 262 | * smp_call_function_single - Run a function on a specific CPU |
| 263 | * @func: The function to run. This must be fast and non-blocking. |
| 264 | * @info: An arbitrary pointer to pass to the function. |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 265 | * @wait: If true, wait until function has completed on other CPUs. |
| 266 | * |
| 267 | * Returns 0 on success, else a negative status code. Note that @wait |
| 268 | * will be implicitly turned on in case of allocation failures, since |
| 269 | * we fall back to on-stack allocation. |
| 270 | */ |
| 271 | int smp_call_function_single(int cpu, void (*func) (void *info), void *info, |
Jens Axboe | 8691e5a | 2008-06-06 11:18:06 +0200 | [diff] [blame] | 272 | int wait) |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 273 | { |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 274 | struct call_single_data d = { |
| 275 | .flags = 0, |
| 276 | }; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 277 | unsigned long flags; |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 278 | int this_cpu; |
H. Peter Anvin | f73be6d | 2008-08-25 17:07:14 -0700 | [diff] [blame] | 279 | int err = 0; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 280 | |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 281 | /* |
| 282 | * prevent preemption and reschedule on another processor, |
| 283 | * as well as CPU removal |
| 284 | */ |
| 285 | this_cpu = get_cpu(); |
| 286 | |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 287 | /* Can deadlock when called with interrupts disabled */ |
| 288 | WARN_ON(irqs_disabled()); |
| 289 | |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 290 | if (cpu == this_cpu) { |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 291 | local_irq_save(flags); |
| 292 | func(info); |
| 293 | local_irq_restore(flags); |
H. Peter Anvin | f73be6d | 2008-08-25 17:07:14 -0700 | [diff] [blame] | 294 | } else { |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 295 | if ((unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) { |
| 296 | struct call_single_data *data = &d; |
| 297 | |
| 298 | if (!wait) |
| 299 | data = &__get_cpu_var(csd_data); |
| 300 | |
| 301 | csd_lock(data); |
| 302 | |
| 303 | data->func = func; |
| 304 | data->info = info; |
| 305 | generic_exec_single(cpu, data, wait); |
| 306 | } else { |
| 307 | err = -ENXIO; /* CPU not online */ |
| 308 | } |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | put_cpu(); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 312 | |
H. Peter Anvin | f73be6d | 2008-08-25 17:07:14 -0700 | [diff] [blame] | 313 | return err; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 314 | } |
| 315 | EXPORT_SYMBOL(smp_call_function_single); |
| 316 | |
| 317 | /** |
| 318 | * __smp_call_function_single(): Run a function on another CPU |
| 319 | * @cpu: The CPU to run on. |
| 320 | * @data: Pre-allocated and setup data structure |
| 321 | * |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 322 | * Like smp_call_function_single(), but allow caller to pass in a |
| 323 | * pre-allocated data structure. Useful for embedding @data inside |
| 324 | * other structures, for instance. |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 325 | */ |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 326 | void __smp_call_function_single(int cpu, struct call_single_data *data, |
| 327 | int wait) |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 328 | { |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 329 | csd_lock(data); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 330 | |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 331 | /* Can deadlock when called with interrupts disabled */ |
| 332 | WARN_ON(wait && irqs_disabled()); |
| 333 | |
| 334 | generic_exec_single(cpu, data, wait); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 335 | } |
| 336 | |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 337 | /* Deprecated: shim for archs using old arch_send_call_function_ipi API. */ |
| 338 | |
Rusty Russell | ce47d97 | 2008-12-30 09:05:17 +1030 | [diff] [blame] | 339 | #ifndef arch_send_call_function_ipi_mask |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 340 | # define arch_send_call_function_ipi_mask(maskp) \ |
| 341 | arch_send_call_function_ipi(*(maskp)) |
Rusty Russell | ce47d97 | 2008-12-30 09:05:17 +1030 | [diff] [blame] | 342 | #endif |
| 343 | |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 344 | /** |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 345 | * smp_call_function_many(): Run a function on a set of other CPUs. |
| 346 | * @mask: The set of cpus to run on (only runs on online subset). |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 347 | * @func: The function to run. This must be fast and non-blocking. |
| 348 | * @info: An arbitrary pointer to pass to the function. |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 349 | * @wait: If true, wait (atomically) until function has completed |
| 350 | * on other CPUs. |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 351 | * |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 352 | * If @wait is true, then returns once @func has returned. Note that @wait |
| 353 | * will be implicitly turned on in case of allocation failures, since |
| 354 | * we fall back to on-stack allocation. |
| 355 | * |
| 356 | * You must not call this function with disabled interrupts or from a |
| 357 | * hardware interrupt handler or from a bottom half handler. Preemption |
| 358 | * must be disabled when calling this function. |
| 359 | */ |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 360 | void smp_call_function_many(const struct cpumask *mask, |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 361 | void (*func)(void *), void *info, bool wait) |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 362 | { |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 363 | struct call_function_data *data; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 364 | unsigned long flags; |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 365 | int cpu, next_cpu, this_cpu = smp_processor_id(); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 366 | |
| 367 | /* Can deadlock when called with interrupts disabled */ |
| 368 | WARN_ON(irqs_disabled()); |
| 369 | |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 370 | /* So, what's a CPU they want? Ignoring this one. */ |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 371 | cpu = cpumask_first_and(mask, cpu_online_mask); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 372 | if (cpu == this_cpu) |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 373 | cpu = cpumask_next_and(cpu, mask, cpu_online_mask); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 374 | |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 375 | /* No online cpus? We're done. */ |
| 376 | if (cpu >= nr_cpu_ids) |
| 377 | return; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 378 | |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 379 | /* Do we have another CPU which isn't us? */ |
| 380 | next_cpu = cpumask_next_and(cpu, mask, cpu_online_mask); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 381 | if (next_cpu == this_cpu) |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 382 | next_cpu = cpumask_next_and(next_cpu, mask, cpu_online_mask); |
| 383 | |
| 384 | /* Fastpath: do that cpu by itself. */ |
| 385 | if (next_cpu >= nr_cpu_ids) { |
| 386 | smp_call_function_single(cpu, func, info, wait); |
| 387 | return; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 388 | } |
| 389 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 390 | data = &__get_cpu_var(cfd_data); |
| 391 | csd_lock(&data->csd); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 392 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 393 | spin_lock_irqsave(&data->lock, flags); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 394 | data->csd.func = func; |
| 395 | data->csd.info = info; |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 396 | cpumask_and(data->cpumask, mask, cpu_online_mask); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 397 | cpumask_clear_cpu(this_cpu, data->cpumask); |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 398 | data->refs = cpumask_weight(data->cpumask); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 399 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 400 | spin_lock(&call_function.lock); |
| 401 | /* |
| 402 | * Place entry at the _HEAD_ of the list, so that any cpu still |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 403 | * observing the entry in generic_smp_call_function_interrupt() |
| 404 | * will not miss any other list entries: |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 405 | */ |
| 406 | list_add_rcu(&data->csd.list, &call_function.queue); |
| 407 | spin_unlock(&call_function.lock); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 408 | |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 409 | spin_unlock_irqrestore(&data->lock, flags); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 410 | |
Suresh Siddha | 561920a0 | 2008-10-30 18:28:41 +0100 | [diff] [blame] | 411 | /* |
| 412 | * Make the list addition visible before sending the ipi. |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 413 | * (IPIs must obey or appear to obey normal Linux cache |
| 414 | * coherency rules -- see comment in generic_exec_single). |
Suresh Siddha | 561920a0 | 2008-10-30 18:28:41 +0100 | [diff] [blame] | 415 | */ |
| 416 | smp_mb(); |
| 417 | |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 418 | /* Send a message to all CPUs in the map */ |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 419 | arch_send_call_function_ipi_mask(data->cpumask); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 420 | |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 421 | /* Optionally wait for the CPUs to complete */ |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 422 | if (wait) |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 423 | csd_lock_wait(&data->csd); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 424 | } |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 425 | EXPORT_SYMBOL(smp_call_function_many); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 426 | |
| 427 | /** |
| 428 | * smp_call_function(): Run a function on all other CPUs. |
| 429 | * @func: The function to run. This must be fast and non-blocking. |
| 430 | * @info: An arbitrary pointer to pass to the function. |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 431 | * @wait: If true, wait (atomically) until function has completed |
| 432 | * on other CPUs. |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 433 | * |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 434 | * Returns 0. |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 435 | * |
| 436 | * If @wait is true, then returns once @func has returned; otherwise |
| 437 | * it returns just before the target cpu calls @func. In case of allocation |
| 438 | * failure, @wait will be implicitly turned on. |
| 439 | * |
| 440 | * You must not call this function with disabled interrupts or from a |
| 441 | * hardware interrupt handler or from a bottom half handler. |
| 442 | */ |
Jens Axboe | 8691e5a | 2008-06-06 11:18:06 +0200 | [diff] [blame] | 443 | int smp_call_function(void (*func)(void *), void *info, int wait) |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 444 | { |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 445 | preempt_disable(); |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 446 | smp_call_function_many(cpu_online_mask, func, info, wait); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 447 | preempt_enable(); |
Ingo Molnar | 0b13fda | 2009-02-25 16:52:11 +0100 | [diff] [blame^] | 448 | |
Rusty Russell | 54b11e6 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 449 | return 0; |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 450 | } |
| 451 | EXPORT_SYMBOL(smp_call_function); |
| 452 | |
| 453 | void ipi_call_lock(void) |
| 454 | { |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 455 | spin_lock(&call_function.lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | void ipi_call_unlock(void) |
| 459 | { |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 460 | spin_unlock(&call_function.lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | void ipi_call_lock_irq(void) |
| 464 | { |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 465 | spin_lock_irq(&call_function.lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | void ipi_call_unlock_irq(void) |
| 469 | { |
Peter Zijlstra | 8969a5e | 2009-02-25 13:59:47 +0100 | [diff] [blame] | 470 | spin_unlock_irq(&call_function.lock); |
Jens Axboe | 3d44223 | 2008-06-26 11:21:34 +0200 | [diff] [blame] | 471 | } |