diff options
author | Nikhil Rao <ncrao@google.com> | 2011-05-18 13:09:38 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-05-20 08:16:49 -0400 |
commit | f05998d4b80632f2cc00f108da503066ef5d38d5 (patch) | |
tree | 2603984aa32bc816fdb181d8dbd33d65d8aa1cb0 /kernel/sched.c | |
parent | 257313b2a87795e07a0bdf58d0fffbdba8b31051 (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 <ncrao@google.com>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Cc: Nikunj A. Dadhania <nikunj@linux.vnet.ibm.com>
Cc: Srivatsa Vaddagiri <vatsa@linux.vnet.ibm.com>
Cc: Stephan Barwolf <stephan.baerwolf@tu-ilmenau.de>
Cc: Mike Galbraith <efault@gmx.de>
Link: http://lkml.kernel.org/r/1305738580-9924-2-git-send-email-ncrao@google.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 11 |
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) | |||
1778 | 1778 | ||
1779 | static void set_load_weight(struct task_struct *p) | 1779 | static void set_load_weight(struct task_struct *p) |
1780 | { | 1780 | { |
1781 | int prio = p->static_prio - MAX_RT_PRIO; | ||
1782 | struct load_weight *load = &p->se.load; | ||
1783 | |||
1781 | /* | 1784 | /* |
1782 | * SCHED_IDLE tasks get minimal weight: | 1785 | * SCHED_IDLE tasks get minimal weight: |
1783 | */ | 1786 | */ |
1784 | if (p->policy == SCHED_IDLE) { | 1787 | if (p->policy == SCHED_IDLE) { |
1785 | p->se.load.weight = WEIGHT_IDLEPRIO; | 1788 | load->weight = WEIGHT_IDLEPRIO; |
1786 | p->se.load.inv_weight = WMULT_IDLEPRIO; | 1789 | load->inv_weight = WMULT_IDLEPRIO; |
1787 | return; | 1790 | return; |
1788 | } | 1791 | } |
1789 | 1792 | ||
1790 | p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO]; | 1793 | load->weight = prio_to_weight[prio]; |
1791 | p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO]; | 1794 | load->inv_weight = prio_to_wmult[prio]; |
1792 | } | 1795 | } |
1793 | 1796 | ||
1794 | static void enqueue_task(struct rq *rq, struct task_struct *p, int flags) | 1797 | static void enqueue_task(struct rq *rq, struct task_struct *p, int flags) |