ptrace: reintroduce __ptrace_detach() as a callee of ptrace_exit()
[linux-2.6/mini2440.git] / kernel / smp.c
blobbbedbb7efe32816c2a3e7aba263d077337bc6158
1 /*
2 * Generic helpers for smp ipi calls
4 * (C) Jens Axboe <jens.axboe@oracle.com> 2008
6 */
7 #include <linux/init.h>
8 #include <linux/module.h>
9 #include <linux/percpu.h>
10 #include <linux/rcupdate.h>
11 #include <linux/rculist.h>
12 #include <linux/smp.h>
14 static DEFINE_PER_CPU(struct call_single_queue, call_single_queue);
15 static LIST_HEAD(call_function_queue);
16 __cacheline_aligned_in_smp DEFINE_SPINLOCK(call_function_lock);
18 enum {
19 CSD_FLAG_WAIT = 0x01,
20 CSD_FLAG_ALLOC = 0x02,
21 CSD_FLAG_LOCK = 0x04,
24 struct call_function_data {
25 struct call_single_data csd;
26 spinlock_t lock;
27 unsigned int refs;
28 struct rcu_head rcu_head;
29 unsigned long cpumask_bits[];
32 struct call_single_queue {
33 struct list_head list;
34 spinlock_t lock;
37 static int __cpuinit init_call_single_data(void)
39 int i;
41 for_each_possible_cpu(i) {
42 struct call_single_queue *q = &per_cpu(call_single_queue, i);
44 spin_lock_init(&q->lock);
45 INIT_LIST_HEAD(&q->list);
47 return 0;
49 early_initcall(init_call_single_data);
51 static void csd_flag_wait(struct call_single_data *data)
53 /* Wait for response */
54 do {
55 if (!(data->flags & CSD_FLAG_WAIT))
56 break;
57 cpu_relax();
58 } while (1);
62 * Insert a previously allocated call_single_data element for execution
63 * on the given CPU. data must already have ->func, ->info, and ->flags set.
65 static void generic_exec_single(int cpu, struct call_single_data *data)
67 struct call_single_queue *dst = &per_cpu(call_single_queue, cpu);
68 int wait = data->flags & CSD_FLAG_WAIT, ipi;
69 unsigned long flags;
71 spin_lock_irqsave(&dst->lock, flags);
72 ipi = list_empty(&dst->list);
73 list_add_tail(&data->list, &dst->list);
74 spin_unlock_irqrestore(&dst->lock, flags);
77 * Make the list addition visible before sending the ipi.
79 smp_mb();
81 if (ipi)
82 arch_send_call_function_single_ipi(cpu);
84 if (wait)
85 csd_flag_wait(data);
88 static void rcu_free_call_data(struct rcu_head *head)
90 struct call_function_data *data;
92 data = container_of(head, struct call_function_data, rcu_head);
94 kfree(data);
98 * Invoked by arch to handle an IPI for call function. Must be called with
99 * interrupts disabled.
101 void generic_smp_call_function_interrupt(void)
103 struct call_function_data *data;
104 int cpu = get_cpu();
107 * It's ok to use list_for_each_rcu() here even though we may delete
108 * 'pos', since list_del_rcu() doesn't clear ->next
110 rcu_read_lock();
111 list_for_each_entry_rcu(data, &call_function_queue, csd.list) {
112 int refs;
114 if (!cpumask_test_cpu(cpu, to_cpumask(data->cpumask_bits)))
115 continue;
117 data->csd.func(data->csd.info);
119 spin_lock(&data->lock);
120 cpumask_clear_cpu(cpu, to_cpumask(data->cpumask_bits));
121 WARN_ON(data->refs == 0);
122 data->refs--;
123 refs = data->refs;
124 spin_unlock(&data->lock);
126 if (refs)
127 continue;
129 spin_lock(&call_function_lock);
130 list_del_rcu(&data->csd.list);
131 spin_unlock(&call_function_lock);
133 if (data->csd.flags & CSD_FLAG_WAIT) {
135 * serialize stores to data with the flag clear
136 * and wakeup
138 smp_wmb();
139 data->csd.flags &= ~CSD_FLAG_WAIT;
141 if (data->csd.flags & CSD_FLAG_ALLOC)
142 call_rcu(&data->rcu_head, rcu_free_call_data);
144 rcu_read_unlock();
146 put_cpu();
150 * Invoked by arch to handle an IPI for call function single. Must be called
151 * from the arch with interrupts disabled.
153 void generic_smp_call_function_single_interrupt(void)
155 struct call_single_queue *q = &__get_cpu_var(call_single_queue);
156 LIST_HEAD(list);
159 * Need to see other stores to list head for checking whether
160 * list is empty without holding q->lock
162 smp_read_barrier_depends();
163 while (!list_empty(&q->list)) {
164 unsigned int data_flags;
166 spin_lock(&q->lock);
167 list_replace_init(&q->list, &list);
168 spin_unlock(&q->lock);
170 while (!list_empty(&list)) {
171 struct call_single_data *data;
173 data = list_entry(list.next, struct call_single_data,
174 list);
175 list_del(&data->list);
178 * 'data' can be invalid after this call if
179 * flags == 0 (when called through
180 * generic_exec_single(), so save them away before
181 * making the call.
183 data_flags = data->flags;
185 data->func(data->info);
187 if (data_flags & CSD_FLAG_WAIT) {
188 smp_wmb();
189 data->flags &= ~CSD_FLAG_WAIT;
190 } else if (data_flags & CSD_FLAG_LOCK) {
191 smp_wmb();
192 data->flags &= ~CSD_FLAG_LOCK;
193 } else if (data_flags & CSD_FLAG_ALLOC)
194 kfree(data);
197 * See comment on outer loop
199 smp_read_barrier_depends();
203 static DEFINE_PER_CPU(struct call_single_data, csd_data);
206 * smp_call_function_single - Run a function on a specific CPU
207 * @func: The function to run. This must be fast and non-blocking.
208 * @info: An arbitrary pointer to pass to the function.
209 * @wait: If true, wait until function has completed on other CPUs.
211 * Returns 0 on success, else a negative status code. Note that @wait
212 * will be implicitly turned on in case of allocation failures, since
213 * we fall back to on-stack allocation.
215 int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
216 int wait)
218 struct call_single_data d;
219 unsigned long flags;
220 /* prevent preemption and reschedule on another processor,
221 as well as CPU removal */
222 int me = get_cpu();
223 int err = 0;
225 /* Can deadlock when called with interrupts disabled */
226 WARN_ON(irqs_disabled());
228 if (cpu == me) {
229 local_irq_save(flags);
230 func(info);
231 local_irq_restore(flags);
232 } else if ((unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) {
233 struct call_single_data *data;
235 if (!wait) {
237 * We are calling a function on a single CPU
238 * and we are not going to wait for it to finish.
239 * We first try to allocate the data, but if we
240 * fail, we fall back to use a per cpu data to pass
241 * the information to that CPU. Since all callers
242 * of this code will use the same data, we must
243 * synchronize the callers to prevent a new caller
244 * from corrupting the data before the callee
245 * can access it.
247 * The CSD_FLAG_LOCK is used to let us know when
248 * the IPI handler is done with the data.
249 * The first caller will set it, and the callee
250 * will clear it. The next caller must wait for
251 * it to clear before we set it again. This
252 * will make sure the callee is done with the
253 * data before a new caller will use it.
255 data = kmalloc(sizeof(*data), GFP_ATOMIC);
256 if (data)
257 data->flags = CSD_FLAG_ALLOC;
258 else {
259 data = &per_cpu(csd_data, me);
260 while (data->flags & CSD_FLAG_LOCK)
261 cpu_relax();
262 data->flags = CSD_FLAG_LOCK;
264 } else {
265 data = &d;
266 data->flags = CSD_FLAG_WAIT;
269 data->func = func;
270 data->info = info;
271 generic_exec_single(cpu, data);
272 } else {
273 err = -ENXIO; /* CPU not online */
276 put_cpu();
277 return err;
279 EXPORT_SYMBOL(smp_call_function_single);
282 * __smp_call_function_single(): Run a function on another CPU
283 * @cpu: The CPU to run on.
284 * @data: Pre-allocated and setup data structure
286 * Like smp_call_function_single(), but allow caller to pass in a pre-allocated
287 * data structure. Useful for embedding @data inside other structures, for
288 * instance.
291 void __smp_call_function_single(int cpu, struct call_single_data *data)
293 /* Can deadlock when called with interrupts disabled */
294 WARN_ON((data->flags & CSD_FLAG_WAIT) && irqs_disabled());
296 generic_exec_single(cpu, data);
299 /* FIXME: Shim for archs using old arch_send_call_function_ipi API. */
300 #ifndef arch_send_call_function_ipi_mask
301 #define arch_send_call_function_ipi_mask(maskp) \
302 arch_send_call_function_ipi(*(maskp))
303 #endif
306 * smp_call_function_many(): Run a function on a set of other CPUs.
307 * @mask: The set of cpus to run on (only runs on online subset).
308 * @func: The function to run. This must be fast and non-blocking.
309 * @info: An arbitrary pointer to pass to the function.
310 * @wait: If true, wait (atomically) until function has completed on other CPUs.
312 * If @wait is true, then returns once @func has returned. Note that @wait
313 * will be implicitly turned on in case of allocation failures, since
314 * we fall back to on-stack allocation.
316 * You must not call this function with disabled interrupts or from a
317 * hardware interrupt handler or from a bottom half handler. Preemption
318 * must be disabled when calling this function.
320 void smp_call_function_many(const struct cpumask *mask,
321 void (*func)(void *), void *info,
322 bool wait)
324 struct call_function_data *data;
325 unsigned long flags;
326 int cpu, next_cpu;
328 /* Can deadlock when called with interrupts disabled */
329 WARN_ON(irqs_disabled());
331 /* So, what's a CPU they want? Ignoring this one. */
332 cpu = cpumask_first_and(mask, cpu_online_mask);
333 if (cpu == smp_processor_id())
334 cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
335 /* No online cpus? We're done. */
336 if (cpu >= nr_cpu_ids)
337 return;
339 /* Do we have another CPU which isn't us? */
340 next_cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
341 if (next_cpu == smp_processor_id())
342 next_cpu = cpumask_next_and(next_cpu, mask, cpu_online_mask);
344 /* Fastpath: do that cpu by itself. */
345 if (next_cpu >= nr_cpu_ids) {
346 smp_call_function_single(cpu, func, info, wait);
347 return;
350 data = kmalloc(sizeof(*data) + cpumask_size(), GFP_ATOMIC);
351 if (unlikely(!data)) {
352 /* Slow path. */
353 for_each_online_cpu(cpu) {
354 if (cpu == smp_processor_id())
355 continue;
356 if (cpumask_test_cpu(cpu, mask))
357 smp_call_function_single(cpu, func, info, wait);
359 return;
362 spin_lock_init(&data->lock);
363 data->csd.flags = CSD_FLAG_ALLOC;
364 if (wait)
365 data->csd.flags |= CSD_FLAG_WAIT;
366 data->csd.func = func;
367 data->csd.info = info;
368 cpumask_and(to_cpumask(data->cpumask_bits), mask, cpu_online_mask);
369 cpumask_clear_cpu(smp_processor_id(), to_cpumask(data->cpumask_bits));
370 data->refs = cpumask_weight(to_cpumask(data->cpumask_bits));
372 spin_lock_irqsave(&call_function_lock, flags);
373 list_add_tail_rcu(&data->csd.list, &call_function_queue);
374 spin_unlock_irqrestore(&call_function_lock, flags);
377 * Make the list addition visible before sending the ipi.
379 smp_mb();
381 /* Send a message to all CPUs in the map */
382 arch_send_call_function_ipi_mask(to_cpumask(data->cpumask_bits));
384 /* optionally wait for the CPUs to complete */
385 if (wait)
386 csd_flag_wait(&data->csd);
388 EXPORT_SYMBOL(smp_call_function_many);
391 * smp_call_function(): Run a function on all other CPUs.
392 * @func: The function to run. This must be fast and non-blocking.
393 * @info: An arbitrary pointer to pass to the function.
394 * @wait: If true, wait (atomically) until function has completed on other CPUs.
396 * Returns 0.
398 * If @wait is true, then returns once @func has returned; otherwise
399 * it returns just before the target cpu calls @func. In case of allocation
400 * failure, @wait will be implicitly turned on.
402 * You must not call this function with disabled interrupts or from a
403 * hardware interrupt handler or from a bottom half handler.
405 int smp_call_function(void (*func)(void *), void *info, int wait)
407 preempt_disable();
408 smp_call_function_many(cpu_online_mask, func, info, wait);
409 preempt_enable();
410 return 0;
412 EXPORT_SYMBOL(smp_call_function);
414 void ipi_call_lock(void)
416 spin_lock(&call_function_lock);
419 void ipi_call_unlock(void)
421 spin_unlock(&call_function_lock);
424 void ipi_call_lock_irq(void)
426 spin_lock_irq(&call_function_lock);
429 void ipi_call_unlock_irq(void)
431 spin_unlock_irq(&call_function_lock);