All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH] sched: Fix min_vruntime calculation in dequeue_entity
@ 2011-05-17 23:21 John Stultz
  2011-05-19 11:58 ` Peter Zijlstra
  2011-05-28 16:35 ` [tip:sched/urgent] sched: Fix ->min_vruntime calculation in dequeue_entity() tip-bot for Peter Zijlstra
  0 siblings, 2 replies; 5+ messages in thread
From: John Stultz @ 2011-05-17 23:21 UTC (permalink / raw)
  To: LKML; +Cc: Peter Zijlstra, Dima Zavin, John Stultz

From: Peter Zijlstra <peterz@infradead.org>

Peter had sent this patch out in response to a patch from Dima Zavin
<dima@android.com> which tried to address the following issue:

"After pulling the thread off the run-queue during a cgroup change,
the cfs_rq.min_vruntime gets recalculated. The dequeued thread's vruntime
then gets normalized to this new value. This can then lead to the thread
getting an unfair boost in the new group if the vruntime of the next
task in the old run-queue was way further ahead."

Peter suggested the following fix instead.

The full thread can be found here:
https://lkml.org/lkml/2010/11/20/34

While Dima never replied publicly, I bugged him a few weeks ago
and he said that this fix should address his original issue.

I just wanted to resend this patch out so the fix was not missed.

CC: Dima Zavin <dima@android.com>
CC: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: John Stultz <john.stultz@linaro.org>
---
 kernel/sched_fair.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c
index 6fa833a..fb321dc 100644
--- a/kernel/sched_fair.c
+++ b/kernel/sched_fair.c
@@ -1072,8 +1072,6 @@ dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
 	se->on_rq = 0;
 	update_cfs_load(cfs_rq, 0);
 	account_entity_dequeue(cfs_rq, se);
-	update_min_vruntime(cfs_rq);
-	update_cfs_shares(cfs_rq);
 
 	/*
 	 * Normalize the entity after updating the min_vruntime because the
@@ -1082,6 +1080,9 @@ dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
 	 */
 	if (!(flags & DEQUEUE_SLEEP))
 		se->vruntime -= cfs_rq->min_vruntime;
+
+	update_min_vruntime(cfs_rq);
+	update_cfs_shares(cfs_rq);
 }
 
 /*
-- 
1.7.3.2.146.gca209


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [RFC][PATCH] sched: Fix min_vruntime calculation in dequeue_entity
  2011-05-17 23:21 [RFC][PATCH] sched: Fix min_vruntime calculation in dequeue_entity John Stultz
@ 2011-05-19 11:58 ` Peter Zijlstra
  2011-05-19 12:43   ` Mike Galbraith
  2011-05-23 19:45   ` Dima Zavin
  2011-05-28 16:35 ` [tip:sched/urgent] sched: Fix ->min_vruntime calculation in dequeue_entity() tip-bot for Peter Zijlstra
  1 sibling, 2 replies; 5+ messages in thread
From: Peter Zijlstra @ 2011-05-19 11:58 UTC (permalink / raw)
  To: John Stultz; +Cc: LKML, Dima Zavin

On Tue, 2011-05-17 at 16:21 -0700, John Stultz wrote:
> While Dima never replied publicly, I bugged him a few weeks ago
> and he said that this fix should address his original issue.

Should or does? :-)

I was really hoping for a tested-by tag..

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFC][PATCH] sched: Fix min_vruntime calculation in dequeue_entity
  2011-05-19 11:58 ` Peter Zijlstra
@ 2011-05-19 12:43   ` Mike Galbraith
  2011-05-23 19:45   ` Dima Zavin
  1 sibling, 0 replies; 5+ messages in thread
From: Mike Galbraith @ 2011-05-19 12:43 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: John Stultz, LKML, Dima Zavin

On Thu, 2011-05-19 at 13:58 +0200, Peter Zijlstra wrote:
> On Tue, 2011-05-17 at 16:21 -0700, John Stultz wrote:
> > While Dima never replied publicly, I bugged him a few weeks ago
> > and he said that this fix should address his original issue.
> 
> Should or does? :-)
> 
> I was really hoping for a tested-by tag..

Recalls-having-tested-once-upon-a-time-by: Mike Galbraith <efault@gmx.de> :)


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFC][PATCH] sched: Fix min_vruntime calculation in dequeue_entity
  2011-05-19 11:58 ` Peter Zijlstra
  2011-05-19 12:43   ` Mike Galbraith
@ 2011-05-23 19:45   ` Dima Zavin
  1 sibling, 0 replies; 5+ messages in thread
From: Dima Zavin @ 2011-05-23 19:45 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: John Stultz, LKML

Peter,

My apologies for the very delayed response, mail filter fail.

Your patch looks equivalent to what we use today, so...

Acked-by: Dima Zavin <dima@android.com>


On Thu, May 19, 2011 at 4:58 AM, Peter Zijlstra <peterz@infradead.org> wrote:
> On Tue, 2011-05-17 at 16:21 -0700, John Stultz wrote:
>> While Dima never replied publicly, I bugged him a few weeks ago
>> and he said that this fix should address his original issue.
>
> Should or does? :-)
>
> I was really hoping for a tested-by tag..
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [tip:sched/urgent] sched: Fix ->min_vruntime calculation in dequeue_entity()
  2011-05-17 23:21 [RFC][PATCH] sched: Fix min_vruntime calculation in dequeue_entity John Stultz
  2011-05-19 11:58 ` Peter Zijlstra
@ 2011-05-28 16:35 ` tip-bot for Peter Zijlstra
  1 sibling, 0 replies; 5+ messages in thread
From: tip-bot for Peter Zijlstra @ 2011-05-28 16:35 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, a.p.zijlstra, efault, peterz,
	john.stultz, dima, tglx, mingo

Commit-ID:  1e876231785d82443a5ac8b6c660e9f51bc5dede
Gitweb:     http://git.kernel.org/tip/1e876231785d82443a5ac8b6c660e9f51bc5dede
Author:     Peter Zijlstra <peterz@infradead.org>
AuthorDate: Tue, 17 May 2011 16:21:10 -0700
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Sat, 28 May 2011 17:02:56 +0200

sched: Fix ->min_vruntime calculation in dequeue_entity()

Dima Zavin <dima@android.com> reported:

"After pulling the thread off the run-queue during a cgroup change,
the cfs_rq.min_vruntime gets recalculated. The dequeued thread's vruntime
then gets normalized to this new value. This can then lead to the thread
getting an unfair boost in the new group if the vruntime of the next
task in the old run-queue was way further ahead."

Reported-by: Dima Zavin <dima@android.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Recalls-having-tested-once-upon-a-time-by: Mike Galbraith <efault@gmx.de>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1305674470-23727-1-git-send-email-john.stultz@linaro.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 kernel/sched_fair.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c
index e32a9b7..433491c 100644
--- a/kernel/sched_fair.c
+++ b/kernel/sched_fair.c
@@ -1076,8 +1076,6 @@ dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
 	se->on_rq = 0;
 	update_cfs_load(cfs_rq, 0);
 	account_entity_dequeue(cfs_rq, se);
-	update_min_vruntime(cfs_rq);
-	update_cfs_shares(cfs_rq);
 
 	/*
 	 * Normalize the entity after updating the min_vruntime because the
@@ -1086,6 +1084,9 @@ dequeue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int flags)
 	 */
 	if (!(flags & DEQUEUE_SLEEP))
 		se->vruntime -= cfs_rq->min_vruntime;
+
+	update_min_vruntime(cfs_rq);
+	update_cfs_shares(cfs_rq);
 }
 
 /*

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-05-28 16:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-17 23:21 [RFC][PATCH] sched: Fix min_vruntime calculation in dequeue_entity John Stultz
2011-05-19 11:58 ` Peter Zijlstra
2011-05-19 12:43   ` Mike Galbraith
2011-05-23 19:45   ` Dima Zavin
2011-05-28 16:35 ` [tip:sched/urgent] sched: Fix ->min_vruntime calculation in dequeue_entity() tip-bot for Peter Zijlstra

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.