On Sat, Apr 15 2023 at 08:58, Brian Gerst wrote: > On Fri, Apr 14, 2023 at 7:44 PM Thomas Gleixner <tglx@xxxxxxxxxxxxx> wrote: >> pr_debug("Before bogomips\n"); >> - for_each_possible_cpu(cpu) >> - if (cpumask_test_cpu(cpu, cpu_callout_mask)) >> + for_each_possible_cpu(cpu) { >> + if (cpumask_test_cpu(cpu, cpu_online_mask)) >> bogosum += cpu_data(cpu).loops_per_jiffy; > > This should be the same as for_each_online_cpu(). Duh, yes. Obviously...