This website requires JavaScript.
Explore
Help
Register
Sign In
JakeHillion
/
scx
Watch
1
Star
0
Fork
0
You've already forked scx
mirror of
https://github.com/JakeHillion/scx.git
synced
2024-11-26 19:30:24 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
086c6dffc8
scx
/
scheds
/
rust
/
meson.build
4 lines
65 B
Meson
Raw
Normal View
History
Unescape
Escape
build: Trigger cargo build on rust sub-projects from meson.build
2023-12-01 21:58:56 +00:00
subdir
(
'scx_layered'
)
subdir
(
'scx_rusty'
)
scx_rustlite: simple user-space scheduler written in Rust This scheduler is made of a BPF component (dispatcher) that implements the low level sched-ext functionalities and a user-space counterpart (scheduler), written in Rust, that implements the actual scheduling policy. The main goal of this scheduler is to be easy to read and well documented, so that newcomers (i.e., students, researchers, junior devs, etc.) can use this as a template to quickly experiment scheduling theory. For this reason the design of this scheduler is mostly focused on simplicity and code readability. Moreover, the BPF dispatcher is completely agnostic of the particular scheduling policy implemented by the user-space scheduler. For this reason developers that are willing to use this scheduler to experiment scheduling policies should be able to simply modify the Rust component, without having to deal with any internal kernel / BPF details. Future improvements: - Transfer the responsibility of determining the CPU for executing a particular task to the user-space scheduler. Right now this logic is still fully implemented in the BPF part and the user-space scheduler can only decide the order of execution of the tasks, that significantly restricts the scheduling policies that can be implemented in the user-space scheduler. - Experiment the possibility to send tasks from the user-space scheduler to the BPF dispatcher using a batch size, instead of draining the task queue completely and sending all the tasks at once every single time. A batch size should help to reduce the overhead and it should also help to reduce the wakeups of the user-space scheduler. Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
2023-12-14 06:54:25 +00:00
subdir
(
'scx_rustlite'
)
Reference in New Issue
Copy Permalink