Merge tag 'smp_urgent_for_v6.17_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull smp fixes from Borislav Petkov:

- Remove an obsolete comment and fix spelling

* tag 'smp_urgent_for_v6.17_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
cpu: Remove obsolete comment from takedown_cpu()
smp: Fix spelling in on_each_cpu_cond_mask()'s doc-comment

Changed files
+1 -4
kernel
-3
kernel/cpu.c
··· 1309 1309 */ 1310 1310 irq_lock_sparse(); 1311 1311 1312 - /* 1313 - * So now all preempt/rcu users must observe !cpu_active(). 1314 - */ 1315 1312 err = stop_machine_cpuslocked(take_cpu_down, NULL, cpumask_of(cpu)); 1316 1313 if (err) { 1317 1314 /* CPU refused to die */
+1 -1
kernel/smp.c
··· 1018 1018 * @cond_func: A callback function that is passed a cpu id and 1019 1019 * the info parameter. The function is called 1020 1020 * with preemption disabled. The function should 1021 - * return a blooean value indicating whether to IPI 1021 + * return a boolean value indicating whether to IPI 1022 1022 * the specified CPU. 1023 1023 * @func: The function to run on all applicable CPUs. 1024 1024 * This must be fast and non-blocking.