From 614a58fa7c1d0fa6b2c4a85e4efc67cf607ed366 Mon Sep 17 00:00:00 2001 From: Tk-Glitch Date: Fri, 12 Aug 2022 18:37:03 +0200 Subject: [PATCH] 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. --- linux-tkg-config/prepare | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-tkg-config/prepare b/linux-tkg-config/prepare index 16a0d26..07e7ec7 100644 --- a/linux-tkg-config/prepare +++ b/linux-tkg-config/prepare @@ -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