]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
sched_ext: Always use SMP versions in kernel/sched/ext_idle.h
authorCheng-Yang Chou <yphbchou0911@gmail.com>
Wed, 11 Jun 2025 13:54:04 +0000 (21:54 +0800)
committerTejun Heo <tj@kernel.org>
Sat, 14 Jun 2025 00:47:59 +0000 (14:47 -1000)
Simplify the scheduler by making formerly SMP-only primitives and data
structures unconditional.

tj: Updated subject for clarity.

Signed-off-by: Cheng-Yang Chou <yphbchou0911@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/sched/ext_idle.h

index 05e389ed72e4c1ce93ba666bb9600c406cf8616d..fa583f141f35dd1b8c097d77c1e1da093d7f4a31 100644 (file)
 
 struct sched_ext_ops;
 
-#ifdef CONFIG_SMP
 void scx_idle_update_selcpu_topology(struct sched_ext_ops *ops);
 void scx_idle_init_masks(void);
-#else /* !CONFIG_SMP */
-static inline void scx_idle_update_selcpu_topology(struct sched_ext_ops *ops) {}
-static inline void scx_idle_init_masks(void) {}
-#endif /* CONFIG_SMP */
 
 s32 scx_select_cpu_dfl(struct task_struct *p, s32 prev_cpu, u64 wake_flags,
                       const struct cpumask *cpus_allowed, u64 flags);