2008-06-30 15:34:33

by Ingo Molnar

[permalink] [raw]
Subject: [git pull] scheduler fixes

Linus,

Please pull the latest scheduler fixes git tree from:

git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git sched-fixes-for-linus

Thanks,

Ingo

------------------>
Dmitry Adamushko (1):
sched: fix cpu hotplug

kernel/sched.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index 3aaa5c8..a66e856 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -5887,6 +5887,7 @@ static void migrate_dead_tasks(unsigned int dead_cpu)
next = pick_next_task(rq, rq->curr);
if (!next)
break;
+ next->sched_class->put_prev_task(rq, next);
migrate_dead(dead_cpu, next);

}


2008-06-30 17:40:40

by Dhaval Giani

[permalink] [raw]
Subject: Re: [git pull] scheduler fixes

On Mon, Jun 30, 2008 at 05:31:24PM +0200, Ingo Molnar wrote:
> Linus,
>
> Please pull the latest scheduler fixes git tree from:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git sched-fixes-for-linus
>
> Thanks,
>
> Ingo
>
> ------------------>
> Dmitry Adamushko (1):
> sched: fix cpu hotplug
>

Ingo,

You might want to put this is as a candidate for stable. I recall seeing
a similar crash in 2.6.24 rt as well. And Heiko mentioned bisection
taking him to 2.6.23

Thanks,
--
regards,
Dhaval

2008-06-30 18:05:33

by Ingo Molnar

[permalink] [raw]
Subject: Re: [git pull] scheduler fixes


* Dhaval Giani <[email protected]> wrote:

> Ingo,
>
> You might want to put this is as a candidate for stable. I recall
> seeing a similar crash in 2.6.24 rt as well. And Heiko mentioned
> bisection taking him to 2.6.23

yep, i've bounced it to stable already and Greg has queued it up.

Ingo