blob: 3cc9632dcc2a5b6e58259fcec14ce07ca87a4618 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_STOP_MACHINE
2#define _LINUX_STOP_MACHINE
Tejun Heo1142d812010-05-06 18:49:20 +02003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/cpu.h>
Rusty Russelleeec4fa2008-07-28 12:16:30 -05005#include <linux/cpumask.h>
Paul Gortmakerbb2eac62011-07-17 17:11:26 -04006#include <linux/smp.h>
Tejun Heo1142d812010-05-06 18:49:20 +02007#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Tejun Heo1142d812010-05-06 18:49:20 +02009/*
10 * stop_cpu[s]() is simplistic per-cpu maximum priority cpu
11 * monopolization mechanism. The caller can specify a non-sleeping
12 * function to be executed on a single or multiple cpus preempting all
13 * other processes and monopolizing those cpus until it finishes.
14 *
15 * Resources for this mechanism are preallocated when a cpu is brought
16 * up and requests are guaranteed to be served as long as the target
17 * cpus are online.
18 */
Tejun Heo1142d812010-05-06 18:49:20 +020019typedef int (*cpu_stop_fn_t)(void *arg);
20
Tejun Heobbf1bb32010-05-08 16:20:53 +020021#ifdef CONFIG_SMP
22
Tejun Heo1142d812010-05-06 18:49:20 +020023struct cpu_stop_work {
24 struct list_head list; /* cpu_stopper->works */
25 cpu_stop_fn_t fn;
26 void *arg;
27 struct cpu_stop_done *done;
28};
29
30int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg);
Peter Zijlstra1be0bd772013-10-07 11:29:15 +010031int stop_two_cpus(unsigned int cpu1, unsigned int cpu2, cpu_stop_fn_t fn, void *arg);
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010032bool stop_one_cpu_nowait(unsigned int cpu, cpu_stop_fn_t fn, void *arg,
Tejun Heo1142d812010-05-06 18:49:20 +020033 struct cpu_stop_work *work_buf);
34int stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
35int try_stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg);
Oleg Nesterov233e7f22015-10-08 16:51:31 +020036void stop_machine_park(int cpu);
Oleg Nesterovc00166d2015-10-09 18:00:49 +020037void stop_machine_unpark(int cpu);
Tejun Heo1142d812010-05-06 18:49:20 +020038
Tejun Heobbf1bb32010-05-08 16:20:53 +020039#else /* CONFIG_SMP */
40
41#include <linux/workqueue.h>
42
43struct cpu_stop_work {
44 struct work_struct work;
45 cpu_stop_fn_t fn;
46 void *arg;
47};
48
49static inline int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg)
50{
51 int ret = -ENOENT;
52 preempt_disable();
53 if (cpu == smp_processor_id())
54 ret = fn(arg);
55 preempt_enable();
56 return ret;
57}
58
59static void stop_one_cpu_nowait_workfn(struct work_struct *work)
60{
61 struct cpu_stop_work *stwork =
62 container_of(work, struct cpu_stop_work, work);
63 preempt_disable();
64 stwork->fn(stwork->arg);
65 preempt_enable();
66}
67
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010068static inline bool stop_one_cpu_nowait(unsigned int cpu,
Tejun Heobbf1bb32010-05-08 16:20:53 +020069 cpu_stop_fn_t fn, void *arg,
70 struct cpu_stop_work *work_buf)
71{
72 if (cpu == smp_processor_id()) {
73 INIT_WORK(&work_buf->work, stop_one_cpu_nowait_workfn);
74 work_buf->fn = fn;
75 work_buf->arg = arg;
76 schedule_work(&work_buf->work);
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010077 return true;
Tejun Heobbf1bb32010-05-08 16:20:53 +020078 }
Oleg Nesterov1b034bd2015-11-17 18:05:23 +010079
80 return false;
Tejun Heobbf1bb32010-05-08 16:20:53 +020081}
82
83static inline int stop_cpus(const struct cpumask *cpumask,
84 cpu_stop_fn_t fn, void *arg)
85{
86 if (cpumask_test_cpu(raw_smp_processor_id(), cpumask))
87 return stop_one_cpu(raw_smp_processor_id(), fn, arg);
88 return -ENOENT;
89}
90
91static inline int try_stop_cpus(const struct cpumask *cpumask,
92 cpu_stop_fn_t fn, void *arg)
93{
94 return stop_cpus(cpumask, fn, arg);
95}
96
97#endif /* CONFIG_SMP */
98
Tejun Heo1142d812010-05-06 18:49:20 +020099/*
100 * stop_machine "Bogolock": stop the entire machine, disable
101 * interrupts. This is a very heavy lock, which is equivalent to
102 * grabbing every spinlock (and more). So the "read" side to such a
Jonathan Neuschäfer18163152011-06-19 11:50:22 +0200103 * lock is anything which disables preemption.
Tejun Heo1142d812010-05-06 18:49:20 +0200104 */
Chris Wilson86fffe42015-12-11 13:40:46 -0800105#if defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU)
Tejun Heo1142d812010-05-06 18:49:20 +0200106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/**
Rusty Russelleeec4fa2008-07-28 12:16:30 -0500108 * stop_machine: freeze the machine on all CPUs and run this function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * @fn: the function to run
110 * @data: the data ptr for the @fn()
Rusty Russelleeec4fa2008-07-28 12:16:30 -0500111 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 *
Rusty Russellffdb5972008-07-28 12:16:28 -0500113 * Description: This causes a thread to be scheduled on every cpu,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300114 * each of which disables interrupts. The result is that no one is
Rusty Russellffdb5972008-07-28 12:16:28 -0500115 * holding a spinlock or inside any other preempt-disabled region when
116 * @fn() runs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 *
118 * This can be thought of as a very heavy write lock, equivalent to
119 * grabbing every spinlock in the kernel. */
Oleg Nesterov9a301f22015-06-30 03:29:55 +0200120int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Oleg Nesterov9a301f22015-06-30 03:29:55 +0200122int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
Tejun Heof740e6cd2011-06-23 11:19:28 -0700123 const struct cpumask *cpus);
Chris Wilson86fffe42015-12-11 13:40:46 -0800124#else /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Oleg Nesterov9a301f22015-06-30 03:29:55 +0200126static inline int stop_machine(cpu_stop_fn_t fn, void *data,
Masami Hiramatsu087a4eb2010-10-14 12:10:30 +0900127 const struct cpumask *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Tejun Heof740e6cd2011-06-23 11:19:28 -0700129 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int ret;
Tejun Heof740e6cd2011-06-23 11:19:28 -0700131 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 ret = fn(data);
Tejun Heof740e6cd2011-06-23 11:19:28 -0700133 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return ret;
135}
Heiko Carstens9ea09af2008-12-22 12:36:30 +0100136
Oleg Nesterov9a301f22015-06-30 03:29:55 +0200137static inline int stop_machine_from_inactive_cpu(cpu_stop_fn_t fn, void *data,
Tejun Heof740e6cd2011-06-23 11:19:28 -0700138 const struct cpumask *cpus)
139{
Oleg Nesterov7eeb0882015-06-30 03:29:51 +0200140 return stop_machine(fn, data, cpus);
Tejun Heof740e6cd2011-06-23 11:19:28 -0700141}
142
Chris Wilson86fffe42015-12-11 13:40:46 -0800143#endif /* CONFIG_SMP || CONFIG_HOTPLUG_CPU */
Tejun Heobbf1bb32010-05-08 16:20:53 +0200144#endif /* _LINUX_STOP_MACHINE */