diff options
author | xiaoming Wang <xiaoming.wang@intel.com> | 2023-12-19 11:34:11 +0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2023-12-20 16:25:15 +0100 |
commit | fe22944cf05ede8e6f841cfecdb7093a53a3d9b3 (patch) | |
tree | e36f3a9b35b90c3848fcf1faa2b2c0709ffe9665 /include/linux | |
parent | 15bece7bec0df91a8ed1c185483d67708425ca8e (diff) |
cpu/hotplug: Increase the number of dynamic states
The dynamically allocatable hotplug state space can be exhausted by
the existing drivers and infrastructure which install CPU hotplug
states dynamically. That prevents new drivers and infrastructure from
installing dynamically allocated states.
Increase the size of the CPUHP_AP_ONLINE_DYN state by 10 to make
room.
Signed-off-by: Xiaoming Wang <xiaoming.wang@intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20231219033411.816100-1-xiaoming.wang@intel.com
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/cpuhotplug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cpuhotplug.h b/include/linux/cpuhotplug.h index af6c21aab985..8bd454dfe453 100644 --- a/include/linux/cpuhotplug.h +++ b/include/linux/cpuhotplug.h @@ -239,7 +239,7 @@ enum cpuhp_state { CPUHP_AP_RCUTREE_ONLINE, CPUHP_AP_BASE_CACHEINFO_ONLINE, CPUHP_AP_ONLINE_DYN, - CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 30, + CPUHP_AP_ONLINE_DYN_END = CPUHP_AP_ONLINE_DYN + 40, CPUHP_AP_X86_HPET_ONLINE, CPUHP_AP_X86_KVM_CLK_ONLINE, CPUHP_AP_ACTIVE, |