Blame view

kernel/smp.c 18.5 KB
3d4422332   Jens Axboe   Add generic helpe...
1
2
3
4
  /*
   * Generic helpers for smp ipi calls
   *
   * (C) Jens Axboe <jens.axboe@oracle.com> 2008
3d4422332   Jens Axboe   Add generic helpe...
5
   */
3d4422332   Jens Axboe   Add generic helpe...
6
  #include <linux/rcupdate.h>
59190f421   Linus Torvalds   Merge branch 'gen...
7
  #include <linux/rculist.h>
641cd4cfc   Ingo Molnar   generic-ipi: elim...
8
  #include <linux/kernel.h>
0b13fda1e   Ingo Molnar   generic-ipi: clea...
9
10
11
  #include <linux/module.h>
  #include <linux/percpu.h>
  #include <linux/init.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
12
  #include <linux/gfp.h>
3d4422332   Jens Axboe   Add generic helpe...
13
  #include <linux/smp.h>
8969a5ede   Peter Zijlstra   generic-ipi: remo...
14
  #include <linux/cpu.h>
3d4422332   Jens Axboe   Add generic helpe...
15

351f8f8e6   Amerigo Wang   kernel: clean up ...
16
  #ifdef CONFIG_USE_GENERIC_SMP_HELPERS
8969a5ede   Peter Zijlstra   generic-ipi: remo...
17
18
  static struct {
  	struct list_head	queue;
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
19
  	raw_spinlock_t		lock;
0b13fda1e   Ingo Molnar   generic-ipi: clea...
20
21
22
  } call_function __cacheline_aligned_in_smp =
  	{
  		.queue		= LIST_HEAD_INIT(call_function.queue),
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
23
  		.lock		= __RAW_SPIN_LOCK_UNLOCKED(call_function.lock),
0b13fda1e   Ingo Molnar   generic-ipi: clea...
24
  	};
3d4422332   Jens Axboe   Add generic helpe...
25
26
  
  enum {
6e2756376   Peter Zijlstra   generic-ipi: remo...
27
  	CSD_FLAG_LOCK		= 0x01,
3d4422332   Jens Axboe   Add generic helpe...
28
29
30
  };
  
  struct call_function_data {
0b13fda1e   Ingo Molnar   generic-ipi: clea...
31
  	struct call_single_data	csd;
54fdade1c   Xiao Guangrong   generic-ipi: make...
32
  	atomic_t		refs;
0b13fda1e   Ingo Molnar   generic-ipi: clea...
33
  	cpumask_var_t		cpumask;
3d4422332   Jens Axboe   Add generic helpe...
34
  };
e03bcb686   Milton Miller   generic-ipi: Opti...
35
  static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_function_data, cfd_data);
3d4422332   Jens Axboe   Add generic helpe...
36
  struct call_single_queue {
0b13fda1e   Ingo Molnar   generic-ipi: clea...
37
  	struct list_head	list;
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
38
  	raw_spinlock_t		lock;
3d4422332   Jens Axboe   Add generic helpe...
39
  };
e03bcb686   Milton Miller   generic-ipi: Opti...
40
  static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_queue, call_single_queue);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
41
42
43
44
45
46
47
48
49
50
  
  static int
  hotplug_cfd(struct notifier_block *nfb, unsigned long action, void *hcpu)
  {
  	long cpu = (long)hcpu;
  	struct call_function_data *cfd = &per_cpu(cfd_data, cpu);
  
  	switch (action) {
  	case CPU_UP_PREPARE:
  	case CPU_UP_PREPARE_FROZEN:
eaa958402   Yinghai Lu   cpumask: alloc ze...
51
  		if (!zalloc_cpumask_var_node(&cfd->cpumask, GFP_KERNEL,
8969a5ede   Peter Zijlstra   generic-ipi: remo...
52
  				cpu_to_node(cpu)))
80b5184cc   Akinobu Mita   kernel/: convert ...
53
  			return notifier_from_errno(-ENOMEM);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
54
  		break;
69dd647f9   Xiao Guangrong   generic-ipi: fix ...
55
  #ifdef CONFIG_HOTPLUG_CPU
8969a5ede   Peter Zijlstra   generic-ipi: remo...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  	case CPU_UP_CANCELED:
  	case CPU_UP_CANCELED_FROZEN:
  
  	case CPU_DEAD:
  	case CPU_DEAD_FROZEN:
  		free_cpumask_var(cfd->cpumask);
  		break;
  #endif
  	};
  
  	return NOTIFY_OK;
  }
  
  static struct notifier_block __cpuinitdata hotplug_cfd_notifier = {
0b13fda1e   Ingo Molnar   generic-ipi: clea...
70
  	.notifier_call		= hotplug_cfd,
8969a5ede   Peter Zijlstra   generic-ipi: remo...
71
  };
7babe8db9   Eduard - Gabriel Munteanu   Full conversion t...
72
  static int __cpuinit init_call_single_data(void)
3d4422332   Jens Axboe   Add generic helpe...
73
  {
8969a5ede   Peter Zijlstra   generic-ipi: remo...
74
  	void *cpu = (void *)(long)smp_processor_id();
3d4422332   Jens Axboe   Add generic helpe...
75
76
77
78
  	int i;
  
  	for_each_possible_cpu(i) {
  		struct call_single_queue *q = &per_cpu(call_single_queue, i);
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
79
  		raw_spin_lock_init(&q->lock);
3d4422332   Jens Axboe   Add generic helpe...
80
81
  		INIT_LIST_HEAD(&q->list);
  	}
8969a5ede   Peter Zijlstra   generic-ipi: remo...
82
83
84
  
  	hotplug_cfd(&hotplug_cfd_notifier, CPU_UP_PREPARE, cpu);
  	register_cpu_notifier(&hotplug_cfd_notifier);
7babe8db9   Eduard - Gabriel Munteanu   Full conversion t...
85
  	return 0;
3d4422332   Jens Axboe   Add generic helpe...
86
  }
7babe8db9   Eduard - Gabriel Munteanu   Full conversion t...
87
  early_initcall(init_call_single_data);
3d4422332   Jens Axboe   Add generic helpe...
88

8969a5ede   Peter Zijlstra   generic-ipi: remo...
89
  /*
8969a5ede   Peter Zijlstra   generic-ipi: remo...
90
91
   * csd_lock/csd_unlock used to serialize access to per-cpu csd resources
   *
0b13fda1e   Ingo Molnar   generic-ipi: clea...
92
93
94
   * For non-synchronous ipi calls the csd can still be in use by the
   * previous function call. For multi-cpu calls its even more interesting
   * as we'll have to ensure no other cpu is observing our csd.
8969a5ede   Peter Zijlstra   generic-ipi: remo...
95
   */
6e2756376   Peter Zijlstra   generic-ipi: remo...
96
  static void csd_lock_wait(struct call_single_data *data)
8969a5ede   Peter Zijlstra   generic-ipi: remo...
97
98
99
  {
  	while (data->flags & CSD_FLAG_LOCK)
  		cpu_relax();
6e2756376   Peter Zijlstra   generic-ipi: remo...
100
101
102
103
104
  }
  
  static void csd_lock(struct call_single_data *data)
  {
  	csd_lock_wait(data);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
105
106
107
  	data->flags = CSD_FLAG_LOCK;
  
  	/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
108
109
110
  	 * prevent CPU from reordering the above assignment
  	 * to ->flags with any subsequent assignments to other
  	 * fields of the specified call_single_data structure:
8969a5ede   Peter Zijlstra   generic-ipi: remo...
111
  	 */
8969a5ede   Peter Zijlstra   generic-ipi: remo...
112
113
114
115
116
117
  	smp_mb();
  }
  
  static void csd_unlock(struct call_single_data *data)
  {
  	WARN_ON(!(data->flags & CSD_FLAG_LOCK));
0b13fda1e   Ingo Molnar   generic-ipi: clea...
118

8969a5ede   Peter Zijlstra   generic-ipi: remo...
119
  	/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
120
  	 * ensure we're all done before releasing data:
8969a5ede   Peter Zijlstra   generic-ipi: remo...
121
122
  	 */
  	smp_mb();
0b13fda1e   Ingo Molnar   generic-ipi: clea...
123

8969a5ede   Peter Zijlstra   generic-ipi: remo...
124
  	data->flags &= ~CSD_FLAG_LOCK;
3d4422332   Jens Axboe   Add generic helpe...
125
126
127
  }
  
  /*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
128
129
130
   * Insert a previously allocated call_single_data element
   * for execution on the given CPU. data must already have
   * ->func, ->info, and ->flags set.
3d4422332   Jens Axboe   Add generic helpe...
131
   */
6e2756376   Peter Zijlstra   generic-ipi: remo...
132
133
  static
  void generic_exec_single(int cpu, struct call_single_data *data, int wait)
3d4422332   Jens Axboe   Add generic helpe...
134
135
  {
  	struct call_single_queue *dst = &per_cpu(call_single_queue, cpu);
3d4422332   Jens Axboe   Add generic helpe...
136
  	unsigned long flags;
6e2756376   Peter Zijlstra   generic-ipi: remo...
137
  	int ipi;
3d4422332   Jens Axboe   Add generic helpe...
138

9f5a5621e   Thomas Gleixner   smp: Convert smpl...
139
  	raw_spin_lock_irqsave(&dst->lock, flags);
3d4422332   Jens Axboe   Add generic helpe...
140
141
  	ipi = list_empty(&dst->list);
  	list_add_tail(&data->list, &dst->list);
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
142
  	raw_spin_unlock_irqrestore(&dst->lock, flags);
3d4422332   Jens Axboe   Add generic helpe...
143

561920a0d   Suresh Siddha   generic-ipi: fix ...
144
  	/*
15d0d3b33   Nick Piggin   generic IPI: simp...
145
146
147
148
149
150
151
  	 * The list addition should be visible before sending the IPI
  	 * handler locks the list to pull the entry off it because of
  	 * normal cache coherency rules implied by spinlocks.
  	 *
  	 * If IPIs can go out of order to the cache coherency protocol
  	 * in an architecture, sufficient synchronisation should be added
  	 * to arch code to make it appear to obey cache coherency WRT
0b13fda1e   Ingo Molnar   generic-ipi: clea...
152
153
  	 * locking and barrier primitives. Generic code isn't really
  	 * equipped to do the right thing...
561920a0d   Suresh Siddha   generic-ipi: fix ...
154
  	 */
3d4422332   Jens Axboe   Add generic helpe...
155
156
157
158
  	if (ipi)
  		arch_send_call_function_single_ipi(cpu);
  
  	if (wait)
6e2756376   Peter Zijlstra   generic-ipi: remo...
159
  		csd_lock_wait(data);
3d4422332   Jens Axboe   Add generic helpe...
160
161
162
163
164
165
166
167
168
  }
  
  /*
   * Invoked by arch to handle an IPI for call function. Must be called with
   * interrupts disabled.
   */
  void generic_smp_call_function_interrupt(void)
  {
  	struct call_function_data *data;
c0f68c2fa   Xiao Guangrong   generic-ipi: clea...
169
  	int cpu = smp_processor_id();
3d4422332   Jens Axboe   Add generic helpe...
170
171
  
  	/*
269c861ba   Suresh Siddha   generic-ipi: Allo...
172
173
174
175
176
  	 * Shouldn't receive this interrupt on a cpu that is not yet online.
  	 */
  	WARN_ON_ONCE(!cpu_online(cpu));
  
  	/*
15d0d3b33   Nick Piggin   generic IPI: simp...
177
178
179
180
181
182
183
184
  	 * Ensure entry is visible on call_function_queue after we have
  	 * entered the IPI. See comment in smp_call_function_many.
  	 * If we don't have this, then we may miss an entry on the list
  	 * and never get another IPI to process it.
  	 */
  	smp_mb();
  
  	/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
185
186
  	 * It's ok to use list_for_each_rcu() here even though we may
  	 * delete 'pos', since list_del_rcu() doesn't clear ->next
3d4422332   Jens Axboe   Add generic helpe...
187
  	 */
8969a5ede   Peter Zijlstra   generic-ipi: remo...
188
  	list_for_each_entry_rcu(data, &call_function.queue, csd.list) {
3d4422332   Jens Axboe   Add generic helpe...
189
  		int refs;
c8def554d   Milton Miller   smp_call_function...
190
  		smp_call_func_t func;
3d4422332   Jens Axboe   Add generic helpe...
191

6dc198999   Anton Blanchard   kernel/smp.c: fix...
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
  		/*
  		 * Since we walk the list without any locks, we might
  		 * see an entry that was completed, removed from the
  		 * list and is in the process of being reused.
  		 *
  		 * We must check that the cpu is in the cpumask before
  		 * checking the refs, and both must be set before
  		 * executing the callback on this cpu.
  		 */
  
  		if (!cpumask_test_cpu(cpu, data->cpumask))
  			continue;
  
  		smp_rmb();
  
  		if (atomic_read(&data->refs) == 0)
  			continue;
c8def554d   Milton Miller   smp_call_function...
209
210
  		func = data->csd.func;		/* save for later warn */
  		func(data->csd.info);
3d4422332   Jens Axboe   Add generic helpe...
211

225c8e010   Milton Miller   kernel/smp.c: con...
212
  		/*
c8def554d   Milton Miller   smp_call_function...
213
214
215
216
  		 * If the cpu mask is not still set then func enabled
  		 * interrupts (BUG), and this cpu took another smp call
  		 * function interrupt and executed func(info) twice
  		 * on this cpu.  That nested execution decremented refs.
225c8e010   Milton Miller   kernel/smp.c: con...
217
218
  		 */
  		if (!cpumask_test_and_clear_cpu(cpu, data->cpumask)) {
c8def554d   Milton Miller   smp_call_function...
219
220
  			WARN(1, "%pf enabled interrupts and double executed
  ", func);
225c8e010   Milton Miller   kernel/smp.c: con...
221
222
  			continue;
  		}
54fdade1c   Xiao Guangrong   generic-ipi: make...
223
224
  		refs = atomic_dec_return(&data->refs);
  		WARN_ON(refs < 0);
3d4422332   Jens Axboe   Add generic helpe...
225
226
227
  
  		if (refs)
  			continue;
225c8e010   Milton Miller   kernel/smp.c: con...
228
229
230
231
232
  		WARN_ON(!cpumask_empty(data->cpumask));
  
  		raw_spin_lock(&call_function.lock);
  		list_del_rcu(&data->csd.list);
  		raw_spin_unlock(&call_function.lock);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
233
  		csd_unlock(&data->csd);
3d4422332   Jens Axboe   Add generic helpe...
234
  	}
3d4422332   Jens Axboe   Add generic helpe...
235

3d4422332   Jens Axboe   Add generic helpe...
236
237
238
  }
  
  /*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
239
240
   * Invoked by arch to handle an IPI for call function single. Must be
   * called from the arch with interrupts disabled.
3d4422332   Jens Axboe   Add generic helpe...
241
242
243
244
   */
  void generic_smp_call_function_single_interrupt(void)
  {
  	struct call_single_queue *q = &__get_cpu_var(call_single_queue);
15d0d3b33   Nick Piggin   generic IPI: simp...
245
  	unsigned int data_flags;
0b13fda1e   Ingo Molnar   generic-ipi: clea...
246
  	LIST_HEAD(list);
3d4422332   Jens Axboe   Add generic helpe...
247

269c861ba   Suresh Siddha   generic-ipi: Allo...
248
249
250
251
  	/*
  	 * Shouldn't receive this interrupt on a cpu that is not yet online.
  	 */
  	WARN_ON_ONCE(!cpu_online(smp_processor_id()));
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
252
  	raw_spin_lock(&q->lock);
15d0d3b33   Nick Piggin   generic IPI: simp...
253
  	list_replace_init(&q->list, &list);
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
254
  	raw_spin_unlock(&q->lock);
3d4422332   Jens Axboe   Add generic helpe...
255

15d0d3b33   Nick Piggin   generic IPI: simp...
256
257
  	while (!list_empty(&list)) {
  		struct call_single_data *data;
3d4422332   Jens Axboe   Add generic helpe...
258

0b13fda1e   Ingo Molnar   generic-ipi: clea...
259
  		data = list_entry(list.next, struct call_single_data, list);
15d0d3b33   Nick Piggin   generic IPI: simp...
260
  		list_del(&data->list);
3d4422332   Jens Axboe   Add generic helpe...
261

3d4422332   Jens Axboe   Add generic helpe...
262
  		/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
263
264
265
  		 * 'data' can be invalid after this call if flags == 0
  		 * (when called through generic_exec_single()),
  		 * so save them away before making the call:
3d4422332   Jens Axboe   Add generic helpe...
266
  		 */
15d0d3b33   Nick Piggin   generic IPI: simp...
267
268
269
  		data_flags = data->flags;
  
  		data->func(data->info);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
270
  		/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
271
  		 * Unlocked CSDs are valid through generic_exec_single():
8969a5ede   Peter Zijlstra   generic-ipi: remo...
272
273
274
  		 */
  		if (data_flags & CSD_FLAG_LOCK)
  			csd_unlock(data);
3d4422332   Jens Axboe   Add generic helpe...
275
276
  	}
  }
e03bcb686   Milton Miller   generic-ipi: Opti...
277
  static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_data, csd_data);
d7240b988   Steven Rostedt   generic-ipi: use ...
278

3d4422332   Jens Axboe   Add generic helpe...
279
280
281
282
  /*
   * smp_call_function_single - Run a function on a specific CPU
   * @func: The function to run. This must be fast and non-blocking.
   * @info: An arbitrary pointer to pass to the function.
3d4422332   Jens Axboe   Add generic helpe...
283
284
   * @wait: If true, wait until function has completed on other CPUs.
   *
72f279b25   Sheng Yang   generic-ipi: Fix ...
285
   * Returns 0 on success, else a negative status code.
3d4422332   Jens Axboe   Add generic helpe...
286
   */
3a5f65df5   David Howells   Typedef SMP call ...
287
  int smp_call_function_single(int cpu, smp_call_func_t func, void *info,
8691e5a8f   Jens Axboe   smp_call_function...
288
  			     int wait)
3d4422332   Jens Axboe   Add generic helpe...
289
  {
8969a5ede   Peter Zijlstra   generic-ipi: remo...
290
291
292
  	struct call_single_data d = {
  		.flags = 0,
  	};
3d4422332   Jens Axboe   Add generic helpe...
293
  	unsigned long flags;
0b13fda1e   Ingo Molnar   generic-ipi: clea...
294
  	int this_cpu;
f73be6ded   H. Peter Anvin   smp: have smp_cal...
295
  	int err = 0;
3d4422332   Jens Axboe   Add generic helpe...
296

0b13fda1e   Ingo Molnar   generic-ipi: clea...
297
298
299
300
301
  	/*
  	 * prevent preemption and reschedule on another processor,
  	 * as well as CPU removal
  	 */
  	this_cpu = get_cpu();
269c861ba   Suresh Siddha   generic-ipi: Allo...
302
303
304
305
306
307
308
309
  	/*
  	 * Can deadlock when called with interrupts disabled.
  	 * We allow cpu's that are not yet online though, as no one else can
  	 * send smp call function interrupt to this cpu and as such deadlocks
  	 * can't happen.
  	 */
  	WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
  		     && !oops_in_progress);
3d4422332   Jens Axboe   Add generic helpe...
310

0b13fda1e   Ingo Molnar   generic-ipi: clea...
311
  	if (cpu == this_cpu) {
3d4422332   Jens Axboe   Add generic helpe...
312
313
314
  		local_irq_save(flags);
  		func(info);
  		local_irq_restore(flags);
0b13fda1e   Ingo Molnar   generic-ipi: clea...
315
316
317
  	} else {
  		if ((unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) {
  			struct call_single_data *data = &d;
3d4422332   Jens Axboe   Add generic helpe...
318

0b13fda1e   Ingo Molnar   generic-ipi: clea...
319
320
  			if (!wait)
  				data = &__get_cpu_var(csd_data);
6e2756376   Peter Zijlstra   generic-ipi: remo...
321

0b13fda1e   Ingo Molnar   generic-ipi: clea...
322
  			csd_lock(data);
3d4422332   Jens Axboe   Add generic helpe...
323

0b13fda1e   Ingo Molnar   generic-ipi: clea...
324
325
326
327
328
329
  			data->func = func;
  			data->info = info;
  			generic_exec_single(cpu, data, wait);
  		} else {
  			err = -ENXIO;	/* CPU not online */
  		}
3d4422332   Jens Axboe   Add generic helpe...
330
331
332
  	}
  
  	put_cpu();
0b13fda1e   Ingo Molnar   generic-ipi: clea...
333

f73be6ded   H. Peter Anvin   smp: have smp_cal...
334
  	return err;
3d4422332   Jens Axboe   Add generic helpe...
335
336
  }
  EXPORT_SYMBOL(smp_call_function_single);
2ea6dec4a   Rusty Russell   generic-ipi: Add ...
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
  /*
   * smp_call_function_any - Run a function on any of the given cpus
   * @mask: The mask of cpus it can run on.
   * @func: The function to run. This must be fast and non-blocking.
   * @info: An arbitrary pointer to pass to the function.
   * @wait: If true, wait until function has completed.
   *
   * Returns 0 on success, else a negative status code (if no cpus were online).
   * Note that @wait will be implicitly turned on in case of allocation failures,
   * since we fall back to on-stack allocation.
   *
   * Selection preference:
   *	1) current cpu if in @mask
   *	2) any cpu of current node if in @mask
   *	3) any other online cpu in @mask
   */
  int smp_call_function_any(const struct cpumask *mask,
3a5f65df5   David Howells   Typedef SMP call ...
354
  			  smp_call_func_t func, void *info, int wait)
2ea6dec4a   Rusty Russell   generic-ipi: Add ...
355
356
357
358
359
360
361
362
363
364
365
  {
  	unsigned int cpu;
  	const struct cpumask *nodemask;
  	int ret;
  
  	/* Try for same CPU (cheapest) */
  	cpu = get_cpu();
  	if (cpumask_test_cpu(cpu, mask))
  		goto call;
  
  	/* Try for same node. */
af2422c42   David John   smp_call_function...
366
  	nodemask = cpumask_of_node(cpu_to_node(cpu));
2ea6dec4a   Rusty Russell   generic-ipi: Add ...
367
368
369
370
371
372
373
374
375
376
377
378
379
380
  	for (cpu = cpumask_first_and(nodemask, mask); cpu < nr_cpu_ids;
  	     cpu = cpumask_next_and(cpu, nodemask, mask)) {
  		if (cpu_online(cpu))
  			goto call;
  	}
  
  	/* Any online will do: smp_call_function_single handles nr_cpu_ids. */
  	cpu = cpumask_any_and(mask, cpu_online_mask);
  call:
  	ret = smp_call_function_single(cpu, func, info, wait);
  	put_cpu();
  	return ret;
  }
  EXPORT_SYMBOL_GPL(smp_call_function_any);
3d4422332   Jens Axboe   Add generic helpe...
381
  /**
27c379f7f   Heiko Carstens   generic-ipi: Fix ...
382
   * __smp_call_function_single(): Run a function on a specific CPU
3d4422332   Jens Axboe   Add generic helpe...
383
384
   * @cpu: The CPU to run on.
   * @data: Pre-allocated and setup data structure
27c379f7f   Heiko Carstens   generic-ipi: Fix ...
385
   * @wait: If true, wait until function has completed on specified CPU.
3d4422332   Jens Axboe   Add generic helpe...
386
   *
0b13fda1e   Ingo Molnar   generic-ipi: clea...
387
388
389
   * Like smp_call_function_single(), but allow caller to pass in a
   * pre-allocated data structure. Useful for embedding @data inside
   * other structures, for instance.
3d4422332   Jens Axboe   Add generic helpe...
390
   */
6e2756376   Peter Zijlstra   generic-ipi: remo...
391
392
  void __smp_call_function_single(int cpu, struct call_single_data *data,
  				int wait)
3d4422332   Jens Axboe   Add generic helpe...
393
  {
27c379f7f   Heiko Carstens   generic-ipi: Fix ...
394
395
  	unsigned int this_cpu;
  	unsigned long flags;
6e2756376   Peter Zijlstra   generic-ipi: remo...
396

27c379f7f   Heiko Carstens   generic-ipi: Fix ...
397
  	this_cpu = get_cpu();
269c861ba   Suresh Siddha   generic-ipi: Allo...
398
399
400
401
402
403
404
405
  	/*
  	 * Can deadlock when called with interrupts disabled.
  	 * We allow cpu's that are not yet online though, as no one else can
  	 * send smp call function interrupt to this cpu and as such deadlocks
  	 * can't happen.
  	 */
  	WARN_ON_ONCE(cpu_online(smp_processor_id()) && wait && irqs_disabled()
  		     && !oops_in_progress);
3d4422332   Jens Axboe   Add generic helpe...
406

27c379f7f   Heiko Carstens   generic-ipi: Fix ...
407
408
409
410
411
412
413
414
415
  	if (cpu == this_cpu) {
  		local_irq_save(flags);
  		data->func(data->info);
  		local_irq_restore(flags);
  	} else {
  		csd_lock(data);
  		generic_exec_single(cpu, data, wait);
  	}
  	put_cpu();
3d4422332   Jens Axboe   Add generic helpe...
416
417
418
  }
  
  /**
54b11e6d5   Rusty Russell   cpumask: smp_call...
419
420
   * smp_call_function_many(): Run a function on a set of other CPUs.
   * @mask: The set of cpus to run on (only runs on online subset).
3d4422332   Jens Axboe   Add generic helpe...
421
422
   * @func: The function to run. This must be fast and non-blocking.
   * @info: An arbitrary pointer to pass to the function.
0b13fda1e   Ingo Molnar   generic-ipi: clea...
423
424
   * @wait: If true, wait (atomically) until function has completed
   *        on other CPUs.
3d4422332   Jens Axboe   Add generic helpe...
425
   *
72f279b25   Sheng Yang   generic-ipi: Fix ...
426
   * If @wait is true, then returns once @func has returned.
3d4422332   Jens Axboe   Add generic helpe...
427
428
429
430
431
   *
   * You must not call this function with disabled interrupts or from a
   * hardware interrupt handler or from a bottom half handler. Preemption
   * must be disabled when calling this function.
   */
54b11e6d5   Rusty Russell   cpumask: smp_call...
432
  void smp_call_function_many(const struct cpumask *mask,
3a5f65df5   David Howells   Typedef SMP call ...
433
  			    smp_call_func_t func, void *info, bool wait)
3d4422332   Jens Axboe   Add generic helpe...
434
  {
54b11e6d5   Rusty Russell   cpumask: smp_call...
435
  	struct call_function_data *data;
3d4422332   Jens Axboe   Add generic helpe...
436
  	unsigned long flags;
723aae25d   Milton Miller   smp_call_function...
437
  	int refs, cpu, next_cpu, this_cpu = smp_processor_id();
3d4422332   Jens Axboe   Add generic helpe...
438

269c861ba   Suresh Siddha   generic-ipi: Allo...
439
440
441
442
443
444
445
  	/*
  	 * Can deadlock when called with interrupts disabled.
  	 * We allow cpu's that are not yet online though, as no one else can
  	 * send smp call function interrupt to this cpu and as such deadlocks
  	 * can't happen.
  	 */
  	WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
bd924e8cb   Tejun Heo   smp: Allow on_eac...
446
  		     && !oops_in_progress && !early_boot_irqs_disabled);
3d4422332   Jens Axboe   Add generic helpe...
447

723aae25d   Milton Miller   smp_call_function...
448
  	/* Try to fastpath.  So, what's a CPU they want? Ignoring this one. */
54b11e6d5   Rusty Russell   cpumask: smp_call...
449
  	cpu = cpumask_first_and(mask, cpu_online_mask);
0b13fda1e   Ingo Molnar   generic-ipi: clea...
450
  	if (cpu == this_cpu)
54b11e6d5   Rusty Russell   cpumask: smp_call...
451
  		cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
0b13fda1e   Ingo Molnar   generic-ipi: clea...
452

54b11e6d5   Rusty Russell   cpumask: smp_call...
453
454
455
456
457
458
  	/* No online cpus?  We're done. */
  	if (cpu >= nr_cpu_ids)
  		return;
  
  	/* Do we have another CPU which isn't us? */
  	next_cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
0b13fda1e   Ingo Molnar   generic-ipi: clea...
459
  	if (next_cpu == this_cpu)
54b11e6d5   Rusty Russell   cpumask: smp_call...
460
461
462
463
464
465
  		next_cpu = cpumask_next_and(next_cpu, mask, cpu_online_mask);
  
  	/* Fastpath: do that cpu by itself. */
  	if (next_cpu >= nr_cpu_ids) {
  		smp_call_function_single(cpu, func, info, wait);
  		return;
3d4422332   Jens Axboe   Add generic helpe...
466
  	}
8969a5ede   Peter Zijlstra   generic-ipi: remo...
467
468
  	data = &__get_cpu_var(cfd_data);
  	csd_lock(&data->csd);
3d4422332   Jens Axboe   Add generic helpe...
469

45a579192   Milton Miller   call_function_man...
470
471
  	/* This BUG_ON verifies our reuse assertions and can be removed */
  	BUG_ON(atomic_read(&data->refs) || !cpumask_empty(data->cpumask));
6dc198999   Anton Blanchard   kernel/smp.c: fix...
472
473
  
  	/*
45a579192   Milton Miller   call_function_man...
474
475
476
  	 * The global call function queue list add and delete are protected
  	 * by a lock, but the list is traversed without any lock, relying
  	 * on the rcu list add and delete to allow safe concurrent traversal.
e6cd1e07a   Milton Miller   call_function_man...
477
478
  	 * We reuse the call function data without waiting for any grace
  	 * period after some other cpu removes it from the global queue.
45a579192   Milton Miller   call_function_man...
479
480
481
482
483
484
485
486
487
488
489
490
491
492
  	 * This means a cpu might find our data block as it is being
  	 * filled out.
  	 *
  	 * We hold off the interrupt handler on the other cpu by
  	 * ordering our writes to the cpu mask vs our setting of the
  	 * refs counter.  We assert only the cpu owning the data block
  	 * will set a bit in cpumask, and each bit will only be cleared
  	 * by the subject cpu.  Each cpu must first find its bit is
  	 * set and then check that refs is set indicating the element is
  	 * ready to be processed, otherwise it must skip the entry.
  	 *
  	 * On the previous iteration refs was set to 0 by another cpu.
  	 * To avoid the use of transitivity, set the counter to 0 here
  	 * so the wmb will pair with the rmb in the interrupt handler.
6dc198999   Anton Blanchard   kernel/smp.c: fix...
493
  	 */
45a579192   Milton Miller   call_function_man...
494
495
496
497
498
499
500
501
502
503
504
  	atomic_set(&data->refs, 0);	/* convert 3rd to 1st party write */
  
  	data->csd.func = func;
  	data->csd.info = info;
  
  	/* Ensure 0 refs is visible before mask.  Also orders func and info */
  	smp_wmb();
  
  	/* We rely on the "and" being processed before the store */
  	cpumask_and(data->cpumask, mask, cpu_online_mask);
  	cpumask_clear_cpu(this_cpu, data->cpumask);
723aae25d   Milton Miller   smp_call_function...
505
506
507
508
509
510
511
  	refs = cpumask_weight(data->cpumask);
  
  	/* Some callers race with other cpus changing the passed mask */
  	if (unlikely(!refs)) {
  		csd_unlock(&data->csd);
  		return;
  	}
3d4422332   Jens Axboe   Add generic helpe...
512

9f5a5621e   Thomas Gleixner   smp: Convert smpl...
513
  	raw_spin_lock_irqsave(&call_function.lock, flags);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
514
515
  	/*
  	 * Place entry at the _HEAD_ of the list, so that any cpu still
0b13fda1e   Ingo Molnar   generic-ipi: clea...
516
517
  	 * observing the entry in generic_smp_call_function_interrupt()
  	 * will not miss any other list entries:
8969a5ede   Peter Zijlstra   generic-ipi: remo...
518
519
  	 */
  	list_add_rcu(&data->csd.list, &call_function.queue);
e6cd1e07a   Milton Miller   call_function_man...
520
  	/*
45a579192   Milton Miller   call_function_man...
521
522
523
  	 * We rely on the wmb() in list_add_rcu to complete our writes
  	 * to the cpumask before this write to refs, which indicates
  	 * data is on the list and is ready to be processed.
e6cd1e07a   Milton Miller   call_function_man...
524
  	 */
723aae25d   Milton Miller   smp_call_function...
525
  	atomic_set(&data->refs, refs);
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
526
  	raw_spin_unlock_irqrestore(&call_function.lock, flags);
3d4422332   Jens Axboe   Add generic helpe...
527

561920a0d   Suresh Siddha   generic-ipi: fix ...
528
529
  	/*
  	 * Make the list addition visible before sending the ipi.
0b13fda1e   Ingo Molnar   generic-ipi: clea...
530
531
  	 * (IPIs must obey or appear to obey normal Linux cache
  	 * coherency rules -- see comment in generic_exec_single).
561920a0d   Suresh Siddha   generic-ipi: fix ...
532
533
  	 */
  	smp_mb();
3d4422332   Jens Axboe   Add generic helpe...
534
  	/* Send a message to all CPUs in the map */
8969a5ede   Peter Zijlstra   generic-ipi: remo...
535
  	arch_send_call_function_ipi_mask(data->cpumask);
3d4422332   Jens Axboe   Add generic helpe...
536

0b13fda1e   Ingo Molnar   generic-ipi: clea...
537
  	/* Optionally wait for the CPUs to complete */
54b11e6d5   Rusty Russell   cpumask: smp_call...
538
  	if (wait)
6e2756376   Peter Zijlstra   generic-ipi: remo...
539
  		csd_lock_wait(&data->csd);
3d4422332   Jens Axboe   Add generic helpe...
540
  }
54b11e6d5   Rusty Russell   cpumask: smp_call...
541
  EXPORT_SYMBOL(smp_call_function_many);
3d4422332   Jens Axboe   Add generic helpe...
542
543
544
545
546
  
  /**
   * smp_call_function(): Run a function on all other CPUs.
   * @func: The function to run. This must be fast and non-blocking.
   * @info: An arbitrary pointer to pass to the function.
0b13fda1e   Ingo Molnar   generic-ipi: clea...
547
548
   * @wait: If true, wait (atomically) until function has completed
   *        on other CPUs.
3d4422332   Jens Axboe   Add generic helpe...
549
   *
54b11e6d5   Rusty Russell   cpumask: smp_call...
550
   * Returns 0.
3d4422332   Jens Axboe   Add generic helpe...
551
552
   *
   * If @wait is true, then returns once @func has returned; otherwise
72f279b25   Sheng Yang   generic-ipi: Fix ...
553
   * it returns just before the target cpu calls @func.
3d4422332   Jens Axboe   Add generic helpe...
554
555
556
557
   *
   * You must not call this function with disabled interrupts or from a
   * hardware interrupt handler or from a bottom half handler.
   */
3a5f65df5   David Howells   Typedef SMP call ...
558
  int smp_call_function(smp_call_func_t func, void *info, int wait)
3d4422332   Jens Axboe   Add generic helpe...
559
  {
3d4422332   Jens Axboe   Add generic helpe...
560
  	preempt_disable();
54b11e6d5   Rusty Russell   cpumask: smp_call...
561
  	smp_call_function_many(cpu_online_mask, func, info, wait);
3d4422332   Jens Axboe   Add generic helpe...
562
  	preempt_enable();
0b13fda1e   Ingo Molnar   generic-ipi: clea...
563

54b11e6d5   Rusty Russell   cpumask: smp_call...
564
  	return 0;
3d4422332   Jens Axboe   Add generic helpe...
565
566
567
568
569
  }
  EXPORT_SYMBOL(smp_call_function);
  
  void ipi_call_lock(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
570
  	raw_spin_lock(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
571
572
573
574
  }
  
  void ipi_call_unlock(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
575
  	raw_spin_unlock(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
576
577
578
579
  }
  
  void ipi_call_lock_irq(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
580
  	raw_spin_lock_irq(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
581
582
583
584
  }
  
  void ipi_call_unlock_irq(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
585
  	raw_spin_unlock_irq(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
586
  }
351f8f8e6   Amerigo Wang   kernel: clean up ...
587
  #endif /* USE_GENERIC_SMP_HELPERS */
34db18a05   Amerigo Wang   smp: move smp set...
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
  /* Setup configured maximum number of CPUs to activate */
  unsigned int setup_max_cpus = NR_CPUS;
  EXPORT_SYMBOL(setup_max_cpus);
  
  
  /*
   * Setup routine for controlling SMP activation
   *
   * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
   * activation entirely (the MPS table probe still happens, though).
   *
   * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
   * greater than 0, limits the maximum number of CPUs activated in
   * SMP mode to <NUM>.
   */
  
  void __weak arch_disable_smp_support(void) { }
  
  static int __init nosmp(char *str)
  {
  	setup_max_cpus = 0;
  	arch_disable_smp_support();
  
  	return 0;
  }
  
  early_param("nosmp", nosmp);
  
  /* this is hard limit */
  static int __init nrcpus(char *str)
  {
  	int nr_cpus;
  
  	get_option(&str, &nr_cpus);
  	if (nr_cpus > 0 && nr_cpus < nr_cpu_ids)
  		nr_cpu_ids = nr_cpus;
  
  	return 0;
  }
  
  early_param("nr_cpus", nrcpus);
  
  static int __init maxcpus(char *str)
  {
  	get_option(&str, &setup_max_cpus);
  	if (setup_max_cpus == 0)
  		arch_disable_smp_support();
  
  	return 0;
  }
  
  early_param("maxcpus", maxcpus);
  
  /* Setup number of possible processor ids */
  int nr_cpu_ids __read_mostly = NR_CPUS;
  EXPORT_SYMBOL(nr_cpu_ids);
  
  /* An arch may set nr_cpu_ids earlier if needed, so this would be redundant */
  void __init setup_nr_cpu_ids(void)
  {
  	nr_cpu_ids = find_last_bit(cpumask_bits(cpu_possible_mask),NR_CPUS) + 1;
  }
  
  /* Called by boot processor to activate the rest. */
  void __init smp_init(void)
  {
  	unsigned int cpu;
  
  	/* FIXME: This should be done in userspace --RR */
  	for_each_present_cpu(cpu) {
  		if (num_online_cpus() >= setup_max_cpus)
  			break;
  		if (!cpu_online(cpu))
  			cpu_up(cpu);
  	}
  
  	/* Any cleanup work */
  	printk(KERN_INFO "Brought up %ld CPUs
  ", (long)num_online_cpus());
  	smp_cpus_done(setup_max_cpus);
  }
351f8f8e6   Amerigo Wang   kernel: clean up ...
669
  /*
bd924e8cb   Tejun Heo   smp: Allow on_eac...
670
671
672
   * Call a function on all processors.  May be used during early boot while
   * early_boot_irqs_disabled is set.  Use local_irq_save/restore() instead
   * of local_irq_disable/enable().
351f8f8e6   Amerigo Wang   kernel: clean up ...
673
674
675
   */
  int on_each_cpu(void (*func) (void *info), void *info, int wait)
  {
bd924e8cb   Tejun Heo   smp: Allow on_eac...
676
  	unsigned long flags;
351f8f8e6   Amerigo Wang   kernel: clean up ...
677
678
679
680
  	int ret = 0;
  
  	preempt_disable();
  	ret = smp_call_function(func, info, wait);
bd924e8cb   Tejun Heo   smp: Allow on_eac...
681
  	local_irq_save(flags);
351f8f8e6   Amerigo Wang   kernel: clean up ...
682
  	func(info);
bd924e8cb   Tejun Heo   smp: Allow on_eac...
683
  	local_irq_restore(flags);
351f8f8e6   Amerigo Wang   kernel: clean up ...
684
685
686
687
  	preempt_enable();
  	return ret;
  }
  EXPORT_SYMBOL(on_each_cpu);