Blame view

kernel/smp.c 18.4 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>
9984de1a5   Paul Gortmaker   kernel: Map most ...
9
  #include <linux/export.h>
0b13fda1e   Ingo Molnar   generic-ipi: clea...
10
11
  #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
  };
d8ad7d112   Takao Indoh   generic-ipi: Fix ...
72
  void __init call_function_init(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);
3d4422332   Jens Axboe   Add generic helpe...
85
  }
8969a5ede   Peter Zijlstra   generic-ipi: remo...
86
  /*
8969a5ede   Peter Zijlstra   generic-ipi: remo...
87
88
   * csd_lock/csd_unlock used to serialize access to per-cpu csd resources
   *
0b13fda1e   Ingo Molnar   generic-ipi: clea...
89
90
91
   * 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...
92
   */
6e2756376   Peter Zijlstra   generic-ipi: remo...
93
  static void csd_lock_wait(struct call_single_data *data)
8969a5ede   Peter Zijlstra   generic-ipi: remo...
94
95
96
  {
  	while (data->flags & CSD_FLAG_LOCK)
  		cpu_relax();
6e2756376   Peter Zijlstra   generic-ipi: remo...
97
98
99
100
101
  }
  
  static void csd_lock(struct call_single_data *data)
  {
  	csd_lock_wait(data);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
102
103
104
  	data->flags = CSD_FLAG_LOCK;
  
  	/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
105
106
107
  	 * 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...
108
  	 */
8969a5ede   Peter Zijlstra   generic-ipi: remo...
109
110
111
112
113
114
  	smp_mb();
  }
  
  static void csd_unlock(struct call_single_data *data)
  {
  	WARN_ON(!(data->flags & CSD_FLAG_LOCK));
0b13fda1e   Ingo Molnar   generic-ipi: clea...
115

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

8969a5ede   Peter Zijlstra   generic-ipi: remo...
121
  	data->flags &= ~CSD_FLAG_LOCK;
3d4422332   Jens Axboe   Add generic helpe...
122
123
124
  }
  
  /*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
125
126
127
   * 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...
128
   */
6e2756376   Peter Zijlstra   generic-ipi: remo...
129
130
  static
  void generic_exec_single(int cpu, struct call_single_data *data, int wait)
3d4422332   Jens Axboe   Add generic helpe...
131
132
  {
  	struct call_single_queue *dst = &per_cpu(call_single_queue, cpu);
3d4422332   Jens Axboe   Add generic helpe...
133
  	unsigned long flags;
6e2756376   Peter Zijlstra   generic-ipi: remo...
134
  	int ipi;
3d4422332   Jens Axboe   Add generic helpe...
135

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

561920a0d   Suresh Siddha   generic-ipi: fix ...
141
  	/*
15d0d3b33   Nick Piggin   generic IPI: simp...
142
143
144
145
146
147
148
  	 * 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...
149
150
  	 * locking and barrier primitives. Generic code isn't really
  	 * equipped to do the right thing...
561920a0d   Suresh Siddha   generic-ipi: fix ...
151
  	 */
3d4422332   Jens Axboe   Add generic helpe...
152
153
154
155
  	if (ipi)
  		arch_send_call_function_single_ipi(cpu);
  
  	if (wait)
6e2756376   Peter Zijlstra   generic-ipi: remo...
156
  		csd_lock_wait(data);
3d4422332   Jens Axboe   Add generic helpe...
157
158
159
160
161
162
163
164
165
  }
  
  /*
   * 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...
166
  	int cpu = smp_processor_id();
3d4422332   Jens Axboe   Add generic helpe...
167
168
  
  	/*
269c861ba   Suresh Siddha   generic-ipi: Allo...
169
170
171
172
173
  	 * 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...
174
175
176
177
178
179
180
181
  	 * 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...
182
183
  	 * 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...
184
  	 */
8969a5ede   Peter Zijlstra   generic-ipi: remo...
185
  	list_for_each_entry_rcu(data, &call_function.queue, csd.list) {
3d4422332   Jens Axboe   Add generic helpe...
186
  		int refs;
c8def554d   Milton Miller   smp_call_function...
187
  		smp_call_func_t func;
3d4422332   Jens Axboe   Add generic helpe...
188

6dc198999   Anton Blanchard   kernel/smp.c: fix...
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
  		/*
  		 * 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...
206
207
  		func = data->csd.func;		/* save for later warn */
  		func(data->csd.info);
3d4422332   Jens Axboe   Add generic helpe...
208

225c8e010   Milton Miller   kernel/smp.c: con...
209
  		/*
c8def554d   Milton Miller   smp_call_function...
210
211
212
213
  		 * 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...
214
215
  		 */
  		if (!cpumask_test_and_clear_cpu(cpu, data->cpumask)) {
c8def554d   Milton Miller   smp_call_function...
216
217
  			WARN(1, "%pf enabled interrupts and double executed
  ", func);
225c8e010   Milton Miller   kernel/smp.c: con...
218
219
  			continue;
  		}
54fdade1c   Xiao Guangrong   generic-ipi: make...
220
221
  		refs = atomic_dec_return(&data->refs);
  		WARN_ON(refs < 0);
3d4422332   Jens Axboe   Add generic helpe...
222
223
224
  
  		if (refs)
  			continue;
225c8e010   Milton Miller   kernel/smp.c: con...
225
226
227
228
229
  		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...
230
  		csd_unlock(&data->csd);
3d4422332   Jens Axboe   Add generic helpe...
231
  	}
3d4422332   Jens Axboe   Add generic helpe...
232

3d4422332   Jens Axboe   Add generic helpe...
233
234
235
  }
  
  /*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
236
237
   * 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...
238
239
240
241
   */
  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...
242
  	unsigned int data_flags;
0b13fda1e   Ingo Molnar   generic-ipi: clea...
243
  	LIST_HEAD(list);
3d4422332   Jens Axboe   Add generic helpe...
244

269c861ba   Suresh Siddha   generic-ipi: Allo...
245
246
247
248
  	/*
  	 * 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...
249
  	raw_spin_lock(&q->lock);
15d0d3b33   Nick Piggin   generic IPI: simp...
250
  	list_replace_init(&q->list, &list);
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
251
  	raw_spin_unlock(&q->lock);
3d4422332   Jens Axboe   Add generic helpe...
252

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

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

3d4422332   Jens Axboe   Add generic helpe...
259
  		/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
260
261
262
  		 * '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...
263
  		 */
15d0d3b33   Nick Piggin   generic IPI: simp...
264
265
266
  		data_flags = data->flags;
  
  		data->func(data->info);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
267
  		/*
0b13fda1e   Ingo Molnar   generic-ipi: clea...
268
  		 * Unlocked CSDs are valid through generic_exec_single():
8969a5ede   Peter Zijlstra   generic-ipi: remo...
269
270
271
  		 */
  		if (data_flags & CSD_FLAG_LOCK)
  			csd_unlock(data);
3d4422332   Jens Axboe   Add generic helpe...
272
273
  	}
  }
e03bcb686   Milton Miller   generic-ipi: Opti...
274
  static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_data, csd_data);
d7240b988   Steven Rostedt   generic-ipi: use ...
275

3d4422332   Jens Axboe   Add generic helpe...
276
277
278
279
  /*
   * 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...
280
281
   * @wait: If true, wait until function has completed on other CPUs.
   *
72f279b25   Sheng Yang   generic-ipi: Fix ...
282
   * Returns 0 on success, else a negative status code.
3d4422332   Jens Axboe   Add generic helpe...
283
   */
3a5f65df5   David Howells   Typedef SMP call ...
284
  int smp_call_function_single(int cpu, smp_call_func_t func, void *info,
8691e5a8f   Jens Axboe   smp_call_function...
285
  			     int wait)
3d4422332   Jens Axboe   Add generic helpe...
286
  {
8969a5ede   Peter Zijlstra   generic-ipi: remo...
287
288
289
  	struct call_single_data d = {
  		.flags = 0,
  	};
3d4422332   Jens Axboe   Add generic helpe...
290
  	unsigned long flags;
0b13fda1e   Ingo Molnar   generic-ipi: clea...
291
  	int this_cpu;
f73be6ded   H. Peter Anvin   smp: have smp_cal...
292
  	int err = 0;
3d4422332   Jens Axboe   Add generic helpe...
293

0b13fda1e   Ingo Molnar   generic-ipi: clea...
294
295
296
297
298
  	/*
  	 * prevent preemption and reschedule on another processor,
  	 * as well as CPU removal
  	 */
  	this_cpu = get_cpu();
269c861ba   Suresh Siddha   generic-ipi: Allo...
299
300
301
302
303
304
305
306
  	/*
  	 * 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...
307

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

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

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

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

f73be6ded   H. Peter Anvin   smp: have smp_cal...
331
  	return err;
3d4422332   Jens Axboe   Add generic helpe...
332
333
  }
  EXPORT_SYMBOL(smp_call_function_single);
2ea6dec4a   Rusty Russell   generic-ipi: Add ...
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
  /*
   * 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 ...
351
  			  smp_call_func_t func, void *info, int wait)
2ea6dec4a   Rusty Russell   generic-ipi: Add ...
352
353
354
355
356
357
358
359
360
361
362
  {
  	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...
363
  	nodemask = cpumask_of_node(cpu_to_node(cpu));
2ea6dec4a   Rusty Russell   generic-ipi: Add ...
364
365
366
367
368
369
370
371
372
373
374
375
376
377
  	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...
378
  /**
27c379f7f   Heiko Carstens   generic-ipi: Fix ...
379
   * __smp_call_function_single(): Run a function on a specific CPU
3d4422332   Jens Axboe   Add generic helpe...
380
381
   * @cpu: The CPU to run on.
   * @data: Pre-allocated and setup data structure
27c379f7f   Heiko Carstens   generic-ipi: Fix ...
382
   * @wait: If true, wait until function has completed on specified CPU.
3d4422332   Jens Axboe   Add generic helpe...
383
   *
0b13fda1e   Ingo Molnar   generic-ipi: clea...
384
385
386
   * 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...
387
   */
6e2756376   Peter Zijlstra   generic-ipi: remo...
388
389
  void __smp_call_function_single(int cpu, struct call_single_data *data,
  				int wait)
3d4422332   Jens Axboe   Add generic helpe...
390
  {
27c379f7f   Heiko Carstens   generic-ipi: Fix ...
391
392
  	unsigned int this_cpu;
  	unsigned long flags;
6e2756376   Peter Zijlstra   generic-ipi: remo...
393

27c379f7f   Heiko Carstens   generic-ipi: Fix ...
394
  	this_cpu = get_cpu();
269c861ba   Suresh Siddha   generic-ipi: Allo...
395
396
397
398
399
400
401
402
  	/*
  	 * 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...
403

27c379f7f   Heiko Carstens   generic-ipi: Fix ...
404
405
406
407
408
409
410
411
412
  	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...
413
414
415
  }
  
  /**
54b11e6d5   Rusty Russell   cpumask: smp_call...
416
417
   * 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...
418
419
   * @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...
420
421
   * @wait: If true, wait (atomically) until function has completed
   *        on other CPUs.
3d4422332   Jens Axboe   Add generic helpe...
422
   *
72f279b25   Sheng Yang   generic-ipi: Fix ...
423
   * If @wait is true, then returns once @func has returned.
3d4422332   Jens Axboe   Add generic helpe...
424
425
426
427
428
   *
   * 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...
429
  void smp_call_function_many(const struct cpumask *mask,
3a5f65df5   David Howells   Typedef SMP call ...
430
  			    smp_call_func_t func, void *info, bool wait)
3d4422332   Jens Axboe   Add generic helpe...
431
  {
54b11e6d5   Rusty Russell   cpumask: smp_call...
432
  	struct call_function_data *data;
3d4422332   Jens Axboe   Add generic helpe...
433
  	unsigned long flags;
723aae25d   Milton Miller   smp_call_function...
434
  	int refs, cpu, next_cpu, this_cpu = smp_processor_id();
3d4422332   Jens Axboe   Add generic helpe...
435

269c861ba   Suresh Siddha   generic-ipi: Allo...
436
437
438
439
440
441
442
  	/*
  	 * 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...
443
  		     && !oops_in_progress && !early_boot_irqs_disabled);
3d4422332   Jens Axboe   Add generic helpe...
444

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

54b11e6d5   Rusty Russell   cpumask: smp_call...
450
451
452
453
454
455
  	/* 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...
456
  	if (next_cpu == this_cpu)
54b11e6d5   Rusty Russell   cpumask: smp_call...
457
458
459
460
461
462
  		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...
463
  	}
8969a5ede   Peter Zijlstra   generic-ipi: remo...
464
465
  	data = &__get_cpu_var(cfd_data);
  	csd_lock(&data->csd);
3d4422332   Jens Axboe   Add generic helpe...
466

45a579192   Milton Miller   call_function_man...
467
468
  	/* 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...
469
470
  
  	/*
45a579192   Milton Miller   call_function_man...
471
472
473
  	 * 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...
474
475
  	 * 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...
476
477
478
479
480
481
482
483
484
485
486
487
488
489
  	 * 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...
490
  	 */
45a579192   Milton Miller   call_function_man...
491
492
493
494
495
496
497
498
499
500
501
  	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...
502
503
504
505
506
507
508
  	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...
509

9f5a5621e   Thomas Gleixner   smp: Convert smpl...
510
  	raw_spin_lock_irqsave(&call_function.lock, flags);
8969a5ede   Peter Zijlstra   generic-ipi: remo...
511
512
  	/*
  	 * Place entry at the _HEAD_ of the list, so that any cpu still
0b13fda1e   Ingo Molnar   generic-ipi: clea...
513
514
  	 * observing the entry in generic_smp_call_function_interrupt()
  	 * will not miss any other list entries:
8969a5ede   Peter Zijlstra   generic-ipi: remo...
515
516
  	 */
  	list_add_rcu(&data->csd.list, &call_function.queue);
e6cd1e07a   Milton Miller   call_function_man...
517
  	/*
45a579192   Milton Miller   call_function_man...
518
519
520
  	 * 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...
521
  	 */
723aae25d   Milton Miller   smp_call_function...
522
  	atomic_set(&data->refs, refs);
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
523
  	raw_spin_unlock_irqrestore(&call_function.lock, flags);
3d4422332   Jens Axboe   Add generic helpe...
524

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

0b13fda1e   Ingo Molnar   generic-ipi: clea...
534
  	/* Optionally wait for the CPUs to complete */
54b11e6d5   Rusty Russell   cpumask: smp_call...
535
  	if (wait)
6e2756376   Peter Zijlstra   generic-ipi: remo...
536
  		csd_lock_wait(&data->csd);
3d4422332   Jens Axboe   Add generic helpe...
537
  }
54b11e6d5   Rusty Russell   cpumask: smp_call...
538
  EXPORT_SYMBOL(smp_call_function_many);
3d4422332   Jens Axboe   Add generic helpe...
539
540
541
542
543
  
  /**
   * 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...
544
545
   * @wait: If true, wait (atomically) until function has completed
   *        on other CPUs.
3d4422332   Jens Axboe   Add generic helpe...
546
   *
54b11e6d5   Rusty Russell   cpumask: smp_call...
547
   * Returns 0.
3d4422332   Jens Axboe   Add generic helpe...
548
549
   *
   * If @wait is true, then returns once @func has returned; otherwise
72f279b25   Sheng Yang   generic-ipi: Fix ...
550
   * it returns just before the target cpu calls @func.
3d4422332   Jens Axboe   Add generic helpe...
551
552
553
554
   *
   * 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 ...
555
  int smp_call_function(smp_call_func_t func, void *info, int wait)
3d4422332   Jens Axboe   Add generic helpe...
556
  {
3d4422332   Jens Axboe   Add generic helpe...
557
  	preempt_disable();
54b11e6d5   Rusty Russell   cpumask: smp_call...
558
  	smp_call_function_many(cpu_online_mask, func, info, wait);
3d4422332   Jens Axboe   Add generic helpe...
559
  	preempt_enable();
0b13fda1e   Ingo Molnar   generic-ipi: clea...
560

54b11e6d5   Rusty Russell   cpumask: smp_call...
561
  	return 0;
3d4422332   Jens Axboe   Add generic helpe...
562
563
564
565
566
  }
  EXPORT_SYMBOL(smp_call_function);
  
  void ipi_call_lock(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
567
  	raw_spin_lock(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
568
569
570
571
  }
  
  void ipi_call_unlock(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
572
  	raw_spin_unlock(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
573
574
575
576
  }
  
  void ipi_call_lock_irq(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
577
  	raw_spin_lock_irq(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
578
579
580
581
  }
  
  void ipi_call_unlock_irq(void)
  {
9f5a5621e   Thomas Gleixner   smp: Convert smpl...
582
  	raw_spin_unlock_irq(&call_function.lock);
3d4422332   Jens Axboe   Add generic helpe...
583
  }
351f8f8e6   Amerigo Wang   kernel: clean up ...
584
  #endif /* USE_GENERIC_SMP_HELPERS */
34db18a05   Amerigo Wang   smp: move smp set...
585
586
587
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
  /* 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 ...
666
  /*
bd924e8cb   Tejun Heo   smp: Allow on_eac...
667
668
669
   * 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 ...
670
671
672
   */
  int on_each_cpu(void (*func) (void *info), void *info, int wait)
  {
bd924e8cb   Tejun Heo   smp: Allow on_eac...
673
  	unsigned long flags;
351f8f8e6   Amerigo Wang   kernel: clean up ...
674
675
676
677
  	int ret = 0;
  
  	preempt_disable();
  	ret = smp_call_function(func, info, wait);
bd924e8cb   Tejun Heo   smp: Allow on_eac...
678
  	local_irq_save(flags);
351f8f8e6   Amerigo Wang   kernel: clean up ...
679
  	func(info);
bd924e8cb   Tejun Heo   smp: Allow on_eac...
680
  	local_irq_restore(flags);
351f8f8e6   Amerigo Wang   kernel: clean up ...
681
682
683
684
  	preempt_enable();
  	return ret;
  }
  EXPORT_SYMBOL(on_each_cpu);