tree: b02c033748f153b1bb36aab0362e99c0ac6ba707 [path history] [tgz]
  1. include/
  2. meta/
  3. BUILD.gn
  4. OWNERS
  5. README.md
  6. run-queue-fuzzer.cc
  7. run-queue-tests.cc
  8. test-thread.h
  9. thread-base-tests.cc
zircon/kernel/lib/sched/README.md

libsched

libsched (/libĖˆskej/) encapsulates the main utilities of kernel scheduling. Despite its primary intended application within the kernel, this library aims to remain environment-agnostic, especially for exercise within non-kernel, testing contexts.

Bandwidth model

Bandwidth refers to the amount of execution time available to a thread over time, and the bandwidth model refers to the manner in which that time is modeled and allocated to threads.

A thread‘s work is framed as happening within fixed-width, recurring time intervals called activation periods. The duration is a property of the thread and is referred to as its period. When the current activation period expires, it is reactivated and the time allocated to the thread within it is reset. This chunking of work into periods arises naturally in many practical contexts like the duration between VSyncs in graphical contexts and the frequency of polling by device drivers. Accordingly, a period is better regarded as a looser, slack-encoding, often externally-prescribed duration in which a thread is expected to perform its work rather than a precise measure of the duration of that intended work, which is instead referred to as the thread’s capacity.

A thread‘s work has two components: firm and flexible. Firm work is that which is required to occur within a period; it is specified directly as the thread property of firm capacity. Flexible work is that which happens on a best-effort basis, utilizing remaining bandwidth - if any - after firm work has been accounted for; it is specified indirectly as the thread property of flexible weight. Flexible weight gives a conventional measure of the importance of the desired flexible work, with a thread’s flexible capacity being derived from the proportion of its weight to the sum of all such weights across the set of threads (naturally scaled by a firm utilization factor). The (total/effective) capacity of a thread is the sum of its firm and flexible capacities, giving the total duration of execution time a thread expects within an activation period.

All runnable threads (i.e., the currently running thread or those queued and ready to be run) contribute both firm and flexible demand.

Thread selection

At all times, the thread that is selected next is the active one with the earliest finish time (if any). In the event of a tie of finish times, the one with the earlier start time is picked - and then in the event of a tie of start times, the thread with the lowest address is expediently picked (which is a small bias that should not persist across runs of the system).

This process is facilitated by sched::RunQueue.

Preemption time

When a thread is selected, the preemption time - the time at which the next selection process should take place, potentially preempting the currently executing thread - is calculated as well. This should be triggered as soon as there is a state transition affecting the bandwidth of the just-selected thread or the one that would become eligible next, and is calculated as the earlier of the following times:

  • When the currently selected thread finishes its activation period;
  • When the currently selected thread would reach its capacity if allowed to continue uninterrupted;
  • The starting time of a thread - if any - that would be eligible at the earlier of the above times and finish before the currently selected.