about the L4Linux scheduler

Lin bugeaterk at gmail.com
Sun Sep 30 05:29:27 CEST 2007


Hello.

I have some questions about the scheduler system on DROPS L4Linux.
I would like your help or some hints.
The version of my source is ...

  DROPS SVN revision   : 205
  L4Linux SVN revision : 61
  Fiasco version       : 1.2
  L4Linux version      : 2.6.22

In L4Linux system (on L4Env), there are two schedulers (in Fiasco
and in Linux server), you know.

Some papers say any Linux user process consists of L4 task and the L4
shceduler schedules all L4 thread.

It is ok, but I can't understand the work of the Linux scheduler.

In fact, a new thread is created in L4 when a process (has one thread)
is created in Linux, and the active thread is changed when the context
switch occurs in Linux server (made sure by using Fiasco JDB).

I want to make this relation clear.
In other words, what does the Linux scheduler do at these time.


1. Task creating
~~~~~~~~~~~~~~~~
When "fork()" (or such functions) is called, the function:

  l4x_setup_next_exec (in "arch/l4/kernel/arch-i386/dispatch.c")

may be called.

This function seems push the argument function "ret_from_fork" to the
stack of the new "task_struct" instance to execute it first when the
task is scheduled.

Then, when "fork()" ends (when "do_fork()" returns), the new
"task_struct" instance is created in Linux system.

At this time, is the L4 thread (task ?) corresponds to that
"task_struct" is not created yet ?
(I assume it is created after the "task_struct" is scheduled.)


2. Linux server's scheduling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In L4Linux task, there are 7 threads and IRQ threads:

  (1)l4lx.rm       (2)l4lx.sem      (3)l4lx.main     (4)l4lx.tamer
  (5)l4lx.cpu0     (6)l4lx.timer.i0 (7)l4lx.idler    ...

"l4lx.main" creates "l4lx.cpu0" (Linux server) and waits this end.

"l4lx.cpu0" does many initialization in the function "start_kernel()",
and then it reaches at the function:

  l4x_idle (in "arch/l4/kernel/dispatch.c").

In this function, the Linux server creates the thread "l4lx.idler"
and then enters the scheduling and IPC waiting loop.

What does this function do ??
(My expectation about it is written in 4.)

And more, What is the thread "l4lx.idler" used for ??


3. Scheduled new Linux task
~~~~~~~~~~~~~~~~~~~~~~~~~~~
The function "switch_to()" (depends on L4 arch) in Linux kernel only
saves and restores the registers ESI, ..., ESP, and EIP.

So, when all new created "task_struct"s are scheduled by the Linux
server, they runs from "ret_from_fork" as the Linux server thread.
(Is it right ?)   ^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^

"ret_from_fork" reaches at the function:

  l4x_user_dispatcher (in "arch/l4/kernel/dispatch.c").

It calls "l4x_spawn_cpu_thread()" before its loop.

I assume it creates the new L4 thread corresponds to the now scheduled
"task_struct" in Linux server.

And, the loop in "l4x_user_dispatcher" seems to reply or wait page
fault, exception and system call IPCs from any L4 thread runs as a
Linux user task.

What does this loop do in fact ??

When the context switch occurs in Linux server for some reasons,
the active L4 thread is also switched almost at the same time.
(I see it by using "ps" on Linux and the thread list of JDB on L4.)

I want to know the mechanism of this synchronization.


4. Summary
~~~~~~~~~~
My main quiestions is ...

  (1) What is "l4lx.idler" created for ? (in 2)
  (2) What does the function "l4x_idle" do ? (in 2)
  (3) Do all Linux user tasks ("task_struct" instance) only execute
      "l4x_user_dispatcher" (from "ret_from_fork") as the Linux
      server ? (in 1 and 3)
  (4) What does the function "l4x_user_dispatcher" do ?
      How to switch contexts in Linux and in L4 almost at the same
      time ? (in 3)

My expectation about Linux scheduling system is the following:

  - When there is no need to reschedule Linux user processes, Linux
    server is in IPC sleep and waiting the wakeup IPC in "l4x_idle".

  - If Linux server gets IPC for some reasons, it wakes up and check
    the IPC sender. Then, if the sender is a thread corresponds to
    certain Linux task, Linux server wakes up this Linux task and
    reschedules by calling "schedule()".

  - The waked up task will be active as Linux server. This context
    may execute only "l4x_user_dispatcher" which replies and wait IPCs
    and handles page faults and exceptions based on information of the
    received IPC.

  - When the L4 thread of the Linux task exits, that Linux task in
    Linux (task_struct instance) also is freed. If there is no
    schedulable task in Linux at that time, the original context
    (executes "l4x_idle") is re-scheduled.

If you find my incorrect understanding, please tell me.


Sorry for my poor English and lengthy question.
I'm glad if you give me some hints or corrections.


Regards,
Lin  (a college student in Japan)




More information about the l4-hackers mailing list