diff options
| author | Linux Build Service Account <lnxbuild@quicinc.com> | 2017-11-09 01:36:48 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-11-09 01:36:48 -0800 |
| commit | 2a8246c9d1bea924727122078da9cf6c20cfc60a (patch) | |
| tree | 027391e0641f661e12c1b7fb827e534c2b1ce96f | |
| parent | 3581002a1399d61922dcac56485ed2203028872e (diff) | |
| parent | 22b18281457de02c9c830504fd4d48726db86f31 (diff) | |
Merge "sched: restore discarded ifdef CONFIG_SCHED_WALT code"
| -rw-r--r-- | kernel/sched/sched.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index c53970b5a8f0..3f17dd1d9d2c 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h @@ -794,6 +794,18 @@ struct rq { int curr_top; #endif +#ifdef CONFIG_SCHED_WALT + u64 cumulative_runnable_avg; + u64 window_start; + u64 curr_runnable_sum; + u64 prev_runnable_sum; + u64 nt_curr_runnable_sum; + u64 nt_prev_runnable_sum; + u64 cur_irqload; + u64 avg_irqload; + u64 irqload_ts; +#endif /* CONFIG_SCHED_WALT */ + #ifdef CONFIG_IRQ_TIME_ACCOUNTING u64 prev_irq_time; #endif |
