<div dir="ltr"><span style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif">Changing the policy of the init process at include/linux/init_task.h worked! Although a lot of tasks asked to change the scheduler policy to SCHED_NORMAL (and thus the scheduler class to CFS) through sched_setscheduler(), so I had to add some code there to force the SCHED_RR policy.</span><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif"><br></div><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif">I made the priority of the tasks to be the same of the init process, so the RT scheduler turned (I think) into a simple Round-Robin scheduler, as the priority of almost all processes is the same. The only processes that had higher priority were the ones that already runned using the RT scheduler even when the CFS was being used.</div><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif"><br></div><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif">The linux booted up okay, although I am not using a desktop environment, so I don&#39;t know if it would boot up if it had XOrg.</div><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif"><br></div><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif">What would I have to do if I instead wanted to change the scheduler class that is used when a process specifies the SCHED_NORMAL policy? Is there a way to do that without replacing the CFS source at fair.c?</div><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif"><br></div><div style="color:rgb(33,33,33);font-family:&#39;helvetica neue&#39;,helvetica,arial,sans-serif">Thanks.</div><br><div class="gmail_quote"><div dir="ltr">Em ter, 24 de mai de 2016 às 12:22, Frederic Weisbecker &lt;<a href="mailto:fweisbec@gmail.com">fweisbec@gmail.com</a>&gt; escreveu:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">(Sorry I forgot to Cc kernelnewbies, I fixed the Cc line).<br>
<br>
On Tue, May 24, 2016 at 11:47:37AM +0000, Renato Utsch wrote:<br>
&gt; Hi Frederic,<br>
&gt;<br>
&gt; Thanks, this was exactly what I was looking for! I was suspecting that all<br>
&gt; the processes would inherit the policy of the init process, but I didn&#39;t<br>
&gt; know where to look at. I&#39;ll take a look at this and see what happens.<br>
&gt;<br>
&gt; By the way, how are the scheduler policies and the schedulers related?<br>
&gt; Because the RT scheduler can be used with either SCHED_FIFO or SCHED_RR.<br>
&gt; Are some policies linked to particular schedulers? If so, can I introduce<br>
&gt; new SCHED_* constants? How should I do that if I want to call<br>
&gt; sched_setscheduler() to change the policy to, say, SCHED_MY in an userspace<br>
&gt; program?<br>
<br>
What you refer as &quot;scheduler&quot; is in fact a scheduler class.<br>
So we have two different notions here: scheduler policy and scheduler class.<br>
<br>
_ The scheduler policy is set by the user or the system to tell how to schedule a task.<br>
  That&#39;s in the user interface level.<br>
<br>
_ The scheduler classes handle the tasks scheduling differently on top of their scheduler policy (driven<br>
  by the user) or on top of kernel internal needs (idle_sched_class and stop_sched_class).<br>
<br>
  We have 4 of them, from lowest prio to highest:<br>
<br>
     _ idle_sched_class = implement idle tasks. The idle tasks (one per CPU)<br>
                          are set with SCHED_NORMAL but the policy of idle tasks are<br>
                          not even checked.<br>
<br>
     _ fair_sched_class = implement SCHED_NORMAL/SCHED_FAIR and SCHED_IDLE (not to be confused<br>
                          with idle tasks. In fact SCHED_IDLE tasks are normal tasks that execute<br>
                          when there is no SCHED_NORMAL tasks to run)<br>
<br>
     _ rt_sched_class   = implement SCHED_RR and SCHED_FIFO<br>
<br>
     _ dl_sched_class   = deadline realtime tasks (SCHED_DEADLINE)<br>
<br>
     _ stop_sched_class = stop machine tasks. They don&#39;t refer to any policy, the stop machine<br>
                          tasks call sched_set_stop_task() to switch to this class. Their policy<br>
                          are SCHED_NORMAL but it&#39;s ignored.<br>
<br>
   That&#39;s in the implementation level.<br>
<br>
When the scheduler needs to choose the next task to run on the CPU, it iterates each class<br>
from highest prio to lower: (stop, dl, rt, fair, idle) and calls the -&gt;pick_next_task()<br>
callback for each of these classes. The first one that has a task to run will have it on<br>
the CPU. This is how class priorities are implemented.<br>
<br>
So if you want to implement a new policy, the easiest is to create a new scheduler class<br>
but you&#39;ll need to decide where it fits between the classes prio.<br>
<br>
Now when people talk about re-implementing the scheduler, they usually mean the way to schedule<br>
the SCHED_NORMAL tasks. If that&#39;s what you&#39;re interested in, I think you rather want to rewrite<br>
kernel/sched/fair.c and do your own fair_sched_class implementation.<br>
<br>
Now kernel/sched/fair.c does a lot more than just implement fair_sched_class so rewriting it the<br>
way you like to experiment will be painful due to the links it has all around in the core kernel.<br>
Perhaps it&#39;s easier to create your own policy, define its prio between idle_sched_class and<br>
fair_sched_class then run your task under that policy on a CPU that doesn&#39;t have any SCHED_NORMAL<br>
tasks.<br>
<br>
You can also set the init/0 task to your policy but there is no guarantee it will propagate all<br>
along recursively to the whole process tree as anything can override a parent back to SCHED_NORMAL<br>
at some point.<br>
<br>
Thanks.<br>
<br>
&gt;<br>
&gt; Em ter, 24 de mai de 2016 às 08:39, Frederic Weisbecker &lt;<a href="mailto:fweisbec@gmail.com" target="_blank">fweisbec@gmail.com</a>&gt;<br>
&gt; escreveu:<br>
&gt;<br>
&gt; &gt; Hi Renato,<br>
&gt; &gt;<br>
&gt; &gt; What you&#39;re talking about is not exactly the scheduler but the scheduler<br>
&gt; &gt; policy. Basically the scheduler policy is inherited on fork(). The very<br>
&gt; &gt; first task (init/0) is initialized with SCHED_NORMAL and this policy is<br>
&gt; &gt; inherited recursively through all subsequent fork() calls as it is the root<br>
&gt; &gt; parent task. If you want all tasks in the system to inherit a SCHED_FIFO<br>
&gt; &gt; policy, you need to change the policy of init/0. This is probably feasible<br>
&gt; &gt; in include/linux/init_task.h (I can&#39;t check that right now). Now since<br>
&gt; &gt; every task will have a real time policy, some of them may starve others.<br>
&gt; &gt; You may observe surprising behaviour,  your system could even fail to boot.<br>
&gt; &gt;<br>
&gt; &gt; Have fun.<br>
&gt; &gt; Le 20 mai 2016 01:51, &quot;Renato Utsch&quot; &lt;<a href="mailto:renatoutsch@gmail.com" target="_blank">renatoutsch@gmail.com</a>&gt; a écrit :<br>
&gt; &gt;<br>
&gt; &gt;&gt; Hello,<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; I am a new developer trying to learn how to tinker with the kernel. I<br>
&gt; &gt;&gt; searched on the internet but couldn&#39;t find much info about this (and<br>
&gt; &gt;&gt; couldn&#39;t find any info up to date).<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; My question is, how does the kernel decide which is the default scheduler<br>
&gt; &gt;&gt; that all processes start with? I can change the scheduler of a process by<br>
&gt; &gt;&gt; sched_setscheduler(), but how do I change *all* processes from using the<br>
&gt; &gt;&gt; CFS scheduler to, for example, the RR scheduler?<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Sorry if this is too basic, but I don&#39;t know where to search for this. If<br>
&gt; &gt;&gt; you guys could point me places where I can learn more about this, I would<br>
&gt; &gt;&gt; be grateful.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; _______________________________________________<br>
&gt; &gt;&gt; Kernelnewbies mailing list<br>
&gt; &gt;&gt; <a href="mailto:Kernelnewbies@kernelnewbies.org" target="_blank">Kernelnewbies@kernelnewbies.org</a><br>
&gt; &gt;&gt; <a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" rel="noreferrer" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt;<br>
</blockquote></div></div>