[PATCH TIRIVAL] sched/core: Use TASK_USER_PRIO macro in set_load_weight()

From: Kamalesh Babulal
Date: Tue Feb 11 2014 - 01:38:25 EST


Use TASK_USER_PRIO macro, instead of handcoding priority to
set load weight.

Signed-off-by: Kamalesh Babulal <kamalesh@xxxxxxxxxxxxxxxxxx>
---
kernel/sched/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 104c8164e04f..5f1c24bc453a 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -742,7 +742,7 @@ int tg_nop(struct task_group *tg, void *data)

static void set_load_weight(struct task_struct *p)
{
- int prio = p->static_prio - MAX_RT_PRIO;
+ int prio = TASK_USER_PRIO(p);
struct load_weight *load = &p->se.load;

/*
--
1.8.4.474.g128a96c

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/