OSDN Git Service

sched/fair: Ignore cache hotness for SMT migration
authorJosh Don <joshdon@google.com>
Tue, 4 Aug 2020 19:34:13 +0000 (12:34 -0700)
committerPeter 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

index 1a68a05..abdb54e 100644 (file)
@@ -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:
         */