Fix typo thanks Mike Galbraith for spotting. Signed-off-by: Con Kolivas kernel/sched.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.15/kernel/sched.c =================================================================== --- linux-2.6.15.orig/kernel/sched.c +++ linux-2.6.15/kernel/sched.c @@ -768,7 +768,7 @@ static int recalc_task_prio(task_t *p, u * If a task was sleeping with the noninteractive * label do not apply this non-linear boost */ - if (p->sleep_type != SLEEP_NONINTERACTIVE || p->mm) + if (p->sleep_type != SLEEP_NONINTERACTIVE || !p->mm) sleep_time *= (MAX_BONUS - CURRENT_BONUS(p)) ? : 1;