The patch titled sched: fix idle at tick has been added to the -mm tree. Its filename is sched-fix-idle-load-balancing-in-softirqd-context-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sched: fix idle at tick From: Con Kolivas <kernel@xxxxxxxxxxx> Fix reverse idle at tick logic. Signed-off-by: Con Kolivas <kernel@xxxxxxxxxxx> Cc: "Siddha, Suresh B" <suresh.b.siddha@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sched.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/sched.c~sched-fix-idle-load-balancing-in-softirqd-context-fix kernel/sched.c --- a/kernel/sched.c~sched-fix-idle-load-balancing-in-softirqd-context-fix +++ a/kernel/sched.c @@ -3220,7 +3220,7 @@ void scheduler_tick(void) update_cpu_clock(p, rq, now); - if (idle_at_tick) + if (!idle_at_tick) task_running_tick(rq, p); #ifdef CONFIG_SMP update_load(rq); _ Patches currently in -mm which might be from kernel@xxxxxxxxxxx are origin.patch sched-fix-idle-load-balancing-in-softirqd-context-fix.patch sched-add-above-background-load-function.patch mm-implement-swap-prefetching.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html