summaryrefslogtreecommitdiff
path: root/kernel/sched/ext_idle.h
diff options
context:
space:
mode:
authorAndrea Righi <arighi@nvidia.com>2025-06-04 16:33:12 +0200
committerTejun Heo <tj@kernel.org>2025-06-09 06:25:14 -1000
commit353656eb84fef8ffece3b1be4345cbacbbb5267f (patch)
tree03e785f879f6ee901d0dff611a0c6d69b926b8a6 /kernel/sched/ext_idle.h
parentc68ea8243c5cc901cea62f695504bec73195d906 (diff)
downloadlinux-next-353656eb84fef8ffece3b1be4345cbacbbb5267f.tar.gz
linux-next-353656eb84fef8ffece3b1be4345cbacbbb5267f.zip
sched_ext: idle: Make local functions static in ext_idle.c
Functions that are only used within ext_idle.c can be marked as static to limit their scope. No functional changes. Signed-off-by: Andrea Righi <arighi@nvidia.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/sched/ext_idle.h')
-rw-r--r--kernel/sched/ext_idle.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/kernel/sched/ext_idle.h b/kernel/sched/ext_idle.h
index 37be78a7502b..05e389ed72e4 100644
--- a/kernel/sched/ext_idle.h
+++ b/kernel/sched/ext_idle.h
@@ -15,16 +15,9 @@ struct sched_ext_ops;
#ifdef CONFIG_SMP
void scx_idle_update_selcpu_topology(struct sched_ext_ops *ops);
void scx_idle_init_masks(void);
-bool scx_idle_test_and_clear_cpu(int cpu);
-s32 scx_pick_idle_cpu(const struct cpumask *cpus_allowed, int node, u64 flags);
#else /* !CONFIG_SMP */
static inline void scx_idle_update_selcpu_topology(struct sched_ext_ops *ops) {}
static inline void scx_idle_init_masks(void) {}
-static inline bool scx_idle_test_and_clear_cpu(int cpu) { return false; }
-static inline s32 scx_pick_idle_cpu(const struct cpumask *cpus_allowed, int node, u64 flags)
-{
- return -EBUSY;
-}
#endif /* CONFIG_SMP */
s32 scx_select_cpu_dfl(struct task_struct *p, s32 prev_cpu, u64 wake_flags,