Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1673688
| From | riel@redhat.com |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/4] sched: simplify wake_affine for single socket case |
| Date | 2017-06-23 19:00 +0200 |
| Message-ID | <tVA66-4Fr-23@gated-at.bofh.it> (permalink) |
| References | <tVA65-4Fr-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Rik van Riel <riel@redhat.com>
Then this_cpu and prev_cpu are in the same socket, select_idle_sibling
will do its thing regardless of the return value of wake_affine. Just
return true and don't look at all the other things.
Signed-off-by: Rik van Riel <riel@redhat.com>
---
kernel/sched/fair.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 2180c8591e16..949de24e36bd 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5373,6 +5373,13 @@ static int wake_affine(struct sched_domain *sd, struct task_struct *p,
this_load = target_load(this_cpu, idx);
/*
+ * Common case: CPUs are in the same socket, and select_idle_sibling
+ * will do its thing regardless of what we return.
+ */
+ if (cpus_share_cache(prev_cpu, this_cpu))
+ return true;
+
+ /*
* If sync wakeup then subtract the (maximum possible)
* effect of the currently running task from the load
* of the current CPU:
@@ -5960,11 +5967,15 @@ select_task_rq_fair(struct task_struct *p, int prev_cpu, int sd_flag, int wake_f
if (affine_sd) {
sd = NULL; /* Prefer wake_affine over balance flags */
- if (cpu != prev_cpu && wake_affine(affine_sd, p, prev_cpu, sync))
+ if (cpu == prev_cpu)
+ goto pick_cpu;
+
+ if (wake_affine(affine_sd, p, prev_cpu, sync))
new_cpu = cpu;
}
if (!sd) {
+ pick_cpu:
if (sd_flag & SD_BALANCE_WAKE) /* XXX always ? */
new_cpu = select_idle_sibling(p, prev_cpu, new_cpu);
--
2.9.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/4] NUMA improvements with task wakeup and load balancing riel@redhat.com - 2017-06-23 19:00 +0200
[PATCH 1/4] sched,numa: override part of migrate_degrades_locality when idle balancing riel@redhat.com - 2017-06-23 19:00 +0200
Re: [PATCH 1/4] sched,numa: override part of migrate_degrades_locality when idle balancing Ingo Molnar <mingo@kernel.org> - 2017-06-24 09:00 +0200
Re: [PATCH 1/4] sched,numa: override part of migrate_degrades_locality when idle balancing Rik van Riel <riel@redhat.com> - 2017-06-25 01:50 +0200
[tip:sched/core] sched/numa: Override part of migrate_degrades_locality() when idle balancing tip-bot for Rik van Riel <tipbot@zytor.com> - 2017-06-24 09:30 +0200
[PATCH 2/4] sched: simplify wake_affine for single socket case riel@redhat.com - 2017-06-23 19:00 +0200
[tip:sched/core] sched/fair: Simplify wake_affine() for the single socket case tip-bot for Rik van Riel <tipbot@zytor.com> - 2017-06-24 09:30 +0200
csiph-web