Magellan Linux

Annotation of /trunk/kernel26-magellan/patches-2.6.21-r2/0018-2.6.21-mm-idleprio_prio.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 200 - (hide annotations) (download)
Sat May 19 14:08:35 2007 UTC (17 years ago) by niro
File size: 660 byte(s)
-rev bump to 2.6.21-magellan-r2; disabled acpi-dsdt patch, broken -> "runaway loop request module binfmt-0000"

1 niro 200 Set the effective priority of idleprio tasks to that of nice 19 tasks when
2     modifying vm reclaim behaviour.
3    
4     Signed-off-by: Con Kolivas <kernel@kolivas.org>
5    
6     mm/vmscan.c | 2 ++
7     1 file changed, 2 insertions(+)
8    
9     Index: linux-2.6.21-ck2/mm/vmscan.c
10     ===================================================================
11     --- linux-2.6.21-ck2.orig/mm/vmscan.c 2007-05-14 19:49:56.000000000 +1000
12     +++ linux-2.6.21-ck2/mm/vmscan.c 2007-05-14 19:49:56.000000000 +1000
13     @@ -980,6 +980,8 @@ static int effective_sc_prio(struct task
14     if (likely(p->mm)) {
15     if (rt_task(p))
16     return -20;
17     + if (idleprio_task(p))
18     + return 19;
19     return task_nice(p);
20     }
21     return 0;