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.
110 * stop_machine: freeze the machine on all CPUs and run this function
113 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
125 int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
128 * stop_machine_cpuslocked: freeze the machine on all CPUs and run this function
131 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
136 int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
139 const struct cpumask *cpus);
143 const struct cpumask *cpus) in stop_machine_cpuslocked() argument
154 const struct cpumask *cpus) in stop_machine() argument
156 return stop_machine_cpuslocked(fn, data, cpus); in stop_machine()
160 const struct cpumask *cpus) in stop_machine_from_inactive_cpu() argument
162 return stop_machine(fn, data, cpus); in stop_machine_from_inactive_cpu()