lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 11 Feb 2014 12:08:06 +0530 From: Kamalesh Babulal <kamalesh@...ux.vnet.ibm.com> To: linux-kernel@...r.kernel.org Cc: Ingo Molnar <mingo@...hat.com>, Peter Zijlstra <peterz@...radead.org> Subject: [PATCH TIRIVAL] sched/core: Use TASK_USER_PRIO macro in set_load_weight() Use TASK_USER_PRIO macro, instead of handcoding priority to set load weight. Signed-off-by: Kamalesh Babulal <kamalesh@...ux.vnet.ibm.com> --- 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@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists