All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Zijlstra <peterz@infradead.org>
To: Mike Galbraith <efault@gmx.de>
Cc: Ingo Molnar <mingo@elte.hu>,
	Peter Williams <pwil3058@bigpond.net.au>,
	lkml <linux-kernel@vger.kernel.org>
Subject: [PATCH -v2] sched: Make sure task has correct sched_class after policy change
Date: Tue, 10 Nov 2009 20:12:01 +0100	[thread overview]
Message-ID: <1257880321.4108.457.camel@laptop> (raw)
In-Reply-To: <1257179120.10173.50.camel@marge.simson.net>

> On Mon, 2009-11-02 at 17:20 +0100, Ingo Molnar wrote:

> > i zapped the buggy patch from sched/urgent already - mind sending a 
> > full, fixed patch? (with lkml and everyone involved cc-ed)

Updated patch below... 

 git branch -a --contains 67d08dfed042855431dc99c9e0e6f6f7e85737ef

doesn't actually tell me anything other than tip/master, which is
strange... I'd expect one of the tip/sched branches to have it too.

Will you rebase whatever tree its in, getting rid of the initial commit
and revert?

---
From: Peter Zijlstra <a.p.zijlstra@chello.nl>
Subject: sched: Make sure task has correct sched_class after policy change

>From the code in rt_mutex_setprio(), it is evident that the
intention is that task's with a RT 'prio' value as a consequence of
receiving a PI boost also have their 'sched_class' field set to
'&rt_sched_class'.

However, Peter noticed that the code in __setscheduler() could
result in this intention being frustrated. Fix it.

Reported-by: Peter Williams <pwil3058@bigpond.net.au>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
 kernel/sched.c |   16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

Index: linux-2.6/kernel/sched.c
===================================================================
--- linux-2.6.orig/kernel/sched.c
+++ linux-2.6/kernel/sched.c
@@ -6188,22 +6188,14 @@ __setscheduler(struct rq *rq, struct tas
 	BUG_ON(p->se.on_rq);
 
 	p->policy = policy;
-	switch (p->policy) {
-	case SCHED_NORMAL:
-	case SCHED_BATCH:
-	case SCHED_IDLE:
-		p->sched_class = &fair_sched_class;
-		break;
-	case SCHED_FIFO:
-	case SCHED_RR:
-		p->sched_class = &rt_sched_class;
-		break;
-	}
-
 	p->rt_priority = prio;
 	p->normal_prio = normal_prio(p);
 	/* we are holding p->pi_lock already */
 	p->prio = rt_mutex_getprio(p);
+	if (rt_prio(p->prio))
+		p->sched_class = &rt_sched_class;
+	else
+		p->sched_class = &fair_sched_class;
 	set_load_weight(p);
 }
 



       reply	other threads:[~2009-11-10 19:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1256814753.7300.1.camel@marge.simson.net>
     [not found] ` <20091102162056.GC15423@elte.hu>
     [not found]   ` <1257179120.10173.50.camel@marge.simson.net>
2009-11-10 19:12     ` Peter Zijlstra [this message]
2009-11-10 20:54       ` [tip:sched/core] sched: Make sure task has correct sched_class after policy change tip-bot for Peter Zijlstra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1257880321.4108.457.camel@laptop \
    --to=peterz@infradead.org \
    --cc=efault@gmx.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=pwil3058@bigpond.net.au \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.