public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sched: fix to use invalid sched_class
@ 2007-09-19 21:14 Hiroshi Shimamoto
  2007-09-19 21:37 ` Ingo Molnar
  0 siblings, 1 reply; 5+ messages in thread
From: Hiroshi Shimamoto @ 2007-09-19 21:14 UTC (permalink / raw)
  To: mingo; +Cc: linux-kernel

Hi Ingo,

I found an issue about the scheduler.
If you need a test case, please let me know.
Here is a patch.

When using rt_mutex, a NULL pointer dereference is occurred at
enqueue_task_rt. Here is a scenario;
1) there are two threads, the thread A is fair_sched_class and
   thread B is rt_sched_class.
2) Thread A is boosted up to rt_sched_class, because the thread A
   has a rt_mutex lock and the thread B is waiting the lock.
3) At this time, when thread A create a new thread C, the thread
   C has a rt_sched_class.
4) When doing wake_up_new_task() for the thread C, the priority
   of the thread C is out of the RT priority range, because the
   normal priority of thread A is not the RT priority. It makes
   data corruption by overflowing the rt_prio_array.
The new thread C should be fair_sched_class.

The new thread should be valid scheduler class before queuing.
This patch fixes to set the suitable scheduler class.

Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
---

diff --git a/kernel/sched.c b/kernel/sched.c
index deeb1f8..b0c582b 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -1682,6 +1682,11 @@ void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
 
 	p->prio = effective_prio(p);
 
+	if (rt_prio(p->prio))
+		p->sched_class = &rt_sched_class;
+	else
+		p->sched_class = &fair_sched_class;
+
 	if (!p->sched_class->task_new || !sysctl_sched_child_runs_first ||
 			(clone_flags & CLONE_VM) || task_cpu(p) != this_cpu ||
 			!current->se.on_rq) {


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* Re: [PATCH] sched: fix to use invalid sched_class
@ 2007-09-19 22:05 Dmitry Adamushko
  2007-09-20  0:01 ` Hiroshi Shimamoto
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Adamushko @ 2007-09-19 22:05 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Hiroshi Shimamoto, Andrew Morton, Peter Zijlstra, linux-kernel

> > Hi Ingo,
> > 
> > I found an issue about the scheduler.
> > If you need a test case, please let me know.
> > Here is a patch.
> > [ ... ]
> > The new thread should be valid scheduler class before queuing.
> > This patch fixes to set the suitable scheduler class.
> 
> Nice fix! It's a 2.6.23 must-have fix - i'll push it out into the 
> scheduler tree. Thanks!

I think, the following approach would be a bit more appropriate
(the missing addition to the already existing "don't leak PI boosting prio"):

(not tested)

---
diff --git a/kernel/sched.c b/kernel/sched.c
index bc1a625..da2139e 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -1646,6 +1646,8 @@ void sched_fork(struct task_struct *p, int clone_flags)
 	 * Make sure we do not leak PI boosting priority to the child:
 	 */
 	p->prio = current->normal_prio;
+	if (!rt_prio(p->prio))
+		p->sched_class = &fair_sched_class;
 
 #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
 	if (likely(sched_info_on()))

---




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

end of thread, other threads:[~2007-09-20  7:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-19 21:14 [PATCH] sched: fix to use invalid sched_class Hiroshi Shimamoto
2007-09-19 21:37 ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2007-09-19 22:05 Dmitry Adamushko
2007-09-20  0:01 ` Hiroshi Shimamoto
2007-09-20  7:17   ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox