From: Roman Kisel Date: Tue, 22 Jul 2025 16:18:18 +0000 (-0700) Subject: smp: Fix spelling in on_each_cpu_cond_mask()'s doc-comment X-Git-Tag: io_uring-6.17-20250815~4^2~1 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=83e6384374bac8a9da3411fae7f24376a7dbd2a3;p=linux-block.git smp: Fix spelling in on_each_cpu_cond_mask()'s doc-comment "boolean" is spelt as "blooean". Fix that. Signed-off-by: Roman Kisel Signed-off-by: Thomas Gleixner Link: https://lore.kernel.org/all/20250722161818.6139-1-romank@linux.microsoft.com --- diff --git a/kernel/smp.c b/kernel/smp.c index 4649fa4872ff..56f83aa58ec8 100644 --- a/kernel/smp.c +++ b/kernel/smp.c @@ -1018,7 +1018,7 @@ void __init smp_init(void) * @cond_func: A callback function that is passed a cpu id and * the info parameter. The function is called * with preemption disabled. The function should - * return a blooean value indicating whether to IPI + * return a boolean value indicating whether to IPI * the specified CPU. * @func: The function to run on all applicable CPUs. * This must be fast and non-blocking.