Skip to content

Commit 7d67274

Browse files
committed
Merge tag 'stop-machine.2026.04.16a' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu
Pull stop-machine update from Paul McKenney: - kernel-doc updates for stop_machine() and stop_machine_cpuslocked() functions * tag 'stop-machine.2026.04.16a' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu: stop_machine: Fix the documentation for a NULL cpus argument
2 parents 9cdca33 + 48f7a50 commit 7d67274

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/linux/stop_machine.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static inline void print_stop_info(const char *log_lvl, struct task_struct *task
9999
* stop_machine: freeze the machine on all CPUs and run this function
100100
* @fn: the function to run
101101
* @data: the data ptr to pass to @fn()
102-
* @cpus: the cpus to run @fn() on (NULL = run on each online CPU)
102+
* @cpus: the cpus to run @fn() on (NULL = one unspecified online CPU)
103103
*
104104
* Description: This causes a thread to be scheduled on every CPU, which
105105
* will run with interrupts disabled. Each CPU specified by @cpus will
@@ -133,7 +133,7 @@ int stop_machine(cpu_stop_fn_t fn, void *data, const struct cpumask *cpus);
133133
* stop_machine_cpuslocked: freeze the machine on all CPUs and run this function
134134
* @fn: the function to run
135135
* @data: the data ptr to pass to @fn()
136-
* @cpus: the cpus to run @fn() on (NULL = run on each online CPU)
136+
* @cpus: the cpus to run @fn() on (NULL = one unspecified online CPU)
137137
*
138138
* Same as above. Avoids nested calls to cpus_read_lock().
139139
*

0 commit comments

Comments
 (0)