diff options
Diffstat (limited to 'kernel/time/tick-sched.c')
| -rw-r--r-- | kernel/time/tick-sched.c | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index 7fe53be86077..64c97fc130c4 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c @@ -993,6 +993,18 @@ ktime_t tick_nohz_get_sleep_length(void)  	return ts->sleep_length;  } +/** + * tick_nohz_get_idle_calls - return the current idle calls counter value + * + * Called from the schedutil frequency scaling governor in scheduler context. + */ +unsigned long tick_nohz_get_idle_calls(void) +{ +	struct tick_sched *ts = this_cpu_ptr(&tick_cpu_sched); + +	return ts->idle_calls; +} +  static void tick_nohz_account_idle_ticks(struct tick_sched *ts)  {  #ifndef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE  | 
