Lines Matching full:cpus
13 * function to be executed on a single or multiple cpus preempting all
14 * other processes and monopolizing those cpus until it finishes.
18 * cpus are online.
94 * stop_machine: freeze the machine on all CPUs and run this function
97 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
109 int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
112 * stop_machine_cpuslocked: freeze the machine on all CPUs and run this function
115 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
120 int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
123 const struct cpumask *cpus);
127 const struct cpumask *cpus) in stop_machine_cpuslocked() argument
138 const struct cpumask *cpus) in stop_machine() argument
140 return stop_machine_cpuslocked(fn, data, cpus); in stop_machine()
144 const struct cpumask *cpus) in stop_machine_from_inactive_cpu() argument
146 return stop_machine(fn, data, cpus); in stop_machine_from_inactive_cpu()