blob: 12ed8b013e2d7cd8be438a808f3a6981ab4cd70a [file] [log] [blame]
Jens Axboe3d442232008-06-26 11:21:34 +02001/*
2 * Generic helpers for smp ipi calls
3 *
4 * (C) Jens Axboe <jens.axboe@oracle.com> 2008
Jens Axboe3d442232008-06-26 11:21:34 +02005 */
Jens Axboe3d442232008-06-26 11:21:34 +02006#include <linux/rcupdate.h>
Linus Torvalds59190f42008-07-15 14:02:33 -07007#include <linux/rculist.h>
Ingo Molnar641cd4c2009-03-13 10:47:34 +01008#include <linux/kernel.h>
Ingo Molnar0b13fda2009-02-25 16:52:11 +01009#include <linux/module.h>
10#include <linux/percpu.h>
11#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Jens Axboe3d442232008-06-26 11:21:34 +020013#include <linux/smp.h>
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010014#include <linux/cpu.h>
Jens Axboe3d442232008-06-26 11:21:34 +020015
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010016static struct {
17 struct list_head queue;
Thomas Gleixner9f5a5622009-11-17 15:40:01 +010018 raw_spinlock_t lock;
Ingo Molnar0b13fda2009-02-25 16:52:11 +010019} call_function __cacheline_aligned_in_smp =
20 {
21 .queue = LIST_HEAD_INIT(call_function.queue),
Thomas Gleixner9f5a5622009-11-17 15:40:01 +010022 .lock = __RAW_SPIN_LOCK_UNLOCKED(call_function.lock),
Ingo Molnar0b13fda2009-02-25 16:52:11 +010023 };
Jens Axboe3d442232008-06-26 11:21:34 +020024
25enum {
Peter Zijlstra6e275632009-02-25 13:59:48 +010026 CSD_FLAG_LOCK = 0x01,
Jens Axboe3d442232008-06-26 11:21:34 +020027};
28
29struct call_function_data {
Ingo Molnar0b13fda2009-02-25 16:52:11 +010030 struct call_single_data csd;
Xiao Guangrong54fdade2009-09-22 16:43:39 -070031 atomic_t refs;
Ingo Molnar0b13fda2009-02-25 16:52:11 +010032 cpumask_var_t cpumask;
Jens Axboe3d442232008-06-26 11:21:34 +020033};
34
Milton Millere03bcb62010-01-18 13:00:51 +110035static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_function_data, cfd_data);
36
Jens Axboe3d442232008-06-26 11:21:34 +020037struct call_single_queue {
Ingo Molnar0b13fda2009-02-25 16:52:11 +010038 struct list_head list;
Thomas Gleixner9f5a5622009-11-17 15:40:01 +010039 raw_spinlock_t lock;
Jens Axboe3d442232008-06-26 11:21:34 +020040};
41
Milton Millere03bcb62010-01-18 13:00:51 +110042static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_queue, call_single_queue);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010043
44static int
45hotplug_cfd(struct notifier_block *nfb, unsigned long action, void *hcpu)
46{
47 long cpu = (long)hcpu;
48 struct call_function_data *cfd = &per_cpu(cfd_data, cpu);
49
50 switch (action) {
51 case CPU_UP_PREPARE:
52 case CPU_UP_PREPARE_FROZEN:
Yinghai Lueaa95842009-06-06 14:51:36 -070053 if (!zalloc_cpumask_var_node(&cfd->cpumask, GFP_KERNEL,
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010054 cpu_to_node(cpu)))
Akinobu Mita80b51842010-05-26 14:43:32 -070055 return notifier_from_errno(-ENOMEM);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010056 break;
57
Xiao Guangrong69dd6472009-08-06 15:07:29 -070058#ifdef CONFIG_HOTPLUG_CPU
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010059 case CPU_UP_CANCELED:
60 case CPU_UP_CANCELED_FROZEN:
61
62 case CPU_DEAD:
63 case CPU_DEAD_FROZEN:
64 free_cpumask_var(cfd->cpumask);
65 break;
66#endif
67 };
68
69 return NOTIFY_OK;
70}
71
72static struct notifier_block __cpuinitdata hotplug_cfd_notifier = {
Ingo Molnar0b13fda2009-02-25 16:52:11 +010073 .notifier_call = hotplug_cfd,
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010074};
75
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -070076static int __cpuinit init_call_single_data(void)
Jens Axboe3d442232008-06-26 11:21:34 +020077{
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010078 void *cpu = (void *)(long)smp_processor_id();
Jens Axboe3d442232008-06-26 11:21:34 +020079 int i;
80
81 for_each_possible_cpu(i) {
82 struct call_single_queue *q = &per_cpu(call_single_queue, i);
83
Thomas Gleixner9f5a5622009-11-17 15:40:01 +010084 raw_spin_lock_init(&q->lock);
Jens Axboe3d442232008-06-26 11:21:34 +020085 INIT_LIST_HEAD(&q->list);
86 }
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010087
88 hotplug_cfd(&hotplug_cfd_notifier, CPU_UP_PREPARE, cpu);
89 register_cpu_notifier(&hotplug_cfd_notifier);
90
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -070091 return 0;
Jens Axboe3d442232008-06-26 11:21:34 +020092}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -070093early_initcall(init_call_single_data);
Jens Axboe3d442232008-06-26 11:21:34 +020094
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010095/*
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010096 * csd_lock/csd_unlock used to serialize access to per-cpu csd resources
97 *
Ingo Molnar0b13fda2009-02-25 16:52:11 +010098 * For non-synchronous ipi calls the csd can still be in use by the
99 * previous function call. For multi-cpu calls its even more interesting
100 * as we'll have to ensure no other cpu is observing our csd.
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100101 */
Peter Zijlstra6e275632009-02-25 13:59:48 +0100102static void csd_lock_wait(struct call_single_data *data)
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100103{
104 while (data->flags & CSD_FLAG_LOCK)
105 cpu_relax();
Peter Zijlstra6e275632009-02-25 13:59:48 +0100106}
107
108static void csd_lock(struct call_single_data *data)
109{
110 csd_lock_wait(data);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100111 data->flags = CSD_FLAG_LOCK;
112
113 /*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100114 * prevent CPU from reordering the above assignment
115 * to ->flags with any subsequent assignments to other
116 * fields of the specified call_single_data structure:
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100117 */
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100118 smp_mb();
119}
120
121static void csd_unlock(struct call_single_data *data)
122{
123 WARN_ON(!(data->flags & CSD_FLAG_LOCK));
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100124
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100125 /*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100126 * ensure we're all done before releasing data:
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100127 */
128 smp_mb();
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100129
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100130 data->flags &= ~CSD_FLAG_LOCK;
Jens Axboe3d442232008-06-26 11:21:34 +0200131}
132
133/*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100134 * Insert a previously allocated call_single_data element
135 * for execution on the given CPU. data must already have
136 * ->func, ->info, and ->flags set.
Jens Axboe3d442232008-06-26 11:21:34 +0200137 */
Peter Zijlstra6e275632009-02-25 13:59:48 +0100138static
139void generic_exec_single(int cpu, struct call_single_data *data, int wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200140{
141 struct call_single_queue *dst = &per_cpu(call_single_queue, cpu);
Jens Axboe3d442232008-06-26 11:21:34 +0200142 unsigned long flags;
Peter Zijlstra6e275632009-02-25 13:59:48 +0100143 int ipi;
Jens Axboe3d442232008-06-26 11:21:34 +0200144
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100145 raw_spin_lock_irqsave(&dst->lock, flags);
Jens Axboe3d442232008-06-26 11:21:34 +0200146 ipi = list_empty(&dst->list);
147 list_add_tail(&data->list, &dst->list);
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100148 raw_spin_unlock_irqrestore(&dst->lock, flags);
Jens Axboe3d442232008-06-26 11:21:34 +0200149
Suresh Siddha561920a02008-10-30 18:28:41 +0100150 /*
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100151 * The list addition should be visible before sending the IPI
152 * handler locks the list to pull the entry off it because of
153 * normal cache coherency rules implied by spinlocks.
154 *
155 * If IPIs can go out of order to the cache coherency protocol
156 * in an architecture, sufficient synchronisation should be added
157 * to arch code to make it appear to obey cache coherency WRT
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100158 * locking and barrier primitives. Generic code isn't really
159 * equipped to do the right thing...
Suresh Siddha561920a02008-10-30 18:28:41 +0100160 */
Jens Axboe3d442232008-06-26 11:21:34 +0200161 if (ipi)
162 arch_send_call_function_single_ipi(cpu);
163
164 if (wait)
Peter Zijlstra6e275632009-02-25 13:59:48 +0100165 csd_lock_wait(data);
Jens Axboe3d442232008-06-26 11:21:34 +0200166}
167
168/*
169 * Invoked by arch to handle an IPI for call function. Must be called with
170 * interrupts disabled.
171 */
172void generic_smp_call_function_interrupt(void)
173{
174 struct call_function_data *data;
Xiao Guangrongc0f68c22009-12-14 18:00:16 -0800175 int cpu = smp_processor_id();
Jens Axboe3d442232008-06-26 11:21:34 +0200176
177 /*
Suresh Siddha269c8612009-08-19 18:05:35 -0700178 * Shouldn't receive this interrupt on a cpu that is not yet online.
179 */
180 WARN_ON_ONCE(!cpu_online(cpu));
181
182 /*
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100183 * Ensure entry is visible on call_function_queue after we have
184 * entered the IPI. See comment in smp_call_function_many.
185 * If we don't have this, then we may miss an entry on the list
186 * and never get another IPI to process it.
187 */
188 smp_mb();
189
190 /*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100191 * It's ok to use list_for_each_rcu() here even though we may
192 * delete 'pos', since list_del_rcu() doesn't clear ->next
Jens Axboe3d442232008-06-26 11:21:34 +0200193 */
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100194 list_for_each_entry_rcu(data, &call_function.queue, csd.list) {
Jens Axboe3d442232008-06-26 11:21:34 +0200195 int refs;
196
Xiao Guangrong54fdade2009-09-22 16:43:39 -0700197 if (!cpumask_test_and_clear_cpu(cpu, data->cpumask))
Jens Axboe3d442232008-06-26 11:21:34 +0200198 continue;
199
200 data->csd.func(data->csd.info);
201
Xiao Guangrong54fdade2009-09-22 16:43:39 -0700202 refs = atomic_dec_return(&data->refs);
203 WARN_ON(refs < 0);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100204 if (!refs) {
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100205 raw_spin_lock(&call_function.lock);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100206 list_del_rcu(&data->csd.list);
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100207 raw_spin_unlock(&call_function.lock);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100208 }
Jens Axboe3d442232008-06-26 11:21:34 +0200209
210 if (refs)
211 continue;
212
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100213 csd_unlock(&data->csd);
Jens Axboe3d442232008-06-26 11:21:34 +0200214 }
Jens Axboe3d442232008-06-26 11:21:34 +0200215
Jens Axboe3d442232008-06-26 11:21:34 +0200216}
217
218/*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100219 * Invoked by arch to handle an IPI for call function single. Must be
220 * called from the arch with interrupts disabled.
Jens Axboe3d442232008-06-26 11:21:34 +0200221 */
222void generic_smp_call_function_single_interrupt(void)
223{
224 struct call_single_queue *q = &__get_cpu_var(call_single_queue);
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100225 unsigned int data_flags;
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100226 LIST_HEAD(list);
Jens Axboe3d442232008-06-26 11:21:34 +0200227
Suresh Siddha269c8612009-08-19 18:05:35 -0700228 /*
229 * Shouldn't receive this interrupt on a cpu that is not yet online.
230 */
231 WARN_ON_ONCE(!cpu_online(smp_processor_id()));
232
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100233 raw_spin_lock(&q->lock);
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100234 list_replace_init(&q->list, &list);
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100235 raw_spin_unlock(&q->lock);
Jens Axboe3d442232008-06-26 11:21:34 +0200236
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100237 while (!list_empty(&list)) {
238 struct call_single_data *data;
Jens Axboe3d442232008-06-26 11:21:34 +0200239
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100240 data = list_entry(list.next, struct call_single_data, list);
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100241 list_del(&data->list);
Jens Axboe3d442232008-06-26 11:21:34 +0200242
Jens Axboe3d442232008-06-26 11:21:34 +0200243 /*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100244 * 'data' can be invalid after this call if flags == 0
245 * (when called through generic_exec_single()),
246 * so save them away before making the call:
Jens Axboe3d442232008-06-26 11:21:34 +0200247 */
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100248 data_flags = data->flags;
249
250 data->func(data->info);
251
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100252 /*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100253 * Unlocked CSDs are valid through generic_exec_single():
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100254 */
255 if (data_flags & CSD_FLAG_LOCK)
256 csd_unlock(data);
Jens Axboe3d442232008-06-26 11:21:34 +0200257 }
258}
259
Milton Millere03bcb62010-01-18 13:00:51 +1100260static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_data, csd_data);
Steven Rostedtd7240b92009-01-29 10:08:01 -0500261
Jens Axboe3d442232008-06-26 11:21:34 +0200262/*
263 * smp_call_function_single - Run a function on a specific CPU
264 * @func: The function to run. This must be fast and non-blocking.
265 * @info: An arbitrary pointer to pass to the function.
Jens Axboe3d442232008-06-26 11:21:34 +0200266 * @wait: If true, wait until function has completed on other CPUs.
267 *
Sheng Yang72f279b2009-10-22 19:19:34 +0800268 * Returns 0 on success, else a negative status code.
Jens Axboe3d442232008-06-26 11:21:34 +0200269 */
David Howells3a5f65d2010-10-27 17:28:36 +0100270int smp_call_function_single(int cpu, smp_call_func_t func, void *info,
Jens Axboe8691e5a2008-06-06 11:18:06 +0200271 int wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200272{
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100273 struct call_single_data d = {
274 .flags = 0,
275 };
Jens Axboe3d442232008-06-26 11:21:34 +0200276 unsigned long flags;
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100277 int this_cpu;
H. Peter Anvinf73be6d2008-08-25 17:07:14 -0700278 int err = 0;
Jens Axboe3d442232008-06-26 11:21:34 +0200279
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100280 /*
281 * prevent preemption and reschedule on another processor,
282 * as well as CPU removal
283 */
284 this_cpu = get_cpu();
285
Suresh Siddha269c8612009-08-19 18:05:35 -0700286 /*
287 * Can deadlock when called with interrupts disabled.
288 * We allow cpu's that are not yet online though, as no one else can
289 * send smp call function interrupt to this cpu and as such deadlocks
290 * can't happen.
291 */
292 WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
293 && !oops_in_progress);
Jens Axboe3d442232008-06-26 11:21:34 +0200294
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100295 if (cpu == this_cpu) {
Jens Axboe3d442232008-06-26 11:21:34 +0200296 local_irq_save(flags);
297 func(info);
298 local_irq_restore(flags);
H. Peter Anvinf73be6d2008-08-25 17:07:14 -0700299 } else {
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100300 if ((unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) {
301 struct call_single_data *data = &d;
302
303 if (!wait)
304 data = &__get_cpu_var(csd_data);
305
306 csd_lock(data);
307
308 data->func = func;
309 data->info = info;
310 generic_exec_single(cpu, data, wait);
311 } else {
312 err = -ENXIO; /* CPU not online */
313 }
Jens Axboe3d442232008-06-26 11:21:34 +0200314 }
315
316 put_cpu();
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100317
H. Peter Anvinf73be6d2008-08-25 17:07:14 -0700318 return err;
Jens Axboe3d442232008-06-26 11:21:34 +0200319}
320EXPORT_SYMBOL(smp_call_function_single);
321
Rusty Russell2ea6dec2009-11-17 14:27:27 -0800322/*
323 * smp_call_function_any - Run a function on any of the given cpus
324 * @mask: The mask of cpus it can run on.
325 * @func: The function to run. This must be fast and non-blocking.
326 * @info: An arbitrary pointer to pass to the function.
327 * @wait: If true, wait until function has completed.
328 *
329 * Returns 0 on success, else a negative status code (if no cpus were online).
330 * Note that @wait will be implicitly turned on in case of allocation failures,
331 * since we fall back to on-stack allocation.
332 *
333 * Selection preference:
334 * 1) current cpu if in @mask
335 * 2) any cpu of current node if in @mask
336 * 3) any other online cpu in @mask
337 */
338int smp_call_function_any(const struct cpumask *mask,
David Howells3a5f65d2010-10-27 17:28:36 +0100339 smp_call_func_t func, void *info, int wait)
Rusty Russell2ea6dec2009-11-17 14:27:27 -0800340{
341 unsigned int cpu;
342 const struct cpumask *nodemask;
343 int ret;
344
345 /* Try for same CPU (cheapest) */
346 cpu = get_cpu();
347 if (cpumask_test_cpu(cpu, mask))
348 goto call;
349
350 /* Try for same node. */
David Johnaf2422c2010-01-15 17:01:23 -0800351 nodemask = cpumask_of_node(cpu_to_node(cpu));
Rusty Russell2ea6dec2009-11-17 14:27:27 -0800352 for (cpu = cpumask_first_and(nodemask, mask); cpu < nr_cpu_ids;
353 cpu = cpumask_next_and(cpu, nodemask, mask)) {
354 if (cpu_online(cpu))
355 goto call;
356 }
357
358 /* Any online will do: smp_call_function_single handles nr_cpu_ids. */
359 cpu = cpumask_any_and(mask, cpu_online_mask);
360call:
361 ret = smp_call_function_single(cpu, func, info, wait);
362 put_cpu();
363 return ret;
364}
365EXPORT_SYMBOL_GPL(smp_call_function_any);
366
Jens Axboe3d442232008-06-26 11:21:34 +0200367/**
Heiko Carstens27c379f2010-09-10 13:47:29 +0200368 * __smp_call_function_single(): Run a function on a specific CPU
Jens Axboe3d442232008-06-26 11:21:34 +0200369 * @cpu: The CPU to run on.
370 * @data: Pre-allocated and setup data structure
Heiko Carstens27c379f2010-09-10 13:47:29 +0200371 * @wait: If true, wait until function has completed on specified CPU.
Jens Axboe3d442232008-06-26 11:21:34 +0200372 *
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100373 * Like smp_call_function_single(), but allow caller to pass in a
374 * pre-allocated data structure. Useful for embedding @data inside
375 * other structures, for instance.
Jens Axboe3d442232008-06-26 11:21:34 +0200376 */
Peter Zijlstra6e275632009-02-25 13:59:48 +0100377void __smp_call_function_single(int cpu, struct call_single_data *data,
378 int wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200379{
Heiko Carstens27c379f2010-09-10 13:47:29 +0200380 unsigned int this_cpu;
381 unsigned long flags;
Jens Axboe3d442232008-06-26 11:21:34 +0200382
Heiko Carstens27c379f2010-09-10 13:47:29 +0200383 this_cpu = get_cpu();
Suresh Siddha269c8612009-08-19 18:05:35 -0700384 /*
385 * Can deadlock when called with interrupts disabled.
386 * We allow cpu's that are not yet online though, as no one else can
387 * send smp call function interrupt to this cpu and as such deadlocks
388 * can't happen.
389 */
390 WARN_ON_ONCE(cpu_online(smp_processor_id()) && wait && irqs_disabled()
391 && !oops_in_progress);
Peter Zijlstra6e275632009-02-25 13:59:48 +0100392
Heiko Carstens27c379f2010-09-10 13:47:29 +0200393 if (cpu == this_cpu) {
394 local_irq_save(flags);
395 data->func(data->info);
396 local_irq_restore(flags);
397 } else {
398 csd_lock(data);
399 generic_exec_single(cpu, data, wait);
400 }
401 put_cpu();
Jens Axboe3d442232008-06-26 11:21:34 +0200402}
403
404/**
Rusty Russell54b11e62008-12-30 09:05:16 +1030405 * smp_call_function_many(): Run a function on a set of other CPUs.
406 * @mask: The set of cpus to run on (only runs on online subset).
Jens Axboe3d442232008-06-26 11:21:34 +0200407 * @func: The function to run. This must be fast and non-blocking.
408 * @info: An arbitrary pointer to pass to the function.
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100409 * @wait: If true, wait (atomically) until function has completed
410 * on other CPUs.
Jens Axboe3d442232008-06-26 11:21:34 +0200411 *
Sheng Yang72f279b2009-10-22 19:19:34 +0800412 * If @wait is true, then returns once @func has returned.
Jens Axboe3d442232008-06-26 11:21:34 +0200413 *
414 * You must not call this function with disabled interrupts or from a
415 * hardware interrupt handler or from a bottom half handler. Preemption
416 * must be disabled when calling this function.
417 */
Rusty Russell54b11e62008-12-30 09:05:16 +1030418void smp_call_function_many(const struct cpumask *mask,
David Howells3a5f65d2010-10-27 17:28:36 +0100419 smp_call_func_t func, void *info, bool wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200420{
Rusty Russell54b11e62008-12-30 09:05:16 +1030421 struct call_function_data *data;
Jens Axboe3d442232008-06-26 11:21:34 +0200422 unsigned long flags;
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100423 int cpu, next_cpu, this_cpu = smp_processor_id();
Jens Axboe3d442232008-06-26 11:21:34 +0200424
Suresh Siddha269c8612009-08-19 18:05:35 -0700425 /*
426 * Can deadlock when called with interrupts disabled.
427 * We allow cpu's that are not yet online though, as no one else can
428 * send smp call function interrupt to this cpu and as such deadlocks
429 * can't happen.
430 */
431 WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
432 && !oops_in_progress);
Jens Axboe3d442232008-06-26 11:21:34 +0200433
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100434 /* So, what's a CPU they want? Ignoring this one. */
Rusty Russell54b11e62008-12-30 09:05:16 +1030435 cpu = cpumask_first_and(mask, cpu_online_mask);
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100436 if (cpu == this_cpu)
Rusty Russell54b11e62008-12-30 09:05:16 +1030437 cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100438
Rusty Russell54b11e62008-12-30 09:05:16 +1030439 /* No online cpus? We're done. */
440 if (cpu >= nr_cpu_ids)
441 return;
Jens Axboe3d442232008-06-26 11:21:34 +0200442
Rusty Russell54b11e62008-12-30 09:05:16 +1030443 /* Do we have another CPU which isn't us? */
444 next_cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100445 if (next_cpu == this_cpu)
Rusty Russell54b11e62008-12-30 09:05:16 +1030446 next_cpu = cpumask_next_and(next_cpu, mask, cpu_online_mask);
447
448 /* Fastpath: do that cpu by itself. */
449 if (next_cpu >= nr_cpu_ids) {
450 smp_call_function_single(cpu, func, info, wait);
451 return;
Jens Axboe3d442232008-06-26 11:21:34 +0200452 }
453
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100454 data = &__get_cpu_var(cfd_data);
455 csd_lock(&data->csd);
Jens Axboe3d442232008-06-26 11:21:34 +0200456
Jens Axboe3d442232008-06-26 11:21:34 +0200457 data->csd.func = func;
458 data->csd.info = info;
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100459 cpumask_and(data->cpumask, mask, cpu_online_mask);
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100460 cpumask_clear_cpu(this_cpu, data->cpumask);
Xiao Guangrong54fdade2009-09-22 16:43:39 -0700461 atomic_set(&data->refs, cpumask_weight(data->cpumask));
Jens Axboe3d442232008-06-26 11:21:34 +0200462
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100463 raw_spin_lock_irqsave(&call_function.lock, flags);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100464 /*
465 * Place entry at the _HEAD_ of the list, so that any cpu still
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100466 * observing the entry in generic_smp_call_function_interrupt()
467 * will not miss any other list entries:
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100468 */
469 list_add_rcu(&data->csd.list, &call_function.queue);
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100470 raw_spin_unlock_irqrestore(&call_function.lock, flags);
Jens Axboe3d442232008-06-26 11:21:34 +0200471
Suresh Siddha561920a02008-10-30 18:28:41 +0100472 /*
473 * Make the list addition visible before sending the ipi.
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100474 * (IPIs must obey or appear to obey normal Linux cache
475 * coherency rules -- see comment in generic_exec_single).
Suresh Siddha561920a02008-10-30 18:28:41 +0100476 */
477 smp_mb();
478
Jens Axboe3d442232008-06-26 11:21:34 +0200479 /* Send a message to all CPUs in the map */
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100480 arch_send_call_function_ipi_mask(data->cpumask);
Jens Axboe3d442232008-06-26 11:21:34 +0200481
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100482 /* Optionally wait for the CPUs to complete */
Rusty Russell54b11e62008-12-30 09:05:16 +1030483 if (wait)
Peter Zijlstra6e275632009-02-25 13:59:48 +0100484 csd_lock_wait(&data->csd);
Jens Axboe3d442232008-06-26 11:21:34 +0200485}
Rusty Russell54b11e62008-12-30 09:05:16 +1030486EXPORT_SYMBOL(smp_call_function_many);
Jens Axboe3d442232008-06-26 11:21:34 +0200487
488/**
489 * smp_call_function(): Run a function on all other CPUs.
490 * @func: The function to run. This must be fast and non-blocking.
491 * @info: An arbitrary pointer to pass to the function.
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100492 * @wait: If true, wait (atomically) until function has completed
493 * on other CPUs.
Jens Axboe3d442232008-06-26 11:21:34 +0200494 *
Rusty Russell54b11e62008-12-30 09:05:16 +1030495 * Returns 0.
Jens Axboe3d442232008-06-26 11:21:34 +0200496 *
497 * If @wait is true, then returns once @func has returned; otherwise
Sheng Yang72f279b2009-10-22 19:19:34 +0800498 * it returns just before the target cpu calls @func.
Jens Axboe3d442232008-06-26 11:21:34 +0200499 *
500 * You must not call this function with disabled interrupts or from a
501 * hardware interrupt handler or from a bottom half handler.
502 */
David Howells3a5f65d2010-10-27 17:28:36 +0100503int smp_call_function(smp_call_func_t func, void *info, int wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200504{
Jens Axboe3d442232008-06-26 11:21:34 +0200505 preempt_disable();
Rusty Russell54b11e62008-12-30 09:05:16 +1030506 smp_call_function_many(cpu_online_mask, func, info, wait);
Jens Axboe3d442232008-06-26 11:21:34 +0200507 preempt_enable();
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100508
Rusty Russell54b11e62008-12-30 09:05:16 +1030509 return 0;
Jens Axboe3d442232008-06-26 11:21:34 +0200510}
511EXPORT_SYMBOL(smp_call_function);
512
513void ipi_call_lock(void)
514{
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100515 raw_spin_lock(&call_function.lock);
Jens Axboe3d442232008-06-26 11:21:34 +0200516}
517
518void ipi_call_unlock(void)
519{
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100520 raw_spin_unlock(&call_function.lock);
Jens Axboe3d442232008-06-26 11:21:34 +0200521}
522
523void ipi_call_lock_irq(void)
524{
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100525 raw_spin_lock_irq(&call_function.lock);
Jens Axboe3d442232008-06-26 11:21:34 +0200526}
527
528void ipi_call_unlock_irq(void)
529{
Thomas Gleixner9f5a5622009-11-17 15:40:01 +0100530 raw_spin_unlock_irq(&call_function.lock);
Jens Axboe3d442232008-06-26 11:21:34 +0200531}