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.
105 * stop_machine: freeze the machine on all CPUs and run this function
108 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
120 int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
123 * stop_machine_cpuslocked: freeze the machine on all CPUs and run this function
126 * @cpus: the cpus to run the @fn() on (NULL = any online cpu)
131 int stop_machine_cpuslocked(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
134 const struct cpumask *cpus);
138 const struct cpumask *cpus) in stop_machine_cpuslocked() argument
149 stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus) in stop_machine() argument
151 return stop_machine_cpuslocked(fn, data, cpus); in stop_machine()
156 const struct cpumask *cpus) in stop_machine_from_inactive_cpu() argument
158 return stop_machine(fn, data, cpus); in stop_machine_from_inactive_cpu()