LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 09/28] sched: Do not consider SCHED_IDLE tasks to be cache hot
@ 2011-02-10 9:23 stable-bot for Nikhil Rao
0 siblings, 0 replies; only message in thread
From: stable-bot for Nikhil Rao @ 2011-02-10 9:23 UTC (permalink / raw)
To: stable; +Cc: linux-kernel, Peter Zijlstra, Ingo Molnar
Commit: ef8002f6848236de5adc613063ebeabddea8a6fb upstream
Author: Nikhil Rao <ncrao@google.com>
AuthorDate: Wed Oct 13 12:09:35 2010 -0700
This patch adds a check in task_hot to return if the task has SCHED_IDLE
policy. SCHED_IDLE tasks have very low weight, and when run with regular
workloads, are typically scheduled many milliseconds apart. There is no
need to consider these tasks hot for load balancing.
Signed-off-by: Nikhil Rao <ncrao@google.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <1287173550-30365-2-git-send-email-ncrao@google.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Mike Galbraith <efault@gmx.de>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
kernel/sched.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/kernel/sched.c b/kernel/sched.c
index 87e3b2b..0a1fb24 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -2014,6 +2014,9 @@ task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
if (p->sched_class != &fair_sched_class)
return 0;
+ if (unlikely(p->policy == SCHED_IDLE))
+ return 0;
+
/*
* Buddy candidates are cache hot:
*/
--
1.7.4
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-02-10 12:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-10 9:23 [PATCH 09/28] sched: Do not consider SCHED_IDLE tasks to be cache hot stable-bot for Nikhil Rao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).