linux518/519: Reorder schedulers selector so CFS is first in the list.
It's really competitive with alternative latency oriented schedulers on newer kernel revisions, and should be considered.
This commit is contained in:
@@ -200,9 +200,9 @@ _set_cpu_scheduler() {
|
||||
elif [ "$_basever" = "517" ]; then
|
||||
_avail_cpu_scheds=("pds" "bmq" "cacule" "tt" "cfs")
|
||||
elif [ "$_basever" = "518" ]; then
|
||||
_avail_cpu_scheds=("pds" "bmq" "cacule" "tt" "cfs")
|
||||
_avail_cpu_scheds=("cfs" "pds" "bmq" "cacule" "tt")
|
||||
elif [ "$_basever" = "519" ]; then
|
||||
_avail_cpu_scheds=("pds" "bmq" "cacule" "tt" "cfs" )
|
||||
_avail_cpu_scheds=("cfs" "pds" "bmq" "cacule" "tt")
|
||||
else
|
||||
_avail_cpu_scheds=("cfs")
|
||||
fi
|
||||
|
Reference in New Issue
Block a user