aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched/sched.h
diff options
context:
space:
mode:
authorAlex Shi <alex.shi@intel.com>2013-06-19 22:18:53 -0400
committerIngo Molnar <mingo@kernel.org>2013-06-27 04:07:38 -0400
commit72a4cf20cb71a327c636c7042fdacc25abffc87c (patch)
tree55679cadceb7ddf931f0c56a65e8eb031acd769d /kernel/sched/sched.h
parenta003a25b227d59ded9197ced109517f037d01c27 (diff)
sched: Change cfs_rq load avg to unsigned long
Since the 'u64 runnable_load_avg, blocked_load_avg' in cfs_rq struct are smaller than 'unsigned long' cfs_rq->load.weight. We don't need u64 vaiables to describe them. unsigned long is more efficient and convenience. Signed-off-by: Alex Shi <alex.shi@intel.com> Reviewed-by: Paul Turner <pjt@google.com> Tested-by: Vincent Guittot <vincent.guittot@linaro.org> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1371694737-29336-10-git-send-email-alex.shi@intel.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched/sched.h')
-rw-r--r--kernel/sched/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h
index 9c65d46504b1..9eb12d9edd35 100644
--- a/kernel/sched/sched.h
+++ b/kernel/sched/sched.h
@@ -277,7 +277,7 @@ struct cfs_rq {
277 * This allows for the description of both thread and group usage (in 277 * This allows for the description of both thread and group usage (in
278 * the FAIR_GROUP_SCHED case). 278 * the FAIR_GROUP_SCHED case).
279 */ 279 */
280 u64 runnable_load_avg, blocked_load_avg; 280 unsigned long runnable_load_avg, blocked_load_avg;
281 atomic64_t decay_counter, removed_load; 281 atomic64_t decay_counter, removed_load;
282 u64 last_decay; 282 u64 last_decay;
283 283