On Saturday 14 January 2006 23:56, Mike Galbraith wrote: > Greetings, > > At 09:23 PM 1/13/2006 +1100, Con Kolivas wrote: > >Index: linux-2.6.15/kernel/sched.c > >=================================================================== > >--- linux-2.6.15.orig/kernel/sched.c > >+++ linux-2.6.15/kernel/sched.c > >@@ -756,26 +756,17 @@ static int recalc_task_prio(task_t *p, u > > <snip> > > >+ * 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_avg >= > > INTERACTIVE_SLEEP(p)) - sleep_time > > = 0; > >- else if (p->sleep_avg + sleep_time >= > >- INTERACTIVE_SLEEP(p)) { > >- p->sleep_avg = > > INTERACTIVE_SLEEP(p); - sleep_time > > = 0; > >- } > >- } > >+ if (p->sleep_type != SLEEP_NONINTERACTIVE || > > p->mm) > > Typo alert. Looks like that should be || > !p->mm. ^ Good catch! That would have hurt like that too. Andrew please apply to or rollup into interactivity series. Cheers, Con --- Fix typo thanks Mike Galbraith for spotting. Signed-off-by: Con Kolivas <[email protected]> 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;
Attachment:
pgpqDksHvHXWx.pgp
Description: PGP signature
- References:
- Re: [PATCH 2/5] sched-alter_uninterruptible_sleep_interactivity.patch
- From: Mike Galbraith <[email protected]>
- Re: [PATCH 2/5] sched-alter_uninterruptible_sleep_interactivity.patch
- Prev by Date: Re: change eth0 to sn0 ?
- Next by Date: [patch 2.6.15-mm4] sem2mutex: autofs4 wq_sem
- Previous by thread: Re: [PATCH 2/5] sched-alter_uninterruptible_sleep_interactivity.patch
- Next by thread: [PATCH 1/5] sched-cleanup_task_activated.patch
- Index(es):