projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f4a1c4
)
sched/fair: Ignore cache hotness for SMT migration
author
Josh Don
<joshdon@google.com>
Tue, 4 Aug 2020 19:34:13 +0000
(12:34 -0700)
committer
Peter Zijlstra
<peterz@infradead.org>
Wed, 26 Aug 2020 10:41:57 +0000
(12:41 +0200)
SMT siblings share caches, so cache hotness should be irrelevant for
cross-sibling migration.
Signed-off-by: Josh Don <joshdon@google.com>
Proposed-by: Venkatesh Pallipadi <venki@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link:
https://lkml.kernel.org/r/20200804193413.510651-1-joshdon@google.com
kernel/sched/fair.c
patch
|
blob
|
history
diff --git
a/kernel/sched/fair.c
b/kernel/sched/fair.c
index 1a68a0536adda5257f44468451501ea1448d8005..abdb54e2339f454aae177c141f3f651bbd6f4559 100644
(file)
--- a/
kernel/sched/fair.c
+++ b/
kernel/sched/fair.c
@@
-7402,6
+7402,10
@@
static int task_hot(struct task_struct *p, struct lb_env *env)
if (unlikely(task_has_idle_policy(p)))
return 0;
+ /* SMT siblings share cache */
+ if (env->sd->flags & SD_SHARE_CPUCAPACITY)
+ return 0;
+
/*
* Buddy candidates are cache hot:
*/