1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_SCHED_NOHZ_H
3 #define _LINUX_SCHED_NOHZ_H
6 * This is the interface between the scheduler and nohz/dynticks:
9 #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
10 extern void cpu_load_update_nohz_start(void);
11 extern void cpu_load_update_nohz_stop(void);
13 static inline void cpu_load_update_nohz_start(void) { }
14 static inline void cpu_load_update_nohz_stop(void) { }
17 #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ_COMMON)
18 extern void nohz_balance_enter_idle(int cpu
);
19 extern void set_cpu_sd_state_idle(void);
20 extern int get_nohz_timer_target(void);
22 static inline void nohz_balance_enter_idle(int cpu
) { }
23 static inline void set_cpu_sd_state_idle(void) { }
26 #ifdef CONFIG_NO_HZ_COMMON
27 void calc_load_nohz_start(void);
28 void calc_load_nohz_stop(void);
30 static inline void calc_load_nohz_start(void) { }
31 static inline void calc_load_nohz_stop(void) { }
32 #endif /* CONFIG_NO_HZ_COMMON */
34 #if defined(CONFIG_NO_HZ_COMMON) && defined(CONFIG_SMP)
35 extern void wake_up_nohz_cpu(int cpu
);
37 static inline void wake_up_nohz_cpu(int cpu
) { }
40 #ifdef CONFIG_NO_HZ_FULL
41 extern u64
scheduler_tick_max_deferment(void);
44 #endif /* _LINUX_SCHED_NOHZ_H */