diff options
| author | Mark Brown <broonie@kernel.org> | 2026-07-03 16:21:35 +0100 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-07-03 16:21:37 +0100 |
| commit | 4a1b56708d6d8122e0cd290b907f3b7a252a2255 (patch) | |
| tree | 837cc05bacc7c3830545fca48dcf66afb22ddc07 /include/linux/sched/ext.h | |
| parent | babf8c9839465886a97437c9fa2afffcd0973d9a (diff) | |
| parent | 57194a3172ba0123e8f37c4574a8e2863ab67622 (diff) | |
| download | linux-next-4a1b56708d6d8122e0cd290b907f3b7a252a2255.tar.gz linux-next-4a1b56708d6d8122e0cd290b907f3b7a252a2255.zip | |
Merge branch 'for-next' of https://git.kernel.org/pub/scm/linux/kernel/git/tj/sched_ext.git
Diffstat (limited to 'include/linux/sched/ext.h')
| -rw-r--r-- | include/linux/sched/ext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched/ext.h b/include/linux/sched/ext.h index 20b2343aa344..75cb8b119fb7 100644 --- a/include/linux/sched/ext.h +++ b/include/linux/sched/ext.h @@ -263,7 +263,7 @@ void sched_ext_dead(struct task_struct *p); void print_scx_info(const char *log_lvl, struct task_struct *p); void scx_softlockup(u32 dur_s); bool scx_hardlockup(int cpu); -bool scx_rcu_cpu_stall(void); +bool scx_rcu_cpu_stall(const struct cpumask *stalled_mask); #else /* !CONFIG_SCHED_CLASS_EXT */ @@ -271,7 +271,7 @@ static inline void sched_ext_dead(struct task_struct *p) {} static inline void print_scx_info(const char *log_lvl, struct task_struct *p) {} static inline void scx_softlockup(u32 dur_s) {} static inline bool scx_hardlockup(int cpu) { return false; } -static inline bool scx_rcu_cpu_stall(void) { return false; } +static inline bool scx_rcu_cpu_stall(const struct cpumask *stalled_mask) { return false; } #endif /* CONFIG_SCHED_CLASS_EXT */ |
