Re: [patch 1/3] tick: Remove pointless cpu valid check in hotplug code

From: Thomas Gleixner
Date: Mon Dec 07 2020 - 12:45:29 EST


On Mon, Dec 07 2020 at 12:59, Peter Zijlstra wrote:
> On Sun, Dec 06, 2020 at 10:12:54PM +0100, Thomas Gleixner wrote:
>
>> void tick_handover_do_timer(void)
>> {
>> + if (tick_do_timer_cpu == smp_processor_id())
>> + tick_do_timer_cpu = cpumask_first(cpu_online_mask);
>
> For the paranoid amongst us, would it make sense to add something like:
>
> /*
> * There must always be at least one online CPU.
> */
> WARN_ON_ONCE(tick_do_timer_cpu >= nr_cpu_ids);

And add that to all places which look at online mask during hotplug.

If we really care we can add it somewhere central in the hotplug
code. If that ever triggers then the wreckaged tick duty is just
uninteresting.

Thanks,

tglx