diff options
author | 2024-09-17 06:56:31 +0200 | |
---|---|---|
committer | 2024-09-17 06:56:31 +0200 | |
commit | 97e17c08a428b17531894b59990d6b9ff3e95eab (patch) | |
tree | b188e1d0c8ddc14ced09f7003fcc4f93fb52fd7d /include/linux | |
parent | Merge tag 'lsm-pr-20240911' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm (diff) | |
parent | smp: Mark smp_prepare_boot_cpu() __init (diff) | |
download | wireguard-linux-97e17c08a428b17531894b59990d6b9ff3e95eab.tar.xz wireguard-linux-97e17c08a428b17531894b59990d6b9ff3e95eab.zip |
Merge tag 'smp-core-2024-09-16' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull CPU hotplug updates from Thomas Gleixner:
- Prepare the core for supporting parallel hotplug on loongarch
- A small set of cleanups and enhancements
* tag 'smp-core-2024-09-16' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
smp: Mark smp_prepare_boot_cpu() __init
cpu: Fix W=1 build kernel-doc warning
cpu/hotplug: Provide weak fallback for arch_cpuhp_init_parallel_bringup()
cpu/hotplug: Make HOTPLUG_PARALLEL independent of HOTPLUG_SMT
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/smp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/smp.h b/include/linux/smp.h index fcd61dfe2af3..6a0813c905d0 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h @@ -109,7 +109,7 @@ static inline void on_each_cpu_cond(smp_cond_func_t cond_func, * Architecture specific boot CPU setup. Defined as empty weak function in * init/main.c. Architectures can override it. */ -void smp_prepare_boot_cpu(void); +void __init smp_prepare_boot_cpu(void); #ifdef CONFIG_SMP |