aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikhil Rao <[email protected]>2011-05-18 10:09:38 -0700
committerIngo Molnar <[email protected]>2011-05-20 14:16:49 +0200
commitf05998d4b80632f2cc00f108da503066ef5d38d5 (patch)
tree2603984aa32bc816fdb181d8dbd33d65d8aa1cb0
parent257313b2a87795e07a0bdf58d0fffbdba8b31051 (diff)
sched: Cleanup set_load_weight()
Avoid using long repetitious names; make this simpler and nicer to read. No functional change introduced in this patch. Signed-off-by: Nikhil Rao <[email protected]> Acked-by: Peter Zijlstra <[email protected]> Cc: Nikunj A. Dadhania <[email protected]> Cc: Srivatsa Vaddagiri <[email protected]> Cc: Stephan Barwolf <[email protected]> Cc: Mike Galbraith <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r--kernel/sched.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index c62acf45d3b9..d036048b59a4 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -1778,17 +1778,20 @@ static void dec_nr_running(struct rq *rq)
static void set_load_weight(struct task_struct *p)
{
+ int prio = p->static_prio - MAX_RT_PRIO;
+ struct load_weight *load = &p->se.load;
+
/*
* SCHED_IDLE tasks get minimal weight:
*/
if (p->policy == SCHED_IDLE) {
- p->se.load.weight = WEIGHT_IDLEPRIO;
- p->se.load.inv_weight = WMULT_IDLEPRIO;
+ load->weight = WEIGHT_IDLEPRIO;
+ load->inv_weight = WMULT_IDLEPRIO;
return;
}
- p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
- p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
+ load->weight = prio_to_weight[prio];
+ load->inv_weight = prio_to_wmult[prio];
}
static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)