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:
Tk-Glitch
2022-08-12 18:37:03 +02:00
parent 73651a4b5e
commit 614a58fa7c

View File

@@ -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