Costa! On Sat, May 18 2024 at 03:17, Thomas Gleixner wrote: > Impressive... Now let's take a step back because none of this makes any sense at all conceptually. Reconfiguring the housekeeping CPUs on a life system is expensive and a slow path operation no matter what. So why inflicting all of this nonsense to the kernel instead of cleverly (ab)using CPU hotplug for it in user space: for_each_cpu(cpu, new_house_keeping_mask) { if (cpu_ishk(cpu)) continue; cpu_offline(cpu); set_cpu_in_hkmask(cpu); cpu_online(cpu); } for_each_cpu(cpu, new_isolated_mask) { if (!cpu_ishk(cpu)) continue; cpu_offline(cpu); clear_cpu_in_hkmask(cpu); cpu_online(cpu); } Or something like that. You get the idea, right? IOW, the only kernel change which is required to achieve your goal is to ensure that changing the housekeeping/isolated property of a CPU at runtime is only possible when the CPU is "offline". Then all of the magic things you try to solve just work out of the box because the existing and well exercised hotplug code takes care of it already, no? I might be missing something obvious as always, so feel free to educate me on it. Thanks, tglx