mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
[PATCH] sched: include noninteractive sleep in idle detect
Tasks waiting in SLEEP_NONINTERACTIVE state can now get to best priority so they need to be included in the idle detection code. Signed-off-by: Con Kolivas <kernel@kolivas.org> Acked-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
e72ff0bb2c
commit
5138930e6a
1 changed files with 1 additions and 2 deletions
|
@ -705,8 +705,7 @@ static int recalc_task_prio(task_t *p, unsigned long long now)
|
|||
* active yet prevent them suddenly becoming cpu hogs and
|
||||
* starving other processes.
|
||||
*/
|
||||
if (p->mm && p->sleep_type != SLEEP_NONINTERACTIVE &&
|
||||
sleep_time > INTERACTIVE_SLEEP(p)) {
|
||||
if (p->mm && sleep_time > INTERACTIVE_SLEEP(p)) {
|
||||
unsigned long ceiling;
|
||||
|
||||
ceiling = JIFFIES_TO_NS(MAX_SLEEP_AVG -
|
||||
|
|
Loading…
Reference in a new issue