sched: Do not reduce perceived CPU capacity while idle
CPUs that are idle are excellent candidates for latency sensitive or high-performance tasks. Decrementing their capacity while they are idle will result in these CPUs being chosen less, and they will prefer to schedule smaller tasks instead of large ones. Disable this. Signed-off-by: Tyler Nijmeh <tylernij@gmail.com> Signed-off-by: clarencelol <clarencekuiek@icloud.com> Signed-off-by: Tashfin Shakeer Rhythm <tashfinshakeerrhythm@gmail.com>
This commit is contained in:
parent
55fa68cd6a
commit
9e751eb5cb
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ SCHED_FEAT(DOUBLE_TICK, false)
|
|||
/*
|
||||
* Decrement CPU capacity based on time not spent running tasks
|
||||
*/
|
||||
SCHED_FEAT(NONTASK_CAPACITY, true)
|
||||
SCHED_FEAT(NONTASK_CAPACITY, false)
|
||||
|
||||
/*
|
||||
* Queue remote wakeups on the target CPU and process them
|
||||
|
|
Loading…
Reference in a new issue